/*
Theme Name: Coming Soon
Author: Techxedo                                                                             
Author URI: https://techxedo.com/
Description: A simple coming soon WordPress theme.
Version: 1.0
Text Domain: comingsoon
Tags: coming-soon, landing-page, minimal
*/

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
}

.container {
    position: relative;
    z-index: 1;
    background: rgba(30, 30, 40, 0.92);
    border-radius: 24px;
    box-shadow: 0 16px 48px 0 rgba(30, 40, 80, 0.35), 0 2px 12px 0 rgba(31, 38, 135, 0.18);
    padding: 64px 36px;
    text-align: center;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 2.5px solid #fff;
    box-sizing: border-box;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.container:hover {
    box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.22);
    transform: translateY(-4px) scale(1.025);
}

h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25), 0 1px 0 #fff2;
    transition: text-shadow 0.3s;
}

h1:hover {
    text-shadow: 0 4px 32px rgba(127, 83, 172, 0.22);
}

p {
    color: #fff;
    font-size: 1.13rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 