/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F9FCFF;
    color: #0A3158;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Background pattern */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A3158;
    /* background-image: 
        radial-gradient(circle at 20% 80%, rgba(10, 49, 88, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 49, 88, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(10, 49, 88, 0.02) 0%, transparent 50%); */
    z-index: 1;
}

/* Content */
.content {
    text-align: center;
    width: 100%;
    z-index: 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brand Logo */
.brand-logo-container {
    margin-bottom: 20px;
}

.logo-background {
    background: rgba(249, 252, 255, 0.9);
    border-radius: 18px;
    padding: 15px 25px;
    display: inline-block;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(249, 252, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(249, 252, 255, 0.4);
    position: relative;
}

.logo-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(249, 252, 255, 0.05) 100%);
    border-radius: 18px;
    z-index: -1;
}

.brand-logo {
    max-width: 250px;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Main content */
.main-content {
    background: rgba(10, 49, 88, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px 25px;
    border: 1px solid rgba(249, 252, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(249, 252, 255, 0.05),
        inset 0 1px 0 rgba(249, 252, 255, 0.1);
    color: #F9FCFF;
    max-height: 85vh;
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(249, 252, 255, 0.1) 0%, 
        rgba(10, 49, 88, 0.3) 50%, 
        rgba(26, 74, 115, 0.2) 100%);
    border-radius: 24px;
    z-index: -1;
}


.tagline {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(249, 252, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Coming soon section */
.coming-soon {
    text-align: center;
    width: 100%;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #F9FCFF;
}

.description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(249, 252, 255, 0.8);
    max-width: 450px;
    margin: 0 auto 20px auto;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.feature p {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(249, 252, 255, 0.9);
}


/* Social links */
.social-links {
    margin-top: 15px;
    text-align: center;
    width: 100%;
}

.follow-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: rgba(249, 252, 255, 0.8);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(249, 252, 255, 0.15);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 252, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(249, 252, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(249, 252, 255, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
}

.social-link i {
    font-size: 1.3rem;
    color: #F9FCFF;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(249, 252, 255, 0.25);
    border-color: rgba(249, 252, 255, 0.5);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(249, 252, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Laptop screen optimization */
@media (min-width: 1024px) and (max-width: 1366px) {
    .main-content {
        max-height: 80vh;
        padding: 25px 20px;
        max-width: 500px;
    }
    
    .brand-logo {
        max-width: 220px;
    }
    
    .logo-background {
        padding: 12px 20px;
    }
    
    .tagline {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .coming-soon h2 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .features {
        gap: 20px;
        margin-bottom: 18px;
    }
    
    .social-links {
        margin-top: 12px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 8px;
    }
    
    .main-content {
        padding: 25px 20px;
        max-height: 95vh;
    }
    
    .brand-logo {
        max-width: 220px;
    }
    
    .logo-background {
        padding: 15px 20px;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .features {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .feature {
        min-width: 100px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px;
    }
    
    .main-content {
        padding: 20px 15px;
        max-height: 98vh;
    }
    
    .brand-logo {
        max-width: 180px;
    }
    
    .logo-background {
        padding: 12px 15px;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .coming-soon h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature {
        min-width: 80px;
    }
    
    .feature-icon {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .follow-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 320px) {
    .main-content {
        padding: 15px 10px;
        max-height: 99vh;
    }
    
    .brand-logo {
        max-width: 150px;
    }
    
    .logo-background {
        padding: 10px 12px;
    }
    
    .coming-soon h2 {
        font-size: 1.4rem;
    }
    
    .description {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.social-link:focus {
    outline: 2px solid rgba(249, 252, 255, 0.5);
    outline-offset: 2px;
}
