:root {
    --primary: #ff3b5c;
    /* Vibrant Red */
    --primary-glow: rgba(255, 59, 92, 0.15);
    --secondary: #f1f5f9;
    --background: #ffffff;
    /* Light Theme */
    --card-bg: #f8fafc;
    --card-border: #e2e8f0;
    --text: #0f172a;
    --text-muted: #64748b;
    --accent: #d4af37;
    /* Gold */
    --trending: #d4af37;
    --emerging: #f59e0b;
    --high-potential: #ff3b5c;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Compliance Text */
.disclosure,
.disclaimer-mini {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1rem 0;
}

/* Header & Nav */
header {
    width: 100%;
    height: 70px;
    /* Consistent height */
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    /* Higher z-index */
    border-bottom: none;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .header-container {
        display: grid;
        grid-template-columns: 200px 1fr 200px;
        align-items: center;
    }

    .logo {
        text-align: left;
    }

    nav {
        justify-self: center;
    }

    #menuToggle {
        display: none;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text);
}

.menu-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    display: block;
}

nav {
    display: none;
    position: absolute;
    top: 70px;
    /* Equal to header height */
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav.active {
    display: block;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: 0.2s;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    /* Vertical hit area */
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    list-style: none;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: rgba(255, 59, 92, 0.1);
    color: var(--primary);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Database Grid */
.db-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.db-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.db-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 24px;
    transition: 0.3s;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.db-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 59, 92, 0.1);
}

.db-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.db-card .cat-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    nav {
        display: block;
        position: static;
        width: auto;
        background: none;
        padding: 0;
        border: none;
    }

    .nav-menu {
        flex-direction: row;
        align-items: center;
    }

    .dropdown-menu {
        top: 100%;
        /* Remove the gap that caused the menu to disappear */
        padding-top: 10px;
        /* Internal spacing instead */
    }
}


/* End Header & Nav */


/* Main Layout */
main {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

#hero h1 span {
    color: inherit;
}

#hero p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Fun & Crazy Spinner */
.spinner-display {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    background: var(--card-bg);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(62, 207, 142, 0.1);
    transition: 0.5s;
    overflow: hidden;
}

