/*
Theme Name: LET Lotto Golf Theme
Theme URI: https://letlotto.com
Author: LET Lotto
Author URI: https://letlotto.com
Description: A premium golf-inspired WordPress theme designed for charity fundraising sweepstakes. Features Augusta National-inspired colors, elegant typography, and seamless integration with the LET Lotto Pro plugin.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: let-lotto-theme
Tags: charity, fundraising, golf, sweepstakes, custom-menu, custom-logo, featured-images, theme-options

LET Lotto Golf Theme - Empowering Charity Fundraising
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Primary - Augusta Green Palette */
    --let-masters: #1a472a;
    --let-masters-rgb: 26, 71, 42;
    --let-fairway: #2d5a3d;
    --let-rough: #1e3a2b;
    --let-pine: #0d2818;
    --let-pine-rgb: 13, 40, 24;
    
    /* Accent - Championship Gold */
    --let-gold: #c9a227;
    --let-gold-rgb: 201, 162, 39;
    --let-gold-light: #d4af37;
    --let-gold-pale: #f4e4bc;
    --let-bronze: #a67c00;
    
    /* Supporting */
    --let-sky: #87ceeb;
    --let-sand: #f5e6d3;
    --let-clubhouse: #f8f5f0;
    --let-leather: #8b4513;
    
    /* Neutrals */
    --let-white: #ffffff;
    --let-cream: #faf9f6;
    --let-ivory: #fffff0;
    --let-gray-50: #f9fafb;
    --let-gray-100: #f3f4f6;
    --let-gray-200: #e5e7eb;
    --let-gray-300: #d1d5db;
    --let-gray-400: #9ca3af;
    --let-gray-500: #6b7280;
    --let-gray-600: #4b5563;
    --let-gray-700: #374151;
    --let-gray-800: #1f2937;
    --let-gray-900: #111827;
    
    /* Status */
    --let-success: #22c55e;
    --let-warning: #f59e0b;
    --let-danger: #ef4444;
    --let-info: #3b82f6;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito Sans', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Josefin Sans', 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Borders */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.35);
    --shadow-green: 0 4px 20px rgba(26, 71, 42, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Layout */
    --container-max: 1400px;
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--let-gray-700);
    background-color: var(--let-cream);
    overflow-x: hidden;
}

/* Ensure all lists in navigation have no bullets */
.nav-menu,
.nav-menu ul,
.nav-menu li,
.main-navigation ul,
.main-navigation li,
#primary-menu,
#primary-menu ul,
#primary-menu li,
.sub-menu {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

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

a {
    color: var(--let-masters);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--let-gold);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--let-masters);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: var(--space-lg);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--let-gray-600);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--let-gold) 0%, var(--let-gold-light) 100%);
    border-radius: var(--radius-full);
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1600px;
}

section {
    padding: var(--space-4xl) 0;
}

.section-light {
    background: var(--let-white);
}

.section-cream {
    background: var(--let-cream);
}

.section-green {
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-pine) 100%);
    color: var(--let-white);
}

.section-green h2,
.section-green h3,
.section-green h4 {
    color: var(--let-white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-pine) 100%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 var(--space-2xl);
    max-width: 100%;
    width: 100%;
    margin: 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a,
.site-logo-link,
.custom-logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    color: var(--let-white);
}

.site-logo img,
.custom-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    transition: var(--transition);
}

.site-logo a:hover img,
.site-logo-link:hover img,
.custom-logo-link:hover .custom-logo {
    transform: scale(1.03);
}

.site-logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.site-logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo-text .site-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--let-white);
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0;
}

.site-logo-text .site-tagline {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--let-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu,
#primary-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-menu > li,
#primary-menu > li {
    position: relative;
    list-style: none !important;
}

.nav-menu > li > a,
#primary-menu > li > a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu > li > a::after,
#primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--let-gold);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a,
.nav-menu > li.current_page_item > a,
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a,
#primary-menu > li.current_page_item > a {
    color: var(--let-white);
    background: rgba(255,255,255,0.1);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after,
