:root {
    --primary: #00ff9d;
    --text: #ffffff;
    --bg-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 50%, #1a2e26 0%, #000000 100%);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.title {
    font-family: 'Fredericka the Great', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff9c4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 20px auto;
    opacity: 0.5;
}

.subtitle {
    font-family: 'Fredericka the Great', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact {
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
    border-bottom: 1px solid transparent;
}

.contact a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.footer {
    margin-top: 30px;
    font-size: 0.75rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.3);
}

/* Loader Animation */
.loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }
    .glass {
        padding: 40px 20px;
    }
}