:root {
    --bg-color: #0a0e17;
    --text-color: #e0e6ed;
    --primary-color: #34d399;
    /* Emerald-400 */
    /* Green */
    --primary-glow: rgba(52, 211, 153, 0.4);
    --secondary-color: #1a2639;
    --glass-bg: rgba(26, 38, 57, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a2639 0%, #0a0e17 100%);
    overflow: hidden;
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: drift 20s infinite alternate;
}

.background-animation::before {
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.background-animation::after {
    background: #4a90e2;
    /* Subtle blue contrast */
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.status-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(52, 211, 153, 0.1);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

/* Content Card - Glassmorphism */
.content-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.subtitle {
    font-size: 1.15rem;
    color: #a0a8b5;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.feature-list {
    list-style-type: none;
    text-align: left;
    display: inline-block;
    margin: 0 auto 2rem;
    padding: 0;
}

.feature-list li {
    list-style: none;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #e0e6ed;
}

.feature-list li .check {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

.feature-list li .more {
    color: #a0a8b5;
    font-style: italic;
    font-size: 1rem;
}

.bio-text {
    font-size: 1rem;
    color: #a0a8b5;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.bio-text strong {
    color: #fff;
    font-weight: 600;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
    opacity: 0.6;
}

/* Iframe Styling */
.iframe-container {
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    background: white;
    /* Ensure iframe matches background if needed, but styling sets it to white */
    padding: 4px;
    /* Optional border effect */
}

.iframe-container iframe {
    /* Override inline styles if needed, but keeping inline is safer for iframe compatibility */
    border: none !important;
    width: 100%;
    max-width: 480px;
}

/* Footer */
footer {
    margin-top: 2rem;
    color: #5a6575;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    .content-card {
        padding: 2.5rem 1.5rem;
    }

    .iframe-container iframe {
        height: 400px;
        /* Adjust height for mobile if needed */
    }
}