.spinner-display::after {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg,
            #ffffff 0deg 30deg,
            #f1f5f9 30deg 60deg,
            #ffffff 60deg 90deg,
            #f1f5f9 90deg 120deg,
            #ffffff 120deg 150deg,
            #f1f5f9 150deg 180deg,
            #ffffff 180deg 210deg,
            #f1f5f9 210deg 240deg,
            #ffffff 240deg 270deg,
            #f1f5f9 270deg 300deg,
            #ffffff 300deg 330deg,
            #f1f5f9 330deg 360deg);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Roulette Pointer */
.spinner-display::before {
    content: '▼';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 2rem;
    z-index: 10;
    filter: drop-shadow(0 0 5px var(--primary));
}

.spinning.spinner-display {
    border-color: #fff;
    box-shadow: 0 0 100px var(--primary);
    transform: scale(1.1);
}

.spinning.spinner-display::after {
    opacity: 1;
    animation: rouletteSpin 1s linear infinite;
}

.spinning.spinner-display::before {
    animation: pointerBop 0.2s ease-in-out infinite;
}

@keyframes rouletteSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pointerBop {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

.teaser-text {
    font-size: 1.8rem;
    font-weight: 900;
    z-index: 2;
    width: 200px;
    text-align: center;
    text-transform: uppercase;
    color: var(--text);
    transition: 0.2s;
    letter-spacing: -1px;
}

.spinning .teaser-text {
    animation: slotShake 0.1s infinite;
}

@keyframes slotShake {
    0% {
        transform: translate(1px, 1px);
    }

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

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

.spin-status-msg {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.spin-status-msg strong {
    color: var(--primary);
}

.upgrade-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Progress Bar */
.progress-bar-container {
    position: absolute;
    bottom: 20px;
    width: 60%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.spinning .progress-bar-container {
    display: block;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
}

/* Buttons */
.main-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    max-width: 300px;
}

.main-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.secondary-btn {
    background: #2e2e2e;
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Viral Hustle Card */
.viral-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.viral-card::before {
    display: none;
}

.viral-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.viral-score-badge {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hustle-emoji {
    font-size: 2.5rem;
}

.viral-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.viral-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.viral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.v-stat {
    background: var(--background);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.v-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.v-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

.viral-content {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.viral-section h4 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
    text-transform: uppercase;
}

.viral-bullets,
.viral-steps {
    list-style: none;
    padding: 0;
}

.viral-bullets li,
.viral-steps li {
    background: var(--background);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 4px solid var(--primary);
    border-right: 1px solid var(--card-border);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.viral-steps {
    counter-reset: step-counter;
}

.viral-steps li {
    counter-increment: step-counter;
}

.viral-steps li::before {
    content: counter(step-counter) ". ";
    color: var(--primary);
    font-weight: 900;
}

.viral-hook-box {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px dashed var(--primary);
    grid-column: 1 / -1;
    text-align: center;
}

.hook-label {
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.viral-actions {
    position: relative;
    z-index: 1;
}

.primary-viral-btn {
    background: var(--primary);
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px var(--primary-glow);
}

.primary-viral-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px var(--primary);
}

.secondary-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-btn-pill {
    background: var(--background);
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 1rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .viral-content {
        grid-template-columns: 1fr 1fr;
    }

    .secondary-actions {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Hustle Card */
.hustle-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.rarity-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.rarity-badge.TRENDING {
    background: var(--trending);
    color: #fff;
}

.rarity-badge.EMERGING {
    background: var(--emerging);
    color: #fff;
}

.rarity-badge.HIGH {
    background: var(--high-potential);
    color: #fff;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-item {
    background: var(--background);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.card-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

#stepsList {
    list-style: none;
    margin-bottom: 1.5rem;
}

#stepsList li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

#stepsList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.hidden {
    display: none !important;
}

/* Desktop Overrides */
@media (min-width: 768px) {
    .header-container {
        max-width: 1200px;
    }

    .menu-btn {
        display: none;
    }

    nav {
        display: block;
        position: static;
        width: auto;
        background: none;
        padding: 0;
        border: none;
    }

    .nav-menu {
        flex-direction: row;
        gap: 2rem;
    }

    #hero h1 {
        font-size: 3.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .spinner-display {
        width: 280px;
        height: 280px;
    }

    .teaser-text {
        font-size: 1.5rem;
    }

    .card-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hustle-card {
        padding: 2.5rem;
    }

    .card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* Glow Background for Dark Mode */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

/* Recent Ideas Section */
.recent-ideas-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    background: var(--card-bg);
    padding: 3rem 1.5rem;
    border-radius: 32px;
}

.recent-ideas-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.recent-ideas-section h2 span {
    color: inherit;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.recent-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
}

.recent-cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
}

/* Courses Page */
.courses-header {
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.course-category {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.course-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.course-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.save-badge {
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Affiliate Marketing UI */
#affiliateBox {
    grid-column: 1 / -1;
}

.affiliate-card {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.affiliate-tag {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.affiliate-card p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.affiliate-link {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    transition: 0.3s;
}

.affiliate-link:hover {
    background: var(--primary);
    color: #fff;
}

/* Content & Info Sections */
.content-container {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: left;
    padding: 0 1rem;
}

.info-section {
    margin-bottom: 4rem;
}

.info-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.info-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-section ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.info-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.faq-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--card-border);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

footer {
    padding: 4rem 2rem;
    background: var(--background);
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-footer-link {
    color: var(--text-muted);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.social-footer-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
    background: rgba(255, 59, 92, 0.1);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    padding: 1rem 2rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary);
    color: #fff;
}

.cookie-btn.reject {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}