/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

/* Custom Tailwind Color Configuration */
:root {
    --color-primary-500: #6d28d9;
    --color-primary-600: #5b21b6;
    --color-primary-700: #4c1d95;
    --color-secondary-400: #a78bfa;
    --color-secondary-500: #8b5cf6;
}

/* Primary Color Utilities */
.bg-primary-500 {
    background-color: var(--color-primary-500) !important;
}

.bg-primary-600 {
    background-color: var(--color-primary-600) !important;
}

.bg-primary-700 {
    background-color: var(--color-primary-700) !important;
}

.bg-primary-900 {
    background-color: #3b0764 !important;
}

.text-primary-500 {
    color: var(--color-primary-500) !important;
}

.text-primary-600 {
    color: var(--color-primary-600) !important;
}

.text-primary-700 {
    color: var(--color-primary-700) !important;
}

.border-primary-500 {
    border-color: var(--color-primary-500) !important;
}

.border-primary-600 {
    border-color: var(--color-primary-600) !important;
}

.border-primary-700 {
    border-color: var(--color-primary-700) !important;
}

/* Secondary Color Utilities */
.bg-secondary-400 {
    background-color: var(--color-secondary-400) !important;
}

.bg-secondary-500 {
    background-color: var(--color-secondary-500) !important;
}

.text-secondary-400 {
    color: var(--color-secondary-400) !important;
}

.text-secondary-500 {
    color: var(--color-secondary-500) !important;
}

.border-secondary-400 {
    border-color: var(--color-secondary-400) !important;
}

.border-secondary-500 {
    border-color: var(--color-secondary-500) !important;
}

/* Gradient Utilities with Custom Colors */
.from-primary-500 {
    --tw-gradient-from: var(--color-primary-500) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important;
}

.from-primary-600 {
    --tw-gradient-from: var(--color-primary-600) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important;
}

.from-primary-700 {
    --tw-gradient-from: var(--color-primary-700) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important;
}

.from-primary-900 {
    --tw-gradient-from: #3b0764 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 7, 100, 0)) !important;
}

.from-secondary-400 {
    --tw-gradient-from: var(--color-secondary-400) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important;
}

.from-secondary-500 {
    --tw-gradient-from: var(--color-secondary-500) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important;
}

.to-primary-400 {
    --tw-gradient-to: #a78bfa !important;
}

.to-primary-500 {
    --tw-gradient-to: var(--color-primary-500) !important;
}

.to-primary-600 {
    --tw-gradient-to: var(--color-primary-600) !important;
}

/* Hover State Utilities */
.hover\:from-secondary-400:hover {
    --tw-gradient-from: var(--color-secondary-400) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important;
}

.hover\:to-primary-400:hover {
    --tw-gradient-to: #a78bfa !important;
}

/* Ring Color Utilities (for form inputs) */
.focus\:ring-secondary-500:focus {
    --tw-ring-color: var(--color-secondary-500) !important;
}

/* Checkbox/Radio Color */
.text-secondary-500[type="checkbox"],
.text-secondary-500[type="radio"] {
    color: var(--color-secondary-500) !important;
}

body {
    padding: 2rem;
    font-family: "Noto Serif", serif;
    background-image: url('/imgs/body-bg.jpg') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 1440px;
    margin: 0 auto;
}

h1 {
    font-size: 16px;
    margin-top: 0;
}

