:root {
    --primary-color: #820AD1;
    /* NuBank Purple */
    --accent-green: #00E676;
    --accent-red: #FF1744;
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(130, 10, 209, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 230, 118, 0.1) 0%, transparent 40%);
    padding-top: 50px;
    /* Space for fixed top bar */
}

.top-warning {
    background-color: #008000;
    /* Darker green background */
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warning-highlight {
    color: #FF0000;
    /* Red highlight */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 900px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .content-wrapper {
        max-width: 50%;
        text-align: left;
    }

    .image-container {
        margin-right: 2rem;
        max-width: 45%;
        display: flex;
        justify-content: center;
    }
}

/* Content Styles */
.content-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 15px;
}

@media (min-width: 900px) {
    .content-wrapper {
        align-items: flex-start;
    }
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}



.headline {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-red {
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
    text-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
}

.subheadline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.highlight-green {
    color: var(--accent-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #00C853, #00E676);
    color: #000;
    font-weight: 800;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.6);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: black;
    /* Ensure icon is black */
}

.cta-button .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Image Container Styles */
.image-container {
    width: 100%;
    max-width: 400px;
    /* Limit max width on mobile */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.responsive-image:hover {
    transform: scale(1.02);
}