:root {
    --dark-blue: #0a0a1a;
    --dark-blue-2: #1a1a2e;
    --dark-blue-3: #16213e;
    --dark-blue-4: #0f172a;
    --dark-red: #8b0000;
    --dark-red-2: #660000;
    --dark-red-3: #4a0000;
    --accent-red: #dc143c;
    --accent-red-2: #b91c1c;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #374151;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-blue-1);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Prevent horizontal scroll on mobile */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .wrap {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 10px;
    }
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    color: var(--text-light);
    padding: 15px 20px;
    border-top: 2px solid var(--accent-red);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
}

.cookie-accept-btn {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-verification-popup {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    color: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--accent-red);
    box-shadow: var(--shadow-xl);
}

.age-verification-popup h3 {
    font-size: 2em;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.btn-confirm-age,
.btn-exit-site {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-confirm-age:hover,
.btn-exit-site:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-exit-site {
    background: linear-gradient(45deg, var(--dark-red-2) 0%, var(--dark-red-3) 100%);
}

/* Header */
.app-header {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-bottom: 2px solid var(--accent-red);
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-logo-link {
    color: var(--accent-red);
    text-decoration: none;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

.site-logo-link:hover {
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
}

.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: var(--dark-blue-3);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger:hover {
    border-color: var(--accent-red);
    background: rgba(220, 20, 60, 0.1);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 900;
    display: none;
    max-width: 100vw;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--dark-blue-3);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--accent-red);
    max-width: 100vw;
    right: 0;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px 0 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(220, 20, 60, 0.1);
}

.mobile-nav-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--dark-blue-2);
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 20px 15px 20px;
}

.mobile-nav a:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-3) 100%);
    background-image: url('/assets/main.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    padding: 120px 20px 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 26, 0.85) 0%, 
        rgba(26, 26, 46, 0.8) 50%, 
        rgba(22, 33, 62, 0.9) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    background: rgba(220, 20, 60, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-red);
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 4.5em;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
    opacity: 0.9;
}

.title-highlight {
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    border-radius: 2px;
}

.hero-description {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border: 2px solid var(--accent-red);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.countdown-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
    z-index: 1;
}

.countdown-timer > * {
    position: relative;
    z-index: 2;
}

.countdown-header {
    margin-bottom: 30px;
}

.countdown-title {
    font-size: 2.5em;
    color: var(--accent-red);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

.countdown-subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    opacity: 0.9;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.countdown-unit {
    background: var(--dark-blue-1);
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 100px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.countdown-unit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--text-light);
}

.countdown-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--accent-red);
    display: block;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}

.countdown-label {
    font-size: 1em;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.countdown-cta {
    margin-top: 30px;
}

.countdown-cta .primary-cta-btn {
    font-size: 1.3em;
    padding: 18px 40px;
}

/* Responsive Design for Countdown Timer */
@media (max-width: 768px) {
    .countdown-timer {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .countdown-title {
        font-size: 2em;
    }
    
    .countdown-subtitle {
        font-size: 1.1em;
    }
    
    .countdown-display {
        gap: 15px;
    }
    
    .countdown-unit {
        min-width: 80px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 2.5em;
    }
    
    .countdown-label {
        font-size: 0.9em;
    }
    
    .countdown-cta .primary-cta-btn {
        font-size: 1.2em;
        padding: 16px 30px;
    }
}

@media (max-width: 600px) {
    .countdown-timer {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .countdown-title {
        font-size: 1.8em;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .countdown-unit {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 2em;
    }
    
    .countdown-label {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .countdown-display {
        gap: 8px;
    }
    
    .countdown-unit {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .countdown-number {
        font-size: 1.8em;
    }
    
    .countdown-label {
        font-size: 0.75em;
    }
    
    .countdown-cta .primary-cta-btn {
        font-size: 1.1em;
        padding: 14px 25px;
    }
}

/* CTA Button */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.primary-cta-btn {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.primary-cta-btn::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: left 0.5s ease;
}

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

.primary-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
}

.btn-icon {
    font-size: 1.3em;
}

/* Main Layout */
.main-content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: flex-start;
}

.content-area {
    flex: 1;
    max-width: 900px;
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Tab Menu - Right Side */
.tab-menu {
    position: sticky;
    top: 120px;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-red);
    height: fit-content;
    backdrop-filter: blur(10px);
}

.tab-menu button {
    width: 100%;
    background: var(--dark-blue-3);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 18px 25px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.tab-menu button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-menu button:hover::before {
    left: 100%;
}

.tab-menu button:hover {
    background: rgba(220, 20, 60, 0.15);
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.tab-menu button.active {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-xl);
    transform: translateX(5px);
}

.tab-menu button.active::before {
    display: none;
}

/* Tab Content */
.tab-content {
    display: none;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-red);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

/* Form Elements */
.input-group {
    margin-bottom: 30px;
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--dark-blue-3);
    box-shadow: var(--shadow);
}

.input-group label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.input-group select,
.input-group input[type="text"] {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-light);
    background: var(--dark-blue-2);
    transition: all 0.3s ease;
}

.input-group select:focus,
.input-group input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.3);
    background: var(--dark-blue);
}

/* Radio and Checkbox */
.radio-options {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.radio-options label {
    font-weight: normal;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.radio-options label:hover {
    color: var(--accent-red);
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--dark-blue-2);
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
    border-color: var(--accent-red);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.3);
}

input[type="checkbox"]:checked {
    background: var(--accent-red);
    border-color: var(--accent-red);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="radio"]:checked {
    border-color: var(--accent-red);
    background-image: radial-gradient(circle at center, var(--accent-red) 45%, transparent 46%);
}

/* Number Selection Grid */
.number-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 10px;
    margin-top: 20px;
    max-width: 600px;
}