p {
    color: rgb(107, 114, 128);
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.card {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid lightgray;
    border-radius: 16px;
}

.card p:last-child {
    margin-bottom: 0;
}

/* Offers Section Additional Styling */
.betting-offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Terms & Conditions spacing override - overrides space-y-6 */
.space-y-6>.text-xs.text-gray-500.text-center {
    margin-top: 5px !important;
}

.betting-offer-card:hover {
    transform: translateY(-4px);
}

/* Star Rating Colors */
.text-yellow-400 {
    color: #fbbf24 !important;
}

/* FAQ Accordion Styling */
.faq-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-content:not(.hidden) {
    max-height: 500px;
    opacity: 1;
}

.faq-toggle {
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.faq-toggle:hover {
    background-color: rgba(107, 114, 128, 0.1);
}

.faq-toggle svg {
    transition: transform 0.3s ease;
}

/* Ensure images render properly */
img {
    max-width: 100%;
    height: auto;
}

.logo-img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Rank Number Positioning */
.offers-rank-number {
    min-width: 64px;
    width: 64px;
    height: 64px;
}

.terms-text {
    padding-left: 10%;
}

.footer-icon {
    width: 110px;
    height: auto;
}

.footer-icon.age {
    width: 40px;
    height: 40px;
}

.offer-left {
    width: 60%;
}

.offer-right {
    width: 40%;
}

@media (max-width: 670px) and (orientation: landscape) {
    .offer-item {
        flex-direction: row;
    }

    .offer-left {
        gap: 0.7rem;
    }

    .offer-right {
        flex-direction: column;
    }
}

@media (max-width: 670px) {
    .mob-hidden {
        display: none;
    }

    .logo-brand {
        width: 130px;
    }

    .offer-left {
        width: 100%;
    }

    .offer-right {
        width: 100%;
    }
}

/* Fixed Widths for Offer Card Sections - Mobile (default) */
@media (max-width: 768px) {
    .betting-offer-card {
        flex-direction: column;
    }

    /* Hide rank number on mobile */
    .offers-rank-number {
        display: none !important;
    }

    /* Full width for all sections on mobile */
    .betting-offer-card .flex-shrink-0.w-40 {
        width: 160px;
        margin: 0 auto;
    }

    .betting-offer-card .flex-1 {
        width: 100%;
    }

    body {
        padding: 0;
    }

    .footer-icon {
        width: 70px;
    }

    .footer-icon.ssl {
        width: 90px;
    }

    .logo-img {
        max-width: 120px;
    }
}

/* Fixed Widths for Offer Card Sections - Tablet (769px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Hide rank number on tablet */
    .offers-rank-number {
        display: none !important;
    }

    /* Logo container with inner content */
    .betting-offer-card>div>div:first-child {
        width: 180px;
        flex-shrink: 0;
    }

    /* Bonus Details section */
    .betting-offer-card>div>div:nth-child(2) {
        width: 280px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    /* Rating & CTA section - fills remaining space, flex-column on tablet */
    .betting-offer-card>div>div:last-child {
        flex: 1;
        min-width: 0;
        flex-direction: column !important;
    }

    .offer-left {
        width: 70%;
    }

    .offer-right {
        flex-direction: column;
        width: 30%;
    }
}

/* Fixed Widths for Offer Card Sections - Desktop (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {

    /* Logo container with inner content */
    .betting-offer-card>div>div:first-child {
        width: 220px;
        flex-shrink: 0;
    }

    /* Bonus Details section */
    .betting-offer-card>div>div:nth-child(2) {
        width: 380px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    /* Rating & CTA section - fills remaining space */
    .betting-offer-card>div>div:last-child {
        flex: 1;
        min-width: 0;
    }
}

/* Fixed Widths for Offer Card Sections - Large Desktop (1441px+) */
@media (min-width: 1441px) {

    /* Logo container with inner content */
    .betting-offer-card>div>div:first-child {
        width: 240px;
        flex-shrink: 0;
    }

    /* Bonus Details section */
    .betting-offer-card>div>div:nth-child(2) {
        width: 420px;
        flex-shrink: 0;
        flex-grow: 0;
    }

    /* Rating & CTA section - fills remaining space */
    .betting-offer-card>div>div:last-child {
        flex: 1;
        min-width: 0;
    }
}

/* Footer Column Widths - 30/50/20% */
@media (min-width: 768px) {
    footer .grid {
        display: grid;
        grid-template-columns: 30% 50% 20%;
        gap: 2rem;
    }
}

/* =====================================================
   POPUPS - AGE VERIFICATION, PROMO, COOKIE, STICKY
   ===================================================== */

/* Age Verification Popup */
.age-verify-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInBackdrop 0.3s ease-in-out;
}

.age-verify-backdrop.active {
    display: flex;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.age-verify-modal {
    /* background: linear-gradient(135deg, rgba(91, 33, 182, 0.95) 0%, rgba(76, 29, 149, 0.95) 100%); */
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 700px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(109, 40, 217, 0.4), 0 0 0 1px rgba(167, 139, 250, 0.3);
    animation: slideUp 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.age-verify-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.age-verify-icon svg {
    width: 45px;
    height: 45px;
    fill: #FFFFFF;
}

.age-verify-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.age-verify-description {
    font-size: 14px;
    line-height: 1.6;
    color: #B3B3B3;
    margin-bottom: 30px;
}

.age-verify-terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.age-verify-terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #a78bfa;
}

.age-verify-terms label {
    font-size: 14px;
    color: #E0E0E0;
    cursor: pointer;
}

.age-verify-terms a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
}

.age-verify-terms a:hover {
    text-decoration: underline;
    color: #8b5cf6;
}

.age-verify-error {
    display: none;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.age-verify-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-verify-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.age-verify-btn.confirm {
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.age-verify-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.age-verify-btn.deny {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-verify-btn.deny:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.age-rejection-modal {
    text-align: center;
}

.age-rejection-modal .age-verify-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.age-rejection-modal p {
    font-size: 18px;
    color: #B3B3B3;
    line-height: 1.6;
}

/* Promotional Welcome Popup */
.promo-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.promo-popup-container.active {
    display: flex;
}

.promo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 89, 0.62);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.promo-popup-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 90%;
    animation: popupSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }

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

.promo-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.4);
}

.promo-popup-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.promo-popup-close::before,
.promo-popup-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
}