#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after,
#primary-menu > li.current_page_item > a::after {
    width: 50%;
}

/* Dropdown */
.nav-menu .sub-menu,
.nav-menu .children,
#primary-menu .sub-menu,
#primary-menu .children {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--let-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none !important;
    border-top: 3px solid var(--let-gold);
    z-index: 1000;
}

.nav-menu > li:hover > .sub-menu,
.nav-menu > li:hover > .children,
#primary-menu > li:hover > .sub-menu,
#primary-menu > li:hover > .children {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li,
.nav-menu .children li,
#primary-menu .sub-menu li,
#primary-menu .children li {
    list-style: none !important;
}

.nav-menu .sub-menu li a,
.nav-menu .children li a,
#primary-menu .sub-menu li a,
#primary-menu .children li a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--let-gray-700);
    transition: var(--transition-fast);
    text-decoration: none;
}

.nav-menu .sub-menu li a:hover,
.nav-menu .children li a:hover,
#primary-menu .sub-menu li a:hover,
#primary-menu .children li a:hover {
    background: var(--let-gray-50);
    color: var(--let-masters);
    padding-left: calc(var(--space-lg) + 5px);
}

/* CTA Button - detect by URL or menu class */
.nav-menu > li:last-child > a,
#primary-menu > li:last-child > a,
.nav-menu > li.nav-cta > a,
#primary-menu > li.nav-cta > a,
.nav-menu > li.menu-item-type-custom:last-child > a,
#primary-menu > li.menu-item-type-custom:last-child > a {
    background: linear-gradient(135deg, var(--let-gold) 0%, var(--let-gold-light) 100%) !important;
    color: var(--let-pine) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-gold);
    margin-left: var(--space-md);
}

.nav-menu > li:last-child > a::after,
#primary-menu > li:last-child > a::after,
.nav-menu > li.nav-cta > a::after,
#primary-menu > li.nav-cta > a::after {
    display: none !important;
}

.nav-menu > li:last-child > a:hover,
#primary-menu > li:last-child > a:hover,
.nav-menu > li.nav-cta > a:hover,
#primary-menu > li.nav-cta > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, var(--let-gold-light) 0%, var(--let-gold) 100%) !important;
}

/* Header Contact/CTA */
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-left: var(--space-xl);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: var(--space-xl);
}

.header-welcome {
    color: var(--let-gold);
    font-weight: 600;
    font-size: 0.9rem;
    padding-right: var(--space-sm);
}

.header-login {
    color: var(--let-white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
    transition: var(--transition);
}

.header-login:hover {
    color: var(--let-gold);
}

.header-logout {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: var(--space-sm);
    transition: var(--transition);
}

.header-logout:hover {
    color: var(--let-white);
}

.header-cta .btn-gold {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    white-space: nowrap;
}

.header-cta .btn-cart {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header-cta .btn-cart svg {
    width: 16px;
    height: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--let-gold);
    padding-left: var(--space-md);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--let-gold-light);
}

.header-phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--let-white);
    margin: 5px 0;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-pine) 100%);
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26,71,42,0.92) 0%, rgba(13,40,24,0.95) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(201,162,39,0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(201,162,39,0.2);
    border: 1px solid var(--let-gold);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge span {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--let-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: var(--let-white);
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
    color: var(--let-gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stat {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--let-gold);
    line-height: 1;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.hero-stat-label {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: var(--space-sm);
}

/* Decorative Elements */
.hero::before {
    content: '⛳';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--let-cream) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-fairway) 100%);
    color: var(--let-white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.4);
    color: var(--let-white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--let-gold) 0%, var(--let-gold-light) 100%);
    color: var(--let-pine);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
    color: var(--let-pine);
}

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

.btn-outline:hover {
    background: var(--let-white);
    color: var(--let-masters);
}

.btn-outline-dark {
    border-color: var(--let-masters);
    color: var(--let-masters);
}

.btn-outline-dark:hover {
    background: var(--let-masters);
    color: var(--let-white);
}

