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

:root {
    /* Primary Colors */
    --primary-purple: #6366f1;
    --primary-indigo: #4f46e5;
    --primary-dark: #3730a3;
    
    /* Secondary Colors */
    --secondary-pink: #ec4899;
    --secondary-rose: #f43f5e;
    --secondary-orange: #f97316;
    
    /* Accent Colors */
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    
    /* Neutral Colors */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--primary-indigo));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-pink), var(--secondary-rose));
    --gradient-accent: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald));
    --gradient-warm: linear-gradient(135deg, var(--secondary-orange), var(--accent-amber));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--neutral-50), var(--neutral-100));
    color: var(--neutral-800);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== HEADER STYLES ===== */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    padding: var(--space-md) var(--space-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-pro {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
    background: rgba(99, 102, 241, 0.1);
}

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

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

/* ===== COOKIE & AGE MODALS ===== */
.cookie-overlay,
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease forwards;
}

.cookie-modal,
.age-modal {
    background: white;
    border-radius: var(--radius-3xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-2xl);
    animation: popIn 0.4s ease;
    border: 1px solid var(--neutral-200);
    text-align: center;
}

.cookie-icon,
.age-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: bounce 2s ease-in-out infinite;
}

.age-icon {
    animation: pulse 2s ease-in-out infinite;
}

.cookie-content h3,
.age-content h2 {
    color: var(--neutral-800);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
}

.age-content h2 {
    font-size: 1.8rem;
}

.cookie-content p,
.age-content p {
    color: var(--neutral-600);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-accept-btn,
.age-confirm-btn,
.age-decline-btn {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cookie-accept-btn,
.age-confirm-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cookie-accept-btn:hover,
.age-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.age-decline-btn {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.age-decline-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.title-main {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-accent {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== COUNTDOWN WIDGET ===== */
.countdown-widget {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-2xl);
    max-width: 600px;
    margin: var(--space-2xl) auto;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.countdown-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
    animation: shimmer 3s ease-in-out infinite;
}

.countdown-header {
    margin-bottom: var(--space-xl);
}

.countdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-xl);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 var(--space-xs) 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

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

.countdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    min-width: 100px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.countdown-card:hover::before {
    left: 100%;
}

.countdown-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-amber);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-xs);
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-amber);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: blink 1s ease-in-out infinite;
}

.countdown-progress {
    margin-top: var(--space-lg);
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-warm);
    border-radius: var(--radius-sm);
    width: 75%;
    animation: progress 480s linear infinite;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--accent-amber);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    background: var(--gradient-warm);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xl);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ===== SECTION STYLES ===== */
.lottery-section,
.syndicates-section,
.parties-section,
.benefits-section {
    padding: var(--space-3xl) var(--space-lg);
    background: white;
}

.syndicates-section,
.parties-section {
    background: var(--neutral-50);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: var(--space-2xl);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

/* ===== FORM STYLES ===== */
.lottery-form,
.syndicate-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.form-card,
.form-step {
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    transition: all 0.4s ease;
}

.form-card:hover,
.form-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-xl);
}

.form-card label,
.step-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--space-md);
}

.step-title {
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-purple);
    padding-left: var(--space-md);
}

.form-select {
    width: 100%;
    padding: var(--space-md);
    font-size: 1rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--neutral-300);
    background: white;
    color: var(--neutral-800);
    transition: all 0.3s ease;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.form-select:focus {
    border-color: var(--primary-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ===== SELECTION OPTIONS ===== */
.selection-options {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.option-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    background: white;
    border: 2px solid var(--neutral-300);
}

.option-item:hover {
    border-color: var(--primary-purple);
    background: rgba(99, 102, 241, 0.05);
}

.option-item input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neutral-400);
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.option-item input[type="radio"]:checked {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
}

.option-item input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--neutral-800);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 2px solid var(--neutral-400);
    border-radius: var(--radius-md);
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

/* ===== NUMBER GRID ===== */
.number-grid {
    margin-top: var(--space-md);
    background: white;
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    min-height: 80px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: var(--space-xs);
}

.number-btn {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--neutral-400);
    border-radius: var(--radius-md);
    cursor: pointer;
    background: white;
    color: var(--neutral-700);
    font-weight: 600;
    transition: all 0.3s ease;
}