.promo-popup-close::before {
    transform: rotate(45deg);
}

.promo-popup-close::after {
    transform: rotate(-45deg);
}

.promo-popup-inner {
    background: linear-gradient(180deg, rgba(76, 29, 149, 0.95) 0%, rgba(91, 33, 182, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(109, 40, 217, 0.5), 0 0 0 2px rgba(167, 139, 250, 0.3);
}

.promo-popup-brand {
    background: rgba(10, 29, 46, 0.9);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-bottom: 3px solid #a78bfa;
}

.promo-popup-brand img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.promo-popup-body {
    padding: 35px 25px;
    text-align: center;
    background-color: #111827;
}

.promo-popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.promo-popup-offer {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.promo-popup-details {
    font-size: 16px;
    color: #B3B3B3;
    margin-bottom: 25px;
    line-height: 1.5;
}

.promo-popup-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.5px;
}

.promo-popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

/* Sticky Bottom Offer */
.sticky-bottom-offer {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    z-index: 9998;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: none;
}

.sticky-bottom-offer.visible {
    bottom: 0;
}

@media (min-width: 768px) {
    .sticky-bottom-offer {
        display: block;
    }
}

.sticky-offer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.sticky-offer-card {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.98) 0%, rgba(91, 33, 182, 0.98) 100%);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(167, 139, 250, 0.4);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.sticky-offer-dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.sticky-offer-dismiss:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sticky-offer-dismiss::before,
.sticky-offer-dismiss::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
}

.sticky-offer-dismiss::before {
    transform: rotate(45deg);
}

.sticky-offer-dismiss::after {
    transform: rotate(-45deg);
}

.sticky-offer-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 60px;
    flex-wrap: wrap;
}

.sticky-offer-logo {
    flex-shrink: 0;
    background: rgba(76, 29, 149, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.sticky-offer-logo img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.sticky-offer-info {
    flex: 1;
    min-width: 200px;
}

.sticky-offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sticky-offer-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 5px;
}

.sticky-offer-terms {
    font-size: 13px;
    color: #B3B3B3;
    line-height: 1.4;
}

.sticky-offer-button {
    flex-shrink: 0;
}

.sticky-offer-cta {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4); */
    white-space: nowrap;
}

.sticky-offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* Cookie Consent Popup */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    animation: slideUpCookie 0.4s ease-out;
}

@keyframes slideUpCookie {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.cookie-box {
    background-color: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    /* border-top: 3px solid #a78bfa; */
    padding: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cookie-box .dismiss-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-box .dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cookie-box .dismiss-btn::before,
.cookie-box .dismiss-btn::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
}

.cookie-box .dismiss-btn::before {
    transform: rotate(45deg);
}

.cookie-box .dismiss-btn::after {
    transform: rotate(-45deg);
}

.cookie-message {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 40px;
}

.cookie-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.cookie-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #B3B3B3;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-actions .action-button {
    padding: 12px 24px;
    min-width: 140px;
    font-size: 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cookie-actions .action-button.primary {
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cookie-actions .action-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.cookie-actions .action-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-actions .action-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cookie-box {
        padding: 20px 15px;
        border: none;
        border-top: 2px solid #a78bfa;
    }

    .cookie-message {
        padding-right: 35px;
    }

    .cookie-title {
        font-size: 18px;
    }

    .cookie-desc {
        font-size: 13px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .action-button {
        width: 100%;
        min-width: auto;
    }

    .promo-popup-content {
        width: 95%;
    }

    .promo-popup-close {
        top: -12px;
        right: -12px;
        width: 35px;
        height: 35px;
    }

    .promo-popup-offer {
        font-size: 20px;
    }

    .promo-popup-cta {
        padding: 14px 30px;
        font-size: 16px;
    }

    .sticky-offer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .sticky-offer-logo {
        width: 100%;
    }

    .sticky-offer-text {
        font-size: 16px;
    }

    .sticky-offer-cta {
        width: 100%;
        padding: 12px 24px;
    }

    .age-verify-btn {
        font-size: 12px;
        padding: 4px 6px;
    }
}

@media (min-width: 768px) {
    .cookie-box {
        padding: 25px 40px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .cookie-message {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
    }

    .cookie-title {
        font-size: 22px;
    }

    .cookie-desc {
        font-size: 15px;
    }

    .cookie-actions {
        flex-shrink: 0;
    }

    .age-verify-modal {
        padding: 50px 40px;
    }

    .age-verify-title {
        font-size: 32px;
    }

    .age-verify-description {
        font-size: 16px;
    }

    .promo-popup-content {
        max-width: 520px;
    }

    .promo-popup-brand {
        padding: 40px 30px;
    }

    .promo-popup-body {
        padding: 40px 35px;
    }
}

@media (min-width: 1024px) {
    .cookie-box {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 16px 16px 0 0;
    }
}