/* ============================================
   FIRST NATIONS HEALTH FOUNDATION
   First Nations Health Foundation Raffle & 50/50 Draw
   Bold, Contemporary, Distinctive Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

/* ---=== 1. COMPLETELY DIFFERENT Color Palette ===--- */
:root {
    /* Primary Colors - Bold & Vibrant */
    --primary: #1a2332;
    --primary-dark: #0d1419;
    --primary-light: #2a3a4f;
    --accent: #5b8e7d;
    --accent-dark: #4a7566;
    --accent-light: #7ab09a;
    --accent-glow: rgba(91, 142, 125, 0.2);
    
    /* Secondary Accents - Earth Tones */
    --secondary: #8b7355;
    --secondary-light: #a68f6f;
    --tertiary: #6d8e5f;
    --tertiary-dark: #5a7450;
    
    /* Neutral Colors - Cool Grays */
    --white: #ffffff;
    --cream: #f5f7fa;
    --beige: #e8ecf1;
    --tan: #d1d9e3;
    --charcoal: #2c3e50;
    --black: #0a0e14;
    
    /* Semantic Colors */
    --success: #6d8e5f;
    --warning: #c9a961;
    --danger: #b85c57;
    --info: #5b8e7d;
    
    /* Background Colors */
    --bg-primary: #f5f7fa;
    --bg-secondary: #e8ecf1;
    --bg-dark: #1a2332;
    --bg-card: #ffffff;
    --bg-overlay: rgba(26, 35, 50, 0.95);
    
    /* Shadows - Strong & Defined */
    --shadow-xs: 0 2px 4px rgba(26, 35, 50, 0.1);
    --shadow-sm: 0 4px 8px rgba(26, 35, 50, 0.12);
    --shadow-md: 0 8px 16px rgba(26, 35, 50, 0.15);
    --shadow-lg: 0 12px 24px rgba(26, 35, 50, 0.18);
    --shadow-xl: 0 16px 32px rgba(26, 35, 50, 0.2);
    --shadow-2xl: 0 24px 48px rgba(26, 35, 50, 0.25);
    --shadow-accent: 0 8px 24px rgba(91, 142, 125, 0.3);
    --shadow-accent-lg: 0 16px 40px rgba(91, 142, 125, 0.35);
    
    /* Typography - Bold & Modern */
    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Crimson Text', Georgia, serif;
    
    /* Spacing Scale - Different Rhythm */
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3.5rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 7rem;
    --spacing-4xl: 10rem;
    
    /* Transitions - Snappy */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius - Sharp with Some Rounding */
    --radius-sm: 2px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50px;
}

/* ---=== 2. Global Reset & Base Styles ===--- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Prevent horizontal overflow */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--bg-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Minimal Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(91, 142, 125, 0.03) 0%, transparent 50%),
        linear-gradient(90deg, rgba(139, 115, 85, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* ---=== 3. Typography - Different Hierarchy ===--- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.75rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 { 
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 { 
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
}

h4 { 
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* ---=== 4. Header Design - COMPLETELY DIFFERENT ===--- */
.main-header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(26, 35, 50, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent);
    transition: all var(--transition-base);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    transition: transform var(--transition-base);
    letter-spacing: -0.01em;
}

.logo:hover {
    transform: translateX(2px);
}

.logo span {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8125rem;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    text-decoration: none;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0.5rem;
}

/* ---=== 5. Hero Section - COMPLETELY DIFFERENT ===--- */
.hero {
    position: relative;
    padding: 7rem 2rem 5rem;
    background: var(--primary);
    color: white;
    overflow: hidden;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(91, 142, 125, 0.15) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.hero h1 {
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease;
}

.hero-jackpot {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-light);
    margin: 1.25rem 0;
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1875rem;
    margin-bottom: 2.25rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---=== 6. Button Styles - COMPLETELY DIFFERENT ===--- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(91, 142, 125, 0.3);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(91, 142, 125, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
    text-decoration: none;
}

.btn-accent {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-accent:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    text-decoration: none;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ---=== 7. Card Styles - COMPLETELY DIFFERENT ===--- */
.card {
    background: var(--bg-card);
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(26, 35, 50, 0.08);
    transition: all var(--transition-base);
    border: 2px solid var(--beige);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(26, 35, 50, 0.12);
    border-color: var(--accent);
}

/* ---=== 8. Ticket Packages ===--- */
.ticket-packages {
    margin: 4rem 0;
}

.ticket-package-card {
    position: relative;
    overflow: visible;
    border: 3px solid var(--beige);
    transition: all var(--transition-base);
    background: var(--white);
    border-radius: var(--radius-xl);
}

.ticket-package-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-accent-lg);
}

.package-price {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-sans);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ---=== 9. Sections ===--- */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    box-sizing: border-box;
}

/* Grid Systems - Different Layout */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* ---=== 10. Trust Icons - COMPLETELY DIFFERENT ===--- */
.trust-icons {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2.5rem 2rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(26, 35, 50, 0.06);
    border-radius: var(--radius-xl);
    border: 2px solid var(--beige);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--beige);
    width: 100%;
    box-sizing: border-box;
}

.trust-icons::-webkit-scrollbar {
    height: 6px;
}

.trust-icons::-webkit-scrollbar-track {
    background: var(--beige);
    border-radius: 3px;
}

.trust-icons::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.premium-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.875rem;
    padding: 1.5rem 1.25rem;
    background: transparent;
    border-radius: var(--radius-md);
    border: 2px solid var(--beige);
    transition: all var(--transition-base);
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 100%;
    box-sizing: border-box;
}

