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

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f4f8; /* Very light cool background */
    color: #1a1a1a;
    overflow: hidden;
    position: relative;
}

/* Dynamic Light Effect Background */
.dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

/* Saffron Orb */
.orb-1 {
    width: 400px;
    height: 400px;
    background: #FF9933;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

/* Green Orb */
.orb-2 {
    width: 500px;
    height: 500px;
    background: #138808;
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

/* White/Light Blue Orb */
.orb-3 {
    width: 300px;
    height: 300px;
    background: #00BFFF;
    top: 40%;
    left: 60%;
    animation-delay: -10s;
    animation-duration: 22s;
}

/* Soft Gold Orb */
.orb-4 {
    width: 350px;
    height: 350px;
    background: #FFD700;
    bottom: 20%;
    left: 10%;
    animation-delay: -15s;
    animation-duration: 28s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    background: rgba(255, 255, 255, 0.5); /* Light glassmorphism over the colors */
    z-index: 1;
}

/* Content Container */
.container {
    position: relative;
    z-index: 2; /* Above the background */
    padding: 20px;
    width: 100%;
    max-width: 750px;
}

.content-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #FF9933; /* Saffron touch */
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.emblem-placeholder {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    color: #138808; /* Green */
    animation: starPulse 3s infinite;
}

@keyframes starPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 10px rgba(19,136,8,0.5)); }
    100% { transform: scale(1); opacity: 0.8; }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.revolutionary-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d32f2f; /* Bold red */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-banner {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.coming-soon-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: sheen 3s infinite;
}

@keyframes sheen {
    0% { left: -100%; }
    100% { left: 200%; }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background: #138808;
    color: #fff;
    border-color: #138808;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(19,136,8,0.2);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.8rem;
    }
    
    .revolutionary-tag {
        font-size: 1rem;
    }

    .content-card {
        padding: 3rem 1.5rem;
    }
    
    .subtitle {
        max-width: 100%;
    }
}
