/* ==========================================================================
   AFFILIATEOFFERS - PREMIUM GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

/* Import Outfit (for Headings) & Inter (for Body Text) from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary-gradient: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    --secondary-glow: rgba(139, 92, 246, 0.3);

    --bg-mesh: radial-gradient(at 0% 0%, rgba(219, 234, 254, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(243, 232, 255, 0.5) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(219, 234, 254, 0.3) 0px, transparent 50%),
        #F8FAFC;

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;

    /* Glassmorphism Specs */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
    --glass-inner-glow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6);

    --card-bg: rgba(255, 255, 255, 0.55);
    --card-border: rgba(255, 255, 255, 0.6);
    --card-shadow: 0 10px 30px 0 rgba(31, 38, 135, 0.05);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-mesh);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Drifting Ambient Glowing Blobs for Organic Canvas */
@keyframes drift-blob-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(120px, 80px) scale(1.15);
    }

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

@keyframes drift-blob-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-150px, -100px) scale(0.9);
    }

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

/* Dynamic Decorative Blobs for Ambient Glow */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -200px;
    z-index: -1;
    pointer-events: none;
    animation: drift-blob-1 25s infinite ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 200px;
    right: -200px;
    z-index: -1;
    pointer-events: none;
    animation: drift-blob-2 30s infinite ease-in-out;
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

/* Glass Container Base Utility */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-xl);
    position: relative;
}

/* Navigation Header */
.header-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    background-size: 200% auto;
    animation: gradient-flow 3s linear infinite;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px var(--primary-glow);
    -webkit-text-fill-color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #1D4ED8;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.active {
    color: #1D4ED8;
    font-weight: 600;
}

/* Dropdown Menu for Niches */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1010;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #1D4ED8;
}

.dropdown-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Call to Action Button */
.cta-button {
    background: var(--primary-gradient);
    background-size: 200% auto;
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 14px var(--primary-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: casino-pulse 2s infinite, gradient-flow 3s linear infinite;
}

/* Diagonal glossy shimmer sweep on hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.cta-button:hover::before {
    left: 150%;
}


.cta-button svg {
    transition: var(--transition-fast);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Layout Containers */
.main-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 140px auto 60px;
}

/* Hero Section style for Homepage */
.hero-wrapper {
    margin-top: 140px;
    margin-bottom: 50px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.badge-tag {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: #1D4ED8;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.03);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    max-width: 850px;
    margin: 0 auto 20px;
    color: var(--text-primary);
    line-height: 1.15;
}

.hero-title span {
    background: var(--primary-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s linear infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 35px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.outline-button {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.outline-button:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Category Niche Page Hero Section */
.category-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 130px;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.category-hero-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65) saturate(1.1);
    transform: scale(1.02);
    z-index: 1;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(59, 130, 246, 0.3) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

.category-hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.category-hero .badge-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.category-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.category-hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Offers Grid Setup - 3 Columns Across */
.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-title span {
    background: var(--primary-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s linear infinite;
}

.section-desc {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 700px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Offer Card Design */
.offer-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Subtle hover card glow */
.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: 0 0 30px var(--primary-glow);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.offer-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.08);
}

.offer-card:hover::after {
    opacity: 0.3;
}

.offer-image-box {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image diagonal flash sweep */
.offer-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 5;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.offer-card:hover .offer-image-box::before {
    left: 150%;
}

.offer-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.offer-card:hover .offer-image-box img {
    transform: scale(1.08);
}

/* Image glass overlay */
.offer-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.7) 100%);
    pointer-events: none;
}


.offer-floating-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    animation: casino-float 3s ease-in-out infinite;
}

/* Color styles for floating tags */
.tag-exclusive {
    background: rgba(139, 92, 246, 0.85);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tag-premium {
    background: rgba(59, 130, 246, 0.85);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.tag-limited {
    background: rgba(239, 68, 68, 0.85);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tag-value {
    background: rgba(16, 185, 129, 0.85);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.offer-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.offer-description {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-meta-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
    margin-bottom: 20px;
}

.meta-pill {
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.meta-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1D4ED8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #3B82F6;
    border-radius: 50%;
}

.offer-card .cta-button {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

/* Statistics Grid Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.6);
}

.stat-number {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Affiliate Disclosure Banner (At the bottom of lists) */
.disclosure-bar {
    padding: 16px 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    border-radius: var(--radius-md);
    margin-bottom: 60px;
    line-height: 1.5;
}

.disclosure-bar a {
    color: #1D4ED8;
    text-decoration: underline;
    font-weight: 500;
}

/* Generic Full Content Page Template (Contact, Privacy, Terms) */
.page-content-box {
    padding: 40px;
    margin-bottom: 60px;
}

.page-content-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 30px;
}

.page-content-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-content-desc {
    color: var(--text-secondary);
    font-size: 1rem;
}

.page-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-body h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

.page-body p {
    margin-bottom: 16px;
}

.page-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-body li {
    margin-bottom: 8px;
}

/* Contact Form Specific Styling */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding-right: 20px;
}

.contact-info-title {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D4ED8;
    flex-shrink: 0;
}

.contact-method-text h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-method-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .cta-button {
    align-self: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3B82F6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Footer Styling */
.footer-wrap {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.3);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    max-width: 320px;
}

.footer-links-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: #1D4ED8;
    padding-left: 4px;
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MEDIA QUERIES - HIGHLY RESPONSIVE IMPLEMENTATION
   ========================================================================== */

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        width: 95%;
        padding: 10px 20px;
        top: 10px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: calc(100% - 20px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        border: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-radius: var(--radius-lg);
        flex-direction: column;
        padding: 30px 20px;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
        border: none;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 8px;
    }

    .nav-item-dropdown.active-mobile .dropdown-menu {
        display: flex;
    }

    .header-nav .cta-button {
        display: none;
        /* Hide in nav, display in menu if needed */
    }

    .nav-menu .cta-button {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .main-wrapper {
        margin-top: 110px;
    }

    .hero-wrapper {
        padding: 50px 20px;
        margin-top: 110px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-hero {
        margin-top: 110px;
    }

    .category-hero-content {
        padding: 50px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .page-content-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .cta-button,
    .hero-actions .outline-button {
        width: 100%;
        justify-content: center;
    }
    
    .category-hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   SCROLL ENTRANCE ANIMATIONS (Intersection Observer)
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes for grid items */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* 3D Glass Card Tilt parameters */
.offer-card {
    transition: transform 0.15s ease-out, box-shadow 0.3s ease-out, background 0.3s ease-out, border-color 0.3s ease-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ==========================================================================
   CASINO THEME ANIMATIONS (Triple Seven Style)
   ========================================================================== */

/* 1. Pulsing Ripple Glow for Buttons (Slot Machine Button Effect) */
@keyframes casino-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7), 0 4px 14px var(--primary-glow);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0), 0 4px 14px var(--primary-glow);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0), 0 4px 14px var(--primary-glow);
    }
}

/* 2. Floating / Levitating Animation (Coin/Chip Hovering Effect) */
@keyframes casino-float {
    0% {
        transform: translateY(0px);
    }

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

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

/* 3. Gradient Flow Animation for Text & Buttons (Neon Flow Effect) */
@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