.premium-trust-item:hover {
    border-color: var(--accent);
    background: rgba(91, 142, 125, 0.05);
    box-shadow: 0 4px 12px rgba(91, 142, 125, 0.15);
}

.trust-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(91, 142, 125, 0.25);
    transition: all var(--transition-base);
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
}

.trust-icon-wrapper i {
    opacity: 1;
    visibility: visible;
    display: block;
}

.premium-trust-item:hover .trust-icon-wrapper {
    animation: bounce 0.6s ease;
    box-shadow: 0 6px 16px rgba(91, 142, 125, 0.35);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px) scale(1.05);
    }
    50% {
        transform: translateY(-4px) scale(1.1);
    }
    75% {
        transform: translateY(-2px) scale(1.05);
    }
}

.premium-trust-item strong {
    display: block;
    color: var(--charcoal);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 0.375rem;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.premium-trust-item span {
    display: block;
    color: var(--charcoal);
    font-size: clamp(0.75rem, 1.25vw, 0.875rem);
    opacity: 0.7;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    position: relative;
    padding: 1.25rem 1.5rem;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    background: transparent;
    border: 2px solid var(--beige);
}

.icon-item:hover {
    background: rgba(91, 142, 125, 0.05);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(91, 142, 125, 0.15);
}

.icon-item:hover .trust-icon-wrapper {
    animation: bounce 0.6s ease;
}

.icon-item i {
    font-size: 2.25rem;
    color: var(--accent);
    transition: all var(--transition-base);
    opacity: 1;
    visibility: visible;
    display: block;
}

.icon-item:hover i {
    animation: bounce 0.6s ease;
    color: var(--accent-dark);
}

/* ---=== 11. Footer Design - COMPLETELY DIFFERENT ===--- */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 5rem 2rem 3rem;
    margin-top: 6rem;
    position: relative;
    border-top: 4px solid var(--accent);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91, 142, 125, 0.6), transparent);
}

.site-footer .container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.site-footer a:hover {
    color: var(--accent-light);
    text-decoration-thickness: 2px;
}

.footer-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(91, 142, 125, 0.3);
    border-bottom: 1px solid rgba(91, 142, 125, 0.3);
}

.footer-imgs img {
    max-height: 60px;
    transition: all var(--transition-base);
    filter: brightness(0) invert(1) opacity(0.8);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-imgs img:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-3px);
    filter: brightness(0) invert(1);
}

.resource-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    transition: all var(--transition-base);
    text-align: center;
}

.resource-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(91, 142, 125, 0.3);
}

.resource-logo strong {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.resource-logo span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
}

/* ---=== 12. Utility Classes ===--- */
.text-center {
    text-align: center;
}

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

.d-none {
    display: none !important;
}

.hidden {
    display: none !important;
}

.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay.hidden {
    display: none !important;
}

.overlay:not(.hidden) {
    display: flex !important;
}

.cookie-bar {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-dark);
    border-top: 3px solid var(--accent);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-bar.hidden {
    display: none !important;
}

.cookie-bar:not(.hidden) {
    display: block !important;
}

