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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: backgroundShift 20s ease-in-out infinite;
}

.silhouette-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('World-Map-white-2048x1171.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.6) invert(1);
    z-index: 0;
    opacity: 1;
    animation: silhouetteFloat 15s ease-in-out infinite;
}

.silhouette-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.08) 25%, transparent 50%),
        linear-gradient(-135deg, transparent 0%, rgba(255, 215, 0, 0.05) 25%, transparent 50%),
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    animation: silhouetteGlow 12s ease-in-out infinite;
    mix-blend-mode: overlay;
}

.silhouette-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(0, 0, 0, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.28) 0%, transparent 55%),
        radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.22) 0%, transparent 50%);
    animation: silhouetteShift 18s ease-in-out infinite;
    mix-blend-mode: multiply;
}

@keyframes silhouetteFloat {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    25% { 
        opacity: 0.4;
        transform: scale(1.02) rotate(1deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05) rotate(0deg);
    }
    75% { 
        opacity: 0.3;
        transform: scale(1.02) rotate(-1deg);
    }
}

@keyframes silhouetteGlow {
    0%, 100% { 
        opacity: 0.3;
    }
    50% { 
        opacity: 0.6;
    }
}

@keyframes silhouetteShift {
    0%, 100% { 
        opacity: 0.4;
        transform: translateX(0) translateY(0);
    }
    25% { 
        opacity: 0.6;
        transform: translateX(10px) translateY(-5px);
    }
    50% { 
        opacity: 0.3;
        transform: translateX(-5px) translateY(10px);
    }
    75% { 
        opacity: 0.7;
        transform: translateX(5px) translateY(-8px);
    }
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.header {
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-accent {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 1rem auto;
    animation: accentGlow 2s ease-in-out infinite;
}

@keyframes accentGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

.coming-soon-section {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.description-section {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.main-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.highlight-box:hover::before {
    left: 100%;
}

.highlight-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.highlight-text {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.feature-item span {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.contact-info p {
    color: #aaaaaa;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.social-link:hover {
    color: #FFD700;
}

.social-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .main-description {
        font-size: 1.1rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .feature-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-description {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 1.2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}