.number-selection-grid button {
    background: var(--dark-blue-3);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 12px 0;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.number-selection-grid button:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.number-selection-grid button.active {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.add-to-cart-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-red);
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Total Price */
.total-price,
.total-amount-display,
.party-total-display {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--accent-red);
    text-align: center;
    margin: 30px 0;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-red);
    margin-bottom: 30px;
}

.info-card h2,
.info-card h3 {
    font-size: 1.8em;
    color: var(--accent-red);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.info-card p,
.info-card ul li {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.info-card ul li:before {
    content: '★ ';
    color: var(--accent-red);
    margin-right: 10px;
    font-size: 1.2em;
}

/* Tables */
.odds-table,
.entry-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: var(--dark-blue-3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.odds-table .table-row,
.entry-table .table-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.odds-table .table-row:last-child,
.entry-table .table-row:last-child {
    border-bottom: none;
}

.odds-table .table-header div,
.entry-table .table-header div {
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 15px 20px;
    text-align: left;
    flex: 1;
}

.odds-table .table-row div,
.entry-table .table-row div {
    padding: 15px 20px;
    flex: 1;
    color: var(--text-light);
}

/* Syndicate Cards */
.syndicate-offer-card {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.syndicate-offer-card.selected {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px var(--accent-red), var(--shadow-xl);
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--dark-blue-3) 0%, var(--dark-blue-2) 100%);
}

.syndicate-offer-card:hover:not(.selected) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
}

.syndicate-offer-card .card-title {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.syndicate-offer-card .card-price {
    font-size: 1.3em;
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 25px;
}

/* Lotto Party Cards */
.lotto-party-card {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.lotto-party-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-red);
}

.lotto-party-card .party-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lotto-party-card h4 {
    font-size: 1.5em;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.lotto-party-card p {
    font-size: 1em;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.lotto-party-card strong {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.lotto-party-card label {
    display: block;
    margin-top: auto;
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-red);
}

.lotto-party-card label:hover {
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Results Section */
.latest-draw-results {
    padding: 40px;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-red);
}

.draw-results-header {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 35px;
    text-align: center;
    box-shadow: var(--shadow);
}

.draw-results-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.draw-results-header h2 span {
    color: var(--text-light);
}

.result-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-blue-2);
    color: var(--accent-red);
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-red);
    margin: 0 5px;
}

.result-number.supplementary {
    background: var(--accent-red);
    color: var(--text-light);
    border-color: var(--accent-red);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-top: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--accent-red);
}

.faq-section-title h2 {
    font-size: 2.8em;
    color: var(--accent-red);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
}

.faq-accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--dark-blue-3);
    box-shadow: var(--shadow);
}

.faq-accordion-question {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-accordion-question:hover {
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
}

.faq-accordion-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: var(--dark-blue-2);
    color: var(--text-light);
}