body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---=== 13. Responsive Design ===--- */
@media (max-width: 1024px) {
    html {
        font-size: 16px;
    }
    
    .main-header .container {
        padding: 1.25rem 2rem;
    }
    
    .main-nav ul {
        gap: 2rem;
    }
    
    .container {
        padding: 0 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-header .container {
        padding: 1.25rem 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    .main-header .container {
        padding: 1rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .logo {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .auth-buttons {
        flex-shrink: 0;
        gap: 0.75rem;
    }
    
    .auth-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.6875rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo {
        font-size: 1.375rem;
    }
    
    .hero {
        padding: 5rem 1.5rem 4rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-jackpot {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.75rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .trust-icons {
        padding: 2rem 1.5rem !important;
        gap: 1rem !important;
        justify-content: flex-start !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .premium-trust-item {
        min-width: 140px !important;
        padding: 1.25rem 1rem !important;
    }
    
    .trust-icon-wrapper {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
    }
    
    .icon-item {
        font-size: 0.9375rem;
    }
    
    .site-footer {
        padding: 4rem 1.5rem 2rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .site-footer > div {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-imgs {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-imgs img {
        max-height: 50px;
    }
    
    /* Footer Responsive Grid */
    
    @media (max-width: 1024px) {
        .site-footer [style*="grid-template-columns"] {
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 1rem !important;
        }
        
        .site-footer .resource-logo {
            min-height: 120px !important;
            padding: 1.25rem 1rem !important;
        }
        
        .site-footer .resource-logo > div:first-child {
            width: 56px !important;
            height: 56px !important;
            margin-bottom: 0.875rem !important;
        }
        
        .site-footer .resource-logo > div:first-child i {
            font-size: 1.5rem !important;
        }
        
        .site-footer .resource-logo strong {
            font-size: 0.875rem !important;
        }
        
        .site-footer .resource-logo span {
            font-size: 0.75rem !important;
        }
    }
    
    @media (max-width: 768px) {
        .site-footer [style*="grid-template-columns"] {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1rem !important;
        }
        
        .site-footer .resource-logo {
            min-height: 110px !important;
            padding: 1.125rem 0.875rem !important;
        }
        
        .site-footer .resource-logo > div:first-child {
            width: 50px !important;
            height: 50px !important;
            margin-bottom: 0.75rem !important;
        }
        
        .site-footer .resource-logo > div:first-child i {
            font-size: 1.375rem !important;
        }
        
        .site-footer .resource-logo strong {
            font-size: 0.8125rem !important;
        }
        
        .site-footer .resource-logo span {
            font-size: 0.6875rem !important;
        }
    }
    
    @media (max-width: 480px) {
        .site-footer [style*="grid-template-columns"] {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 0.875rem !important;
        }
        
        .site-footer .resource-logo {
            min-height: 100px !important;
            padding: 1rem 0.75rem !important;
        }
        
        .site-footer .resource-logo > div:first-child {
            width: 44px !important;
            height: 44px !important;
            margin-bottom: 0.625rem !important;
        }
        
        .site-footer .resource-logo > div:first-child i {
            font-size: 1.25rem !important;
        }
        
        .site-footer .resource-logo strong {
            font-size: 0.75rem !important;
            margin-bottom: 0.25rem !important;
        }
        
        .site-footer .resource-logo span {
            font-size: 0.625rem !important;
        }
    }
    
    .site-footer .resource-logo {
        min-height: 120px !important;
        padding: 1.5rem 1.25rem !important;
    }
    
    .cookie-bar {
        padding: 1.25rem;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .cookie-actions .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .overlay .card {
        margin: 1.5rem;
        max-width: calc(100% - 3rem);
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 4rem 1rem 3rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0.25rem;
    }
    
    .section {
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.6875rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-header .container {
        padding: 1rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .site-footer {
        padding: 3rem 1rem 2rem;
    }
    
    .site-footer .resource-logo {
        min-height: 110px !important;
        padding: 1.25rem 1rem !important;
    }
    
    .site-footer [style*="grid-template-columns"] {
        gap: 1.25rem !important;
    }
    
    .trust-icons {
        padding: 1.5rem 1rem !important;
        gap: 0.875rem !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .premium-trust-item {
        min-width: 130px !important;
        padding: 1.25rem 0.875rem !important;
        gap: 0.75rem !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .trust-icon-wrapper {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.125rem !important;
    }
    
    .premium-trust-item strong {
        font-size: 0.8125rem !important;
    }
    
    .premium-trust-item span {
        font-size: 0.6875rem !important;
    }
}

/* ---=== 14. Animations ===--- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---=== 15. CRO Optimized Elements ===--- */
.urgency-badge {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--danger);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8125rem;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(184, 92, 87, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(91, 142, 125, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--white);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.95; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Additional CRO styles */
.ticket-builder {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .ticket-builder {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-base);
    font-family: var(--font-sans);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
}

.error-message {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