/* Button shimmer effect */
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-gold:hover::before {
    left: 100%;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--let-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

/* Allow overflow for step cards */
.card.step-card {
    overflow: visible;
}

.card.step-card:hover {
    transform: translateY(-5px);
}

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

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-body {
    padding: var(--space-xl);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.card-text {
    color: var(--let-gray-600);
    margin-bottom: var(--space-lg);
}

/* Feature Card */
.feature-card {
    position: relative;
    padding: var(--space-2xl);
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--let-gold) 0%, var(--let-gold-light) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg) auto;
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-fairway) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon img,
.feature-icon svg {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h4,
.feature-card h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-card p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Beaver Builder compatibility - center icons in FL rows */
.fl-module-icon .fl-icon,
.fl-icon-wrap {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

.fl-module-icon {
    text-align: center !important;
    width: 100% !important;
}

.fl-icon-text {
    text-align: center !important;
}

/* Center Beaver Builder icon modules */
.fl-module-icon .fl-icon-wrap {
    justify-content: center !important;
    width: 100% !important;
}

.fl-node-content {
    text-align: center !important;
}

.fl-col-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.fl-module-icon {
    width: 100%;
    display: flex;
    justify-content: center;
}

.fl-icon i,
.fl-icon svg,
.fl-icon img {
    margin: 0 auto !important;
}

/* Force center the icon wrapper */
.fl-icon-wrap {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* Target span inside icon module */
.fl-module-icon span.fl-icon {
    display: flex !important;
    justify-content: center !important;
}

/* Center icon in column */
.fl-col .fl-module-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.fl-module-icon .fl-icon {
    margin: 0 auto !important;
}

/* Step Card */
.step-card {
    position: relative;
    padding-top: 50px;
    margin-top: 40px;
    overflow: visible !important;
}

.step-card.feature-card {
    overflow: visible !important;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--let-gold) 0%, var(--let-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--let-pine);
    box-shadow: var(--shadow-gold);
    z-index: 10;
}

/* Override card overflow for step cards */
.card.step-card {
    overflow: visible !important;
}

/* Ensure gold line doesn't touch step number */
.step-card.feature-card::before {
    top: 0;
    margin-top: 0;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-pine) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--let-gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--let-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--let-gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--let-gray-600);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--let-gold);
}

.testimonial-name {
    font-weight: 700;
    color: var(--let-masters);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--let-gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, var(--let-gray-800) 0%, var(--let-gray-900) 100%);
    color: var(--let-gray-300);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--let-gold) 0%, var(--let-masters) 50%, var(--let-gold) 100%);
}

.footer-main {
    padding: var(--space-3xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--let-white);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--let-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--let-gold);
    color: var(--let-pine);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    color: var(--let-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: var(--space-sm);
}

.footer-menu a {
    color: var(--let-gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--let-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--let-gray-400);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--let-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--let-gray-400);
}

.footer-contact-item a:hover {
    color: var(--let-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--let-gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.9rem;
    color: var(--let-gray-500);
}

.footer-legal a:hover {
    color: var(--let-gold);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--let-gray-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--let-gray-700);
    background: var(--let-white);
    border: 2px solid var(--let-gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--let-masters);
    box-shadow: 0 0 0 4px rgba(26, 71, 42, 0.1);
}

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

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-pine) 100%);
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(201,162,39,0.1) 0%, transparent 50%);
}

.page-header h1 {
    color: var(--let-white);
    margin-bottom: var(--space-md);
    position: relative;
}