.faq-accordion-item.active .faq-accordion-answer {
    max-height: 200px;
    padding: 25px 30px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-2) 100%);
    color: var(--text-light);
    padding: 80px 20px 40px;
    border-top: 3px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(26, 26, 46, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand-section {
    max-width: 400px;
}

.footer-logo-link {
    color: var(--accent-red);
    text-decoration: none;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    display: block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    color: var(--text-light);
    text-shadow: 0 0 25px rgba(220, 20, 60, 0.8);
    transform: translateY(-2px);
}

.footer-tagline {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-muted);
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid var(--accent-red);
    border-radius: 12px;
    color: var(--accent-red);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-red);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-icon {
    font-size: 1.5em;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 1.3em;
    color: var(--accent-red);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-links-list a:hover::before {
    width: 100%;
}

.footer-compliance-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.responsible-gaming-section {
    max-width: 600px;
}

.gaming-heading {
    font-size: 1.8em;
    color: var(--accent-red);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
    font-weight: 700;
}

.gaming-text {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
    opacity: 0.9;
}

.phone-number {
    color: var(--accent-red);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(220, 20, 60, 0.3);
}

.gaming-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.gaming-link:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
    text-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}

.company-name {
    font-weight: bold;
    color: var(--accent-red);
    text-shadow: 0 0 5px rgba(220, 20, 60, 0.3);
}

.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.age-help-badges-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.help-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.2);
    min-width: 120px;
}

.help-badge:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-label {
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    color: var(--accent-red);
}

.age-restriction-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    border: 2px solid var(--accent-red);
    min-width: 120px;
}

.age-restriction-text {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-light);
}