.number-btn:hover {
    border-color: var(--primary-purple);
    background: rgba(99, 102, 241, 0.1);
}

.number-btn.selected {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
    transform: scale(1.1);
}

/* ===== FORM SUMMARY ===== */
.form-summary {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    color: white;
}

.total-display {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.total-display span {
    color: var(--accent-amber);
    font-weight: 900;
}

.form-submit-btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-warm);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== PACK GRID ===== */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.pack-card {
    background: white;
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pack-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-xl);
}

.pack-card.selected {
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.pack-header h4 {
    font-size: 1.5rem;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.pack-games {
    display: block;
    font-size: 0.9rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.pack-price {
    font-size: 1.3rem;
    color: var(--accent-emerald);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.pack-selector {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.pack-selector input[type="radio"] {
    display: none;
}

.pack-selector .selector-mark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--neutral-400);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pack-selector input[type="radio"]:checked ~ .selector-mark {
	border-color: var(--accent-primary);
	background: var(--accent-primary);
}

.pack-selector input[type="radio"]:checked ~ .selector-mark::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.pack-selector .selector-text {
	color: var(--neutral-800);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pack-card.selected .selector-mark,
.party-card.selected .selector-mark {
	border-color: var(--accent-primary);
	background: var(--accent-primary);
}

.pack-card.selected .selector-mark::before,
.party-card.selected .selector-mark::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.pack-card.selected .selector-mark::after,
.party-card.selected .selector-mark::after {
	opacity: 1;
	transform: scale(1);
}

/* ===== PARTY GRID ===== */
.party-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
}

.party-card {
	background: white;
	border: 2px solid var(--neutral-300);
	border-radius: var(--radius-2xl);
	padding: var(--space-xl);
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

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

.party-card.selected {
	border: 2px solid var(--accent-primary);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.party-card.selected .party-image {
	background: var(--gradient-accent) !important;
}

.party-image {
	height: 140px;
	background: var(--gradient-secondary);
	border-radius: var(--radius-xl);
	margin-bottom: var(--space-md);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.party-image h4 {
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.party-details h4 {
	font-size: 1.4rem;
	color: var(--neutral-800);
	margin-bottom: var(--space-xs);
	font-weight: 700;
}

.party-tag {
	font-size: 0.9rem;
	color: var(--neutral-600);
	margin-bottom: var(--space-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.party-price {
	display: block;
	font-size: 1.3rem;
	color: var(--accent-emerald);
	margin-bottom: var(--space-xs);
	font-weight: 700;
}

.party-price small {
	font-size: 0.8rem;
	color: var(--neutral-500);
	font-weight: 500;
	margin-left: var(--space-xs);
}

.party-games {
	font-size: 0.9rem;
	color: var(--primary-purple);
	display: block;
	margin-bottom: var(--space-md);
	font-weight: 600;
}

.party-selector {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	cursor: pointer;
}

.party-selector input[type="radio"] {
	display: none;
}

.party-selector .selector-mark {
	width: 24px;
	height: 24px;
	border: 2px solid var(--neutral-400);
	border-radius: 50%;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.party-selector input[type="radio"]:checked ~ .selector-mark {
	border-color: var(--accent-primary);
	background: var(--accent-primary);
}

.party-selector input[type="radio"]:checked ~ .selector-mark::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.party-selector .selector-text {
	color: var(--neutral-800);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.party-card.selected .selector-mark {
	border-color: var(--accent-primary);
	background: var(--accent-primary);
}

.party-card.selected .selector-mark::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.benefit-item {
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: iconFloat 3s ease-in-out infinite;
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--neutral-600);
    line-height: 1.7;
    font-weight: 500;
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background: var(--neutral-900);
    color: white;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-lg);
    border-bottom: 1px solid var(--neutral-700);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--neutral-400);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-secondary);
}

.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 1rem;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

.footer-bottom {
    background: var(--neutral-800);
    padding: var(--space-lg);
    border-top: 1px solid var(--neutral-700);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

.age-badge {
    background: var(--gradient-accent);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.certification-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cert-badge {
    display: block;
    transition: transform 0.3s ease;
}

.cert-badge img {
    width: 60px;
    height: auto;
    border-radius: var(--radius-md);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-2px);
}

.cert-badge:hover img {
    opacity: 1;
    box-shadow: var(--shadow-lg);
}

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

.footer-copyright p {
    margin: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--neutral-400);
    line-height: 1.5;
}

.footer-copyright p:first-child {
    font-weight: 600;
    color: var(--neutral-300);
}

.responsible-gaming {
    text-align: right;
}

.responsible-gaming h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.responsible-gaming p {
    font-size: 0.85rem;
    color: var(--neutral-400);
    line-height: 1.5;
    margin: 0;
}

.responsible-gaming a {
    color: var(--primary-purple);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-purple);
    transition: all 0.3s ease;
}

.responsible-gaming a:hover {
    color: var(--primary-indigo);
    border-bottom-color: var(--primary-indigo);
}

.responsible-gaming strong {
    color: white;
    font-weight: 700;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    font-weight: 700;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

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

@keyframes progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-30px,0);
    }
    70% {
        transform: translate3d(0,-15px,0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-certifications {
        align-items: center;
    }
    
    .responsible-gaming {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-accent {
        font-size: 2.2rem;
    }
    
    .countdown-widget {
        padding: var(--space-lg);
        max-width: 100%;
        margin: var(--space-lg) auto;
    }

    .countdown-display {
        gap: var(--space-sm);
    }

    .countdown-card {
        min-width: 80px;
        padding: var(--space-sm) var(--space-xs);
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .countdown-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pack-grid,
    .party-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .selection-options {
        flex-direction: column;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-xl) var(--space-md);
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: var(--space-sm);
    }
    
    .hero-section {
        padding: var(--space-2xl) var(--space-sm);
    }
    
    .countdown-widget {
        padding: var(--space-md);
        border-radius: var(--radius-2xl);
    }

    .countdown-display {
        gap: var(--space-xs);
    }

    .countdown-card {
        min-width: 70px;
        padding: var(--space-sm) var(--space-xs);
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .countdown-title {
        font-size: 1.3rem;
    }

    .countdown-subtitle {
        font-size: 0.9rem;
    }
    
    .lottery-form,
    .syndicate-form {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .form-card,
    .form-step {
        padding: var(--space-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1.1rem;
    }
}

/* ===== CHECKOUT PAGE STYLES ===== */
.lotto-payment-box {
    background: var(--gradient-accent);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid var(--accent-cyan);
    margin-top: var(--space-sm);
}

.lotto-payment-box p {
    margin: var(--space-xs) 0;
    font-size: 1rem;
    color: var(--neutral-800);
}

.lotto-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin: var(--space-sm) 0;
}

.lotto-ticket-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-sm) 0;
}

.lotto-ticket-numbers span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.lotto-ticket-numbers span.powerball {
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-lg);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* ===== CART NOTIFICATIONS ===== */
.cart-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10000;
	animation: slideInRight 0.3s ease-out;
}

.notification-content {
	background: var(--gradient-primary);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 600;
}

.notification-content button {
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

.notification-content button:hover {
	background: rgba(255, 255, 255, 0.2);
}

.cart-link {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--gradient-secondary);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: 50%;
	min-width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
}

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

/* ===== CART PAGE STYLES ===== */
#cart-container .lottery-form {
	margin-bottom: 2rem;
}

#cart-container .form-card {
	position: relative;
}

#cart-container .form-card button {
	margin-top: 1rem;
}

#empty-cart .form-card {
	text-align: center;
	padding: 3rem 2rem;
}

#empty-cart .form-card h3 {
	color: var(--text-muted);
	margin-bottom: 1rem;
}

#empty-cart .form-card p {
	color: var(--text-muted);
	margin-bottom: 2rem;
}

#cart-summary .form-card {
	margin-bottom: 2rem;
}

#cart-summary .lotto-payment-box {
	background: var(--gradient-accent);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	color: white;
}

#cart-summary .lotto-payment-box p {
	margin-bottom: 0.5rem;
}

#cart-summary .lotto-amount {
	font-size: 2rem;
	font-weight: 800;
	margin-top: 1rem;
	text-align: center;
}