.page-header .breadcrumb {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb a {
    color: var(--let-gold);
}

.page-content {
    padding: var(--space-3xl) 0;
}

/* ============================================
   WORDPRESS CORE STYLES
   ============================================ */
.wp-block-image {
    margin-bottom: var(--space-xl);
}

.wp-block-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.alignright {
    float: right;
    margin-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero-stat {
        position: static;
        transform: none;
        margin-top: var(--space-2xl);
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--let-pine);
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu,
    #primary-menu {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-menu > li > a,
    #primary-menu > li > a {
        padding: var(--space-md);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu > li > a::after,
    #primary-menu > li > a::after {
        display: none;
    }
    
    .nav-menu .sub-menu,
    .nav-menu .children,
    #primary-menu .sub-menu,
    #primary-menu .children {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,0.2);
        border-radius: var(--radius);
        margin-top: var(--space-sm);
        border-top: none;
        box-shadow: none;
    }
    
    .nav-menu .sub-menu li a,
    .nav-menu .children li a,
    #primary-menu .sub-menu li a,
    #primary-menu .children li a {
        color: rgba(255,255,255,0.8);
        padding: var(--space-sm) var(--space-lg);
    }
    
    .nav-menu .sub-menu li a:hover,
    .nav-menu .children li a:hover,
    #primary-menu .sub-menu li a:hover,
    #primary-menu .children li a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--let-white);
    }
    
    .nav-menu > li:last-child,
    #primary-menu > li:last-child {
        margin-top: var(--space-md);
    }
    
    .nav-menu > li:last-child > a,
    #primary-menu > li:last-child > a {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .header-contact,
    .header-cta {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-2xl) 0;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
*:focus-visible {
    outline: 3px solid var(--let-gold);
    outline-offset: 2px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--let-gold);
    color: var(--let-pine);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius);
    z-index: 9999;
    transition: var(--transition);
}

.skip-link:focus {
    top: var(--space-md);
}

/* ============================================
   LET LOTTO PLUGIN STYLES
   ============================================ */

/* Plugin Container Overrides */
.let-lotto-container,
.let-lotto-auth-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Plugin Header - Hide completely since user info is in theme header */
.let-lotto-header,
.let-lotto-nav,
.let-lotto-top-bar,
.let-lotto-user-bar {
    display: none !important;
}

/* Auth Forms (Login/Register) */
.let-lotto-form,
.let-lotto-auth-form {
    background: var(--let-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.let-lotto-form .form-group,
.let-lotto-auth-form .form-group {
    margin-bottom: var(--space-lg);
}

.let-lotto-form label,
.let-lotto-auth-form label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--let-pine);
    font-size: 0.9rem;
}

.let-lotto-form input[type="text"],
.let-lotto-form input[type="email"],
.let-lotto-form input[type="password"],
.let-lotto-form input[type="tel"],
.let-lotto-form select,
.let-lotto-form textarea,
.let-lotto-auth-form input[type="text"],
.let-lotto-auth-form input[type="email"],
.let-lotto-auth-form input[type="password"],
.let-lotto-auth-form input[type="tel"],
.let-lotto-auth-form select,
.let-lotto-auth-form textarea,
input.let-lotto-input,
.let-lotto-input {
    width: 100%;
    padding: var(--space-md) !important;
    border: 2px solid var(--let-gray-200) !important;
    border-radius: var(--radius-md) !important;
    font-size: 1rem !important;
    transition: var(--transition);
    background: var(--let-white) !important;
    box-shadow: none !important;
}

.let-lotto-form input:focus,
.let-lotto-form select:focus,
.let-lotto-form textarea:focus,
.let-lotto-auth-form input:focus,
.let-lotto-auth-form select:focus,
.let-lotto-auth-form textarea:focus,
.let-lotto-input:focus {
    outline: none !important;
    border-color: var(--let-masters) !important;
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1) !important;
}

/* Form Row for side-by-side fields */
.let-lotto-form-row,
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .let-lotto-form-row,
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Submit Buttons */
.let-lotto-form button[type="submit"],
.let-lotto-form .btn-submit,
.let-lotto-auth-form button[type="submit"],
.let-lotto-btn,
.let-lotto-submit {
    width: 100%;
    padding: var(--space-md) var(--space-xl) !important;
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-fairway) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.let-lotto-form button[type="submit"]:hover,
.let-lotto-btn:hover,
.let-lotto-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green) !important;
}