.age-restriction-label {
    font-size: 0.7em;
    color: var(--text-light);
    opacity: 0.9;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-info {
    color: var(--text-muted);
    font-size: 0.9em;
}

.copyright-info p {
    margin-bottom: 5px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

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

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-section {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-compliance-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .age-help-badges-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 60px 15px 30px;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 40px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
        order: -1;
    }
    
    .tab-menu {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .tab-menu button {
        width: auto;
        min-width: 150px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-section {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .hamburger {
        display: inline-flex;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 20px 25px;
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 2.5em;
    }
    
    .primary-cta-btn {
        padding: 20px 40px;
        font-size: 1.2em;
    }
    
    .tab-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-menu button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-compliance-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .age-help-badges-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }
    
    .step-visual {
        order: -1;
    }
    
    .section-title {
        font-size: 2.8em;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-description {
        font-size: 1.2em;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2em;
    }
    
    .primary-cta-btn {
        padding: 18px 35px;
        font-size: 1.1em;
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .input-group {
        padding: 20px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .site-footer {
        padding: 60px 15px 30px;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .step-card {
        padding: 25px 20px;
    }
}

/* How It Works Section */
#how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-top: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

#how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(26, 26, 46, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    background: rgba(220, 20, 60, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-red);
    border-radius: 50px;
    padding: 15px 30px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 1.3em;
}

.section-title {
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--text-light), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.section-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--dark-blue-3) 0%, var(--dark-blue-2) 100%);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.step-number {
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    color: var(--text-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-red);
}

.step-icon {
    font-size: 3em;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 2.2em;
    color: var(--accent-red);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}

.step-content p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.95;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: rgba(220, 20, 60, 0.2);
    color: var(--accent-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.connector-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-red), var(--dark-red));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.connector-arrow {
    font-size: 2em;
    color: var(--accent-red);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.trust-item {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.trust-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.4));
}

.trust-item h4 {
    font-size: 1.5em;
    color: var(--accent-red);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.trust-item p {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }
    
    .step-visual {
        order: -1;
    }
    
    .section-title {
        font-size: 2.8em;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Additional Styles for Better Visual Consistency */
.content-block-container,
.info-panel-container {
    margin-top: 40px;
}

.section-heading-xl,
.section-heading-lg,
.section-heading-md {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.section-heading-xl {
    font-size: 2.2em;
}

.section-heading-lg {
    font-size: 1.8em;
}

.section-heading-md {
    font-size: 1.5em;
}

.section-text {
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.entry-comparison-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.standard-entry-display,
.system-entry-display {
    background: var(--dark-blue-3);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.col {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.col:last-child {
    border-bottom: none;
}

.col-small {
    flex: 0 0 80px;
    font-weight: bold;
    color: var(--accent-red);
}

.col-large {
    flex: 1;
}

.syndicate-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.party-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.card-image {
    height: 120px;
    background: linear-gradient(45deg, var(--dark-blue-2), var(--dark-blue-3));
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: var(--accent-red);
}

.party-image-1 { background: linear-gradient(45deg, #ff6b6b, #ee5a24); }
.party-image-2 { background: linear-gradient(45deg, #4834d4, #686de0); }
.party-image-3 { background: linear-gradient(45deg, #00b894, #00cec9); }
.party-image-4 { background: linear-gradient(45deg, #fdcb6e, #e17055); }

.results-breakdown-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: var(--dark-blue-3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.results-breakdown-table th,
.results-breakdown-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.results-breakdown-table th {
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    color: var(--text-light);
    font-weight: bold;
}

.results-breakdown-table tr:last-child td {
    border-bottom: none;
}

.frequency-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.frequency-section-header h2 {
    font-size: 2.5em;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
}

.frequency-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.legend-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.dark-dot {
    background: var(--accent-red);
}

.light-dot {
    background: var(--text-muted);
}

.number-trend-bars {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.number-trend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.number-trend-item.reverse-order {
    flex-direction: column-reverse;
}

.trend-label {
    font-size: 1.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.number-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-red), var(--dark-red));
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-red);
}

/* Enhanced hover effects for interactive elements */
.info-card:hover,
.syndicate-offer-card:hover,
.lotto-party-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-blue-2);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* Final Mobile Optimizations */
@media (max-width: 600px) {
    .wrap {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .input-group {
        padding: 20px 15px;
    }
    
    .step-card {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .step-icon {
        font-size: 2.5em;
    }
    
    .step-content h3 {
        font-size: 1.8em;
    }
    
    .step-content p {
        font-size: 1.1em;
    }
    
    .feature-tag {
        font-size: 0.8em;
        padding: 6px 12px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
    
    .trust-item {
        padding: 25px 20px;
    }
    
    .trust-icon {
        font-size: 3em;
    }
    
    .trust-item h4 {
        font-size: 1.3em;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .section-subtitle {
        font-size: 1.2em;
    }
    
    .section-badge {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-compliance-section {
        gap: 25px;
    }
    
    .age-help-badges-group {
        flex-direction: column;
        align-items: center;
    }
    
    .help-badge,
    .age-restriction-badge {
        min-width: 140px;
    }
}

/* Fix for very small screens */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .countdown-item {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.8em;
    }
    
    .primary-cta-btn {
        padding: 15px 25px;
        font-size: 1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 1.6em;
    }
    
    .step-content p {
        font-size: 1em;
    }
}

/* Ensure proper spacing for all screen sizes */
.tab-content {
    margin-bottom: 40px;
}

.tab-content:last-child {
    margin-bottom: 0;
}

/* Improve form element spacing on mobile */
@media (max-width: 768px) {
    .radio-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-options label {
        justify-content: center;
    }
    
    .number-selection-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
        gap: 8px;
    }
    
    .number-selection-grid button {
        padding: 10px 0;
        font-size: 1em;
    }
}

/* Basket Page Styles */
.content-main-section {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-2) 100%);
}

.checkout-page-section {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-overview-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-radius: 20px;
    border: 2px solid var(--accent-red);
    box-shadow: var(--shadow-xl);
}

.checkout-overview-header h1 {
    font-size: 3em;
    color: var(--accent-red);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
    font-weight: 800;
}

.checkout-overview-header p {
    font-size: 1.3em;
    color: var(--text-muted);
    opacity: 0.9;
}

.checkout-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.checkout-form-container {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--accent-red);
    box-shadow: var(--shadow-xl);
    height: fit-content;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
}

.form-header h2 {
    font-size: 2.2em;
    color: var(--accent-red);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}

.form-header p {
    font-size: 1.1em;
    color: var(--text-muted);
    opacity: 0.9;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1em;
    color: var(--text-light);
    background: var(--dark-blue-3);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.2);
    background: var(--dark-blue);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.payment-summary-box {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.3em;
    color: var(--text-light);
    font-weight: 600;
}

.total-amount-value {
    font-size: 1.5em;
    color: var(--accent-red);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.confirm-pay-button {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.confirm-pay-button:hover {
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-icon {
    font-size: 1.2em;
}

.order-summary-details {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--accent-red);
    box-shadow: var(--shadow-xl);
    height: fit-content;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
}

.summary-header h2 {
    font-size: 2.2em;
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
}

.item-count {
    background: rgba(220, 20, 60, 0.2);
    color: var(--accent-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid var(--accent-red);
}

.ticket-display-summary {
    min-height: 200px;
    margin-bottom: 30px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-cart-message p:first-child {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-light);
}

.empty-cart-message p:last-child {
    font-size: 1em;
    opacity: 0.8;
}

.ticket-entry-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--dark-blue-3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ticket-entry-row:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ticket-title {
    font-size: 1.2em;
    color: var(--accent-red);
    font-weight: 600;
}

.ticket-options {
    font-size: 0.9em;
    color: var(--text-muted);
    opacity: 0.8;
}

.ticket-actions {
    margin-left: 20px;
}

.remove-ticket-btn {
    background: var(--dark-red);
    color: var(--text-light);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-ticket-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cart-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.back-to-play-btn,
.clear-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

.back-to-play-btn {
    background: transparent;
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.back-to-play-btn:hover {
    background: var(--accent-red);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.clear-cart-btn {
    background: var(--dark-red);
    color: var(--text-light);
    border-color: var(--dark-red);
}

.clear-cart-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-blue-2) 0%, var(--dark-blue-3) 100%);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--accent-red);
    box-shadow: var(--shadow-xl);
}

.modal-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-close-btn {
    background: linear-gradient(45deg, var(--accent-red) 0%, var(--dark-red) 100%);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-close-btn:hover {
    background: linear-gradient(45deg, var(--dark-red) 0%, var(--accent-red) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design for Basket */
@media (max-width: 1024px) {
    .checkout-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-form-container,
    .order-summary-details {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .checkout-overview-header h1 {
        font-size: 2.5em;
    }
    
    .checkout-overview-header p {
        font-size: 1.1em;
    }
    
    .form-header h2,
    .summary-header h2 {
        font-size: 1.8em;
    }
    
    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .back-to-play-btn,
    .clear-cart-btn {
        justify-content: center;
    }
    
    .ticket-entry-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .ticket-actions {
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .checkout-overview-header {
        padding: 30px 20px;
    }
    
    .checkout-overview-header h1 {
        font-size: 2.2em;
    }
    
    .checkout-form-container,
    .order-summary-details {
        padding: 25px 20px;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 1em;
    }
    
    .confirm-pay-button {
        padding: 15px 25px;
        font-size: 1.2em;
    }
}

/* Additional Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar {
        width: 100%;
        order: -1;
    }
    
    .tab-menu {
        position: static;
        top: auto;
        width: 100%;
    }
    
    .content-area {
        width: 100%;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .countdown-timer {
        margin: 20px 0;
    }
    
    .countdown-display {
        justify-content: center;
    }
    
    .step-card {
        margin: 0 0 30px 0;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-compliance-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .age-help-badges-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .wrap {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .countdown-timer {
        padding: 20px 15px;
    }
    
    .countdown-unit {
        min-width: 60px;
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 1.8em;
    }
    
    .step-card {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .section-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 8px;
    }
    
    .hero-section {
        padding: 30px 10px;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .countdown-timer {
        padding: 15px 10px;
    }
    
    .countdown-display {
        gap: 5px;
    }
    
    .countdown-unit {
        min-width: 50px;
        padding: 8px 4px;
    }
    
    .countdown-number {
        font-size: 1.5em;
    }
    
    .countdown-label {
        font-size: 0.7em;
    }
    
    .step-card {
        padding: 15px 10px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .section-subtitle {
        font-size: 1em;
    }
    
    .section-badge {
        font-size: 0.8em;
        padding: 6px 12px;
    }
    
    .feature-tag {
        font-size: 0.8em;
        padding: 6px 10px;
    }
    
    .trust-item {
        padding: 15px 10px;
    }
    
    .trust-icon {
        width: 30px;
        height: 30px;
    }
    
    .trust-item h4 {
        font-size: 1.1em;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-links-section {
        gap: 20px;
    }
    
    .footer-compliance-section {
        gap: 20px;
    }
    
    .age-help-badges-group {
        gap: 12px;
    }
    
    .help-badge {
        padding: 12px 8px;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.9em;
    }
    
    .badge-label {
        font-size: 0.8em;
    }
}

/* Prevent horizontal scroll on all elements */
* {
    max-width: 100%;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Ensure mobile nav doesn't cause horizontal scroll */
.mobile-nav {
    max-width: 100vw;
    right: 0;
}

.mobile-nav-overlay {
    max-width: 100vw;
}

/* Fix for any potential overflow issues */
.hero-section,
.countdown-timer,
.steps-container,
.trust-indicators,
.footer-container {
    overflow: hidden;
}

