/* CSS variables for consistent layout */
:root {
    --bg-dark: #0e0d1f;
    --card-bg: rgba(57, 49, 134, 0.15);
    --border-color: rgba(239, 127, 27, 0.2);
    --text-primary: #f8fafc;
    --text-secondary: #c7cbd9;
    --accent-orange: #ef7f1b;
    --accent-blue: #393186;
    --accent-glow: rgba(239, 127, 27, 0.15);
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Glow Blobs */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 80%);
    top: -100px;
    left: -100px;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 80%);
    bottom: -150px;
    right: -100px;
    animation: floatGlow 18s infinite alternate-reverse ease-in-out;
}

.bg-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 49, 134, 0.2) 0%, transparent 80%);
    top: 40%;
    left: 60%;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(80px, 50px) scale(1.1);
    }
}

/* Page Layout Wrapper */
.main-wrapper {
    width: 100%;
    max-width: 720px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

/* Glassmorphism Card */
.coming-soon-card {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 
                0 0 30px var(--accent-glow),
                inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.logo-container {
    margin-bottom: 24px;
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-container:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 12px 40px 0 rgba(239, 127, 27, 0.35), 0 0 20px 0 rgba(57, 49, 134, 0.4);
}

.main-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
}

.fallback-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

/* Badge Style */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 127, 27, 0.1);
    border: 1px solid rgba(239, 127, 27, 0.2);
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* Title and Subtitle */
.main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 36px;
}

/* Contacts info section */
.card-footer-info {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.card-footer-info h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-item .icon {
    font-size: 16px;
}

.contact-item .text, .contact-item a.text {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a.text:hover {
    color: var(--accent-orange);
}

/* Footer Section */
.site-footer {
    text-align: center;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.5);
}

/* Responsive adjustments */
@media(max-width: 640px) {
    .coming-soon-card {
        padding: 32px 20px;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .sub-title {
        font-size: 20px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}
