:root {
    --primary-color: #006994;
    --secondary-color: #40E0D0;
    --accent-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-color: #f0f8ff;
    --text-muted: #cce3ea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Deep ocean gradient */
    overflow: hidden;
    color: var(--text-color);
}

/* Background Animation representing calm water */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: -100px; /* Start below visible area */
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2340E0D0" fill-opacity="0.2" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 1440px 320px;
    animation: wave-animation 10s linear infinite;
    opacity: 0.3;
}

.wave1 {
    bottom: 0;
    animation-duration: 20s;
    z-index: 1;
    opacity: 0.1;
}

.wave2 {
    bottom: 10px;
    animation-duration: 15s;
    animation-direction: reverse;
    z-index: 2;
    opacity: 0.15;
}

.wave3 {
    bottom: 20px;
    animation-duration: 12s;
    z-index: 3;
    opacity: 0.2;
}

@keyframes wave-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1440px); }
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.icon-container {
    margin-bottom: 2rem;
}

.water-icon {
    width: 64px;
    height: 64px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 10px rgba(64, 224, 208, 0.5));
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #bfe9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Loading drops */
.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.drop {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out both;
}

.drop:nth-child(1) { animation-delay: -0.32s; }
.drop:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 15px var(--secondary-color);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
}
