/* ==========================================
   CASINOINFINITY - DESIGN SYSTEM
   ========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --color-brand: #7c1b4e;
    --color-cta: #1b7c49;
    --color-accent: #f7931e;
    --color-card-bg: #f7f2f6;
    --color-card-border: #e3c0d4;
    --color-text: #000000;
    --color-text-light: #555555;
    --color-white: #ffffff;

    /* Typography */
    --font-family: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(124, 27, 78, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Spacing */
section {
    padding: var(--spacing-xxl) 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-brand);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-cta);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(27, 124, 73, 0.3);
}

.btn-primary:hover {
    background: #158a3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(27, 124, 73, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
}

.btn-outline:hover {
    background: var(--color-brand);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--color-cta);
    color: var(--color-white);
    padding: 12px 28px;
    font-size: 0.9rem;
    border-radius: var(--radius-lg);
}

.btn-cta:hover {
    background: #158a3f;
    transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    /* Make logo visible on white background - add brand color tint */
    filter: brightness(0) saturate(100%) invert(14%) sepia(47%) saturate(3019%) hue-rotate(316deg) brightness(91%) contrast(99%);
}

/* Desktop Nav */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-brand);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-brand);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-brand);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: var(--spacing-lg);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-card-border);
}

.mobile-nav-link:hover {
    color: var(--color-brand);
}

.mobile-menu .btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--spacing-lg));
    padding-bottom: var(--spacing-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: var(--spacing-lg);
}

.hero-content {
    max-width: 100%;
    text-align: left;
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-brand);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
}

.hero-text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.hero-image {
    display: block;
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 180px;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==========================================
   CATEGORY ICONS
   ========================================== */
.categories {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.categories::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Center categories on larger screens */
@media (min-width: 768px) {
    .categories {
        justify-content: center;
        overflow-x: visible;
    }
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    min-width: 70px;
    width: 70px;
    flex-shrink: 0;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.category-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.category-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    line-height: 1.2;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-brand);
}

.category-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

/* ==========================================
   GAME GRIDS
   ========================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.game-card {
    position: relative;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.game-card-image {
    position: relative;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    aspect-ratio: 400/600;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

/* Shine effect */
.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left var(--transition-slow);
    z-index: 2;
}

.game-card:hover::before {
    left: 150%;
}

.game-card-info {
    padding: var(--spacing-sm);
    text-align: center;
}

.game-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.game-card-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* ==========================================
   BONUS CARDS
   ========================================== */
.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.bonus-card {
    display: flex;
    flex-direction: column;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.bonus-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.bonus-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-title {
    font-size: 1.5rem;
    color: var(--color-brand);
    margin-bottom: var(--spacing-sm);
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-cta);
    margin-bottom: var(--spacing-sm);
}

.bonus-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.bonus-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.bonus-link {
    color: var(--color-accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bonus-link:hover {
    color: var(--color-brand);
}

.bonus-image {
    position: relative;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.bonus-image img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: var(--color-card-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-content h3 {
    margin-top: var(--spacing-lg);
    color: var(--color-brand);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-brand);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-brand);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-brand);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-brand);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-nav a {
    color: var(--color-white);
    opacity: 0.85;
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--color-accent);
}

/* ==========================================
   RESPONSIVE - TABLET (768px)
   ========================================== */
@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
    }

    .nav {
        display: block;
    }

    .header-cta {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--spacing-xl));
        padding-bottom: var(--spacing-xl);
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--spacing-lg);
    }

    .hero-content {
        max-width: 55%;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-text {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
        max-width: 480px;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-image {
        display: block;
        position: relative;
        right: auto;
        bottom: auto;
        width: 40%;
        max-width: 350px;
        flex-shrink: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    .category-item {
        gap: var(--spacing-xs);
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
        min-width: 100px;
        width: auto;
    }

    .category-item img {
        width: 48px;
        height: 48px;
    }

    .category-item span {
        font-size: 0.875rem;
    }

    .hero-container {
        flex-direction: row;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .bonus-card {
        flex-direction: row;
    }

    .bonus-content {
        padding: var(--spacing-xl);
    }

    .bonus-image {
        flex: 0 0 280px;
        min-height: auto;
    }

    .bonus-image img {
        max-height: 320px;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 var(--spacing-sm);
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP (1024px)
   ========================================== */
@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--spacing-lg));
        padding-bottom: var(--spacing-lg);
        min-height: 60vh;
        /* Ensure it doesn't take full height */
    }

    .hero-content {
        max-width: 50%;
    }

    .hero h1 {
        font-size: 3.25rem;
        line-height: 1.1;
    }

    .hero-text {
        font-size: 1.15rem;
        max-width: 520px;
    }

    .hero-buttons .btn {
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    .hero-image {
        width: 45%;
        max-width: 450px;
    }

    .hero-image img {
        max-height: 450px;
    }

    .bonus-content {
        padding: var(--spacing-xl) var(--spacing-xxl);
    }

    .bonus-title {
        font-size: 1.75rem;
    }

    .bonus-amount {
        font-size: 2.5rem;
    }

    .bonus-image {
        flex: 0 0 350px;
    }

    .bonus-image img {
        max-height: 380px;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.section-bg {
    background: var(--color-card-bg);
}

/* ==========================================
   PROMOTIONAL CTA BANNER
   ========================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--color-brand) 0%, #a02868 50%, var(--color-cta) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.promo-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.promo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.promo-title .highlight {
    color: var(--color-accent);
    text-shadow: 0 2px 10px rgba(247, 147, 30, 0.5);
}

.promo-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.4);
    transition: all var(--transition-normal);
}

.btn-promo:hover {
    background: #ffaa33;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(247, 147, 30, 0.5);
}

.btn-promo svg {
    transition: transform var(--transition-normal);
}

.btn-promo:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   STICKY BOTTOM CTA BAR
   ========================================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-brand) 0%, #a02868 100%);
    padding: 12px var(--spacing-md);
    z-index: 998;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: var(--spacing-sm);
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
}

.sticky-cta-bonus {
    font-size: 1rem;
    font-weight: 700;
}

.sticky-cta-sub {
    font-size: 0.8rem;
    opacity: 0.9;
}

.btn-sticky {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

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

.btn-sticky:hover {
    background: #ffaa33;
    transform: scale(1.05);
}

/* ==========================================
   FLOATING CTA BUTTON
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-cta) 0%, #0fa855 100%);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    z-index: 997;
    box-shadow: 0 4px 20px rgba(27, 124, 73, 0.4);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: scale(0);
}

.floating-cta.visible {
    opacity: 1;
    transform: scale(1);
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(27, 124, 73, 0.5);
}

.floating-cta-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--color-cta);
    animation: float-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes float-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-cta-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.floating-cta-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Hide floating CTA on desktop, show sticky bar */
@media (min-width: 768px) {
    .promo-title {
        font-size: 2.5rem;
    }

    .floating-cta {
        bottom: 30px;
        right: 30px;
        width: 80px;
        height: 80px;
    }

    .floating-cta-icon {
        font-size: 1.8rem;
    }

    .floating-cta-text {
        font-size: 0.7rem;
    }

    .sticky-cta-bar {
        padding: 16px var(--spacing-lg);
    }

    .sticky-cta-bonus {
        font-size: 1.2rem;
    }

    .btn-sticky {
        padding: 12px 32px;
        font-size: 1rem;
    }
}

/* Adjust floating button position when sticky bar is visible */
.sticky-cta-bar.visible~.floating-cta {
    bottom: 90px;
}

@media (min-width: 768px) {
    .sticky-cta-bar.visible~.floating-cta {
        bottom: 100px;
    }
}