/* Plugin Card/Box Styling */
.let-lotto-card,
.let-lotto-box {
    background: var(--let-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.let-lotto-card-header {
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-pine) 100%);
    padding: var(--space-lg);
    text-align: center;
}

.let-lotto-card-header h1,
.let-lotto-card-header h2,
.let-lotto-card-header h3 {
    color: var(--let-gold);
    margin: 0;
}

.let-lotto-card-body {
    padding: var(--space-xl);
}

/* Links in forms */
.let-lotto-form a,
.let-lotto-auth-form a,
.let-lotto-link {
    color: var(--let-masters);
    font-weight: 600;
}

.let-lotto-form a:hover,
.let-lotto-auth-form a:hover,
.let-lotto-link:hover {
    color: var(--let-gold);
}

/* Lotto Board */
.let-lotto-board {
    background: var(--let-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.let-lotto-board-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--let-gray-100);
}

.let-lotto-board-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
    margin-bottom: var(--space-xl);
}

.let-lotto-square {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--let-gray-100);
    border: 2px solid var(--let-gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.let-lotto-square:hover:not(.claimed):not(.selected) {
    background: var(--let-cream);
    border-color: var(--let-gold);
}

.let-lotto-square.available {
    background: var(--let-white);
    border-color: var(--let-gray-300);
}

.let-lotto-square.selected {
    background: linear-gradient(135deg, var(--let-gold) 0%, var(--let-gold-light) 100%);
    border-color: var(--let-gold-dark);
    color: var(--let-pine);
}

.let-lotto-square.claimed {
    background: linear-gradient(135deg, var(--let-masters) 0%, var(--let-fairway) 100%);
    border-color: var(--let-pine);
    color: white;
    cursor: not-allowed;
}

.let-lotto-square.wild-card {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border-color: #6b21a8;
    color: white;
}

/* Board Legend */
.let-lotto-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    padding: var(--space-lg);
    background: var(--let-gray-50);
    border-radius: var(--radius-md);
}

.let-lotto-legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
}

.let-lotto-legend-color {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    border: 2px solid;
}

/* Cart */
.let-lotto-cart {
    background: var(--let-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.let-lotto-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--let-gray-100);
}

.let-lotto-cart-items {
    margin-bottom: var(--space-lg);
}

.let-lotto-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--let-gray-100);
}

.let-lotto-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--let-pine);
}

/* Account Dashboard */
.let-lotto-account {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-xl);
}

.let-lotto-account-nav {
    background: var(--let-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
}

.let-lotto-account-nav a {
    display: block;
    padding: var(--space-md);
    color: var(--let-gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.let-lotto-account-nav a:hover,
.let-lotto-account-nav a.active {
    background: var(--let-cream);
    color: var(--let-masters);
}

.let-lotto-account-content {
    background: var(--let-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Squares Table */
.let-lotto-squares-table {
    width: 100%;
    border-collapse: collapse;
}

.let-lotto-squares-table th,
.let-lotto-squares-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--let-gray-100);
}

.let-lotto-squares-table th {
    background: var(--let-gray-50);
    font-weight: 600;
    color: var(--let-pine);
}

.let-lotto-squares-table tr:hover {
    background: var(--let-cream);
}

/* Checkout */
.let-lotto-checkout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-xl);
}

.let-lotto-checkout-form {
    background: var(--let-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.let-lotto-order-summary {
    background: var(--let-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
}

/* PayPal Button */
.let-lotto-paypal-button {
    margin-top: var(--space-lg);
}

/* Messages */
.let-lotto-message {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.let-lotto-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.let-lotto-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.let-lotto-message.info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Responsive */
@media (max-width: 992px) {
    .let-lotto-account {
        grid-template-columns: 1fr;
    }
    
    .let-lotto-checkout {
        grid-template-columns: 1fr;
    }
    
    .let-lotto-board-grid {
        grid-template-columns: repeat(10, 1fr);
        gap: 2px;
    }
    
    .let-lotto-square {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .let-lotto-board-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .let-lotto-legend {
        flex-direction: column;
        align-items: center;
    }
}
