:root {
	/* Colors */
	--al-light-bg: #f9f9f9;
	--al-primary: #2962ff;
	--al-secondary: #00c853;
	--al-text-dark: #212121;
	--al-text-light: #ffffff;
	--al-gray-100: #f5f5f5;
	--al-gray-200: #eeeeee;
	--al-gray-300: #e0e0e0;
	--al-gray-400: #bdbdbd;
	--al-gray-500: #9e9e9e;
	--al-gray-600: #757575;
	--al-gray-700: #616161;
	--al-gray-800: #424242;
	--al-gray-900: #212121;
	--al-error: #ff3d00;
	--al-success: #00c853;
	--al-warning: #ffc107;
	--al-header-gradient: radial-gradient(
		ellipse at 50% -20%,
		#1e2a5a 0%,
		#0a0f2b 65%
	);
	--al-button-gradient: linear-gradient(to right, #2962ff, #1565c0);
	--al-neonglow: 0 0 15px rgba(41, 98, 255, 0.8),
		0 0 30px rgba(41, 98, 255, 0.5);

	/* Typography */
	--al-font-primary: 'Roboto', sans-serif;
	--al-font-secondary: 'Montserrat', sans-serif;
	--al-font-display: 'Poppins', sans-serif;

	/* Spacing */
	--al-space-xs: 0.25rem;
	--al-space-sm: 0.5rem;
	--al-space-md: 1rem;
	--al-space-lg: 1.5rem;
	--al-space-xl: 2rem;
	--al-space-xxl: 3rem;
	--al-space-xxxl: 5rem;

	/* Border Radius */
	--al-radius-sm: 4px;
	--al-radius-md: 8px;
	--al-radius-lg: 12px;
	--al-radius-xl: 20px;
	--al-radius-pill: 9999px;
	--al-radius-circular: 50%;

	/* Box Shadows */
	--al-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
	--al-shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
	--al-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
	--al-shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.15);
	--al-shadow-inner: inset 0 2px 5px rgba(0, 0, 0, 0.05);

	/* Transitions */
	--al-transition-fast: 0.15s ease;
	--al-transition-normal: 0.3s ease;
	--al-transition-slow: 0.5s ease;

	/* Z-Index Layers */
	--al-z-negative: -1;
	--al-z-normal: 1;
	--al-z-dropdown: 100;
	--al-z-fixed: 200;
	--al-z-modal: 300;
}

/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--al-font-primary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--al-text-dark);
	background-color: #fff;
	overflow-x: hidden;
	min-height: 100vh;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Remove list styles */
ul,
ol {
	list-style: none;
}

/* Reset button styles */
button {
	border: none;
	background: none;
	font: inherit;
	cursor: pointer;
}

/* Reset anchor styles */
a {
	color: inherit;
	text-decoration: none;
}

/* ==============================
 2. Base Styles & Typography
 ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--al-font-secondary);
	line-height: 1.3;
	margin-bottom: var(--al-space-md);
	color: var(--al-text-dark);
	font-weight: 700;
}

h1 {
	font-size: 2.75rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.25rem;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

p {
	margin-bottom: var(--al-space-md);
}

strong {
	font-weight: 600;
}

/* Selection styles */
::selection {
	background-color: var(--al-primary);
	color: var(--al-text-light);
}

/* Special Typography Classes */
.al-section-title {
	font-family: var(--al-font-display);
	font-weight: 800;
	margin-bottom: var(--al-space-lg);
	position: relative;
	display: inline-block;
	color: var(--al-text-dark);
}

.al-section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 4px;
	width: 60px;
	background-color: var(--al-primary);
	border-radius: var(--al-radius-sm);
}

.al-section-title.al-text-center::after {
	left: 50%;
	transform: translateX(-50%);
}

.al-overline {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: var(--al-primary);
	margin-bottom: var(--al-space-xs);
	display: block;
}

.al-lead {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--al-gray-700);
}

.al-small {
	font-size: 0.875rem;
	line-height: 1.5;
}

.al-caption {
	font-size: 0.75rem;
	color: var(--al-gray-600);
}

/* Links */
.al-link {
	color: var(--al-primary);
	font-weight: 500;
	transition: all var(--al-transition-fast);
	position: relative;
	display: inline-block;
}

.al-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--al-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--al-transition-fast);
}

.al-link:hover {
	color: var(--al-primary);
}

.al-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* ==============================
 3. Layout & Grid
 ============================== */
.al-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--al-space-lg);
}

@media (max-width: 767px) {
	.al-container {
		padding: 0 var(--al-space-md);
	}
}

.al-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.al-col {
	padding: 0 15px;
	width: 100%;
}

.al-col-2 {
	flex: 0 0 calc(100% / 2);
}

.al-col-3 {
	flex: 0 0 calc(100% / 3);
}

.al-col-4 {
	flex: 0 0 calc(100% / 4);
}

.al-col-5 {
	flex: 0 0 calc(100% / 5);
}

.al-col-6 {
	flex: 0 0 calc(100% / 6);
}

@media (max-width: 767px) {
	.al-col-2,
	.al-col-3,
	.al-col-4,
	.al-col-5,
	.al-col-6 {
		flex: 0 0 100%;
	}
}

.al-section {
	padding: var(--al-space-xxl) 0;
	position: relative;
}

.al-section-sm {
	padding: var(--al-space-lg) 0;
}

.al-section-md {
	padding: var(--al-space-xl) 0;
}

.al-section-lg {
	padding: var(--al-space-xxxl) 0;
}

.al-section.al-bg-light {
	background-color: var(--al-gray-100);
}

.al-section.al-bg-white {
	background-color: #ffffff;
}

.al-section-header {
	margin-bottom: var(--al-space-xl);
	text-align: center;
}

.al-flex {
	display: flex;
}

.al-flex-column {
	flex-direction: column;
}

.al-items-center {
	align-items: center;
}

.al-items-start {
	align-items: flex-start;
}

.al-items-end {
	align-items: flex-end;
}

.al-justify-center {
	justify-content: center;
}

.al-justify-between {
	justify-content: space-between;
}

.al-justify-around {
	justify-content: space-around;
}

.al-justify-end {
	justify-content: flex-end;
}

.al-gap-sm {
	gap: var(--al-space-sm);
}

.al-gap-md {
	gap: var(--al-space-md);
}

.al-gap-lg {
	gap: var(--al-space-lg);
}

.al-gap-xl {
	gap: var(--al-space-xl);
}

/* Grid Layout */
.al-grid {
	display: grid;
	gap: 20px;
}

.al-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.al-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.al-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
	.al-grid-2,
	.al-grid-3,
	.al-grid-4 {
		grid-template-columns: 1fr;
	}
}

/* ==============================
 4. Header & Navigation
 ============================== */
.al-header {
	background: var(--al-header-gradient);
	color: var(--al-text-light);
	padding: var(--al-space-md) 0;
	position: relative;
	box-shadow: var(--al-shadow-md);
	border-bottom-left-radius: 40% 10%;
	border-bottom-right-radius: 40% 10%;
	height: 70vh;
}

.al-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.al-logo {
	display: flex;
	align-items: center;
	gap: var(--al-space-sm);
	max-width: 180px;
	height: auto;
}

.al-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.al-nav {
	display: flex;
	align-items: center;
	gap: var(--al-space-xl);
}

.al-nav-items {
	display: flex;
	align-items: center;
	gap: var(--al-space-lg);
}

.al-nav-link {
	font-family: var(--al-font-secondary);
	color: var(--al-text-light);
	font-weight: 500;
	font-size: 1rem;
	transition: all var(--al-transition-fast);
	padding: var(--al-space-xs) var(--al-space-sm);
	position: relative;
}

.al-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--al-text-light);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--al-transition-normal);
}

.al-nav-link:hover {
	color: var(--al-text-light);
	opacity: 0.9;
}

.al-nav-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.al-nav-link.al-active::after {
	transform: scaleX(1);
}

.al-cart-icon {
	position: relative;
	color: var(--al-text-light);
	font-size: 1.5rem;
	transition: all var(--al-transition-fast);
}

.al-cart-icon:hover {
	transform: translateY(-3px);
	color: var(--al-secondary);
}

.al-cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: var(--al-secondary);
	color: var(--al-text-light);
	font-size: 0.75rem;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: var(--al-radius-circular);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mobile menu */
.al-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	cursor: pointer;
	z-index: 1000;
}

.al-mobile-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--al-text-light);
	transition: all var(--al-transition-normal);
	transform-origin: left center;
}

.al-mobile-toggle.al-active span:nth-child(1) {
	transform: rotate(45deg);
}

.al-mobile-toggle.al-active span:nth-child(2) {
	opacity: 0;
}

.al-mobile-toggle.al-active span:nth-child(3) {
	transform: rotate(-45deg) translate(-2px, 2px);
}

@media (max-width: 767px) {
	.al-mobile-toggle {
		display: flex;
	}

	.al-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--al-primary);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: var(--al-space-xl);
		transform: translateY(-100%);
		transition: all var(--al-transition-normal);
		z-index: var(--al-z-modal);
		opacity: 0;
		visibility: hidden;
	}

	.al-nav.al-active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.al-nav-items {
		flex-direction: column;
		gap: var(--al-space-xl);
	}

	.al-nav-link {
		font-size: 1.5rem;
	}
}

/* ==============================
 5. Hero Section
 ============================== */
.al-hero {
	background-color: var(--al-header-gradient);
	color: var(--al-text-light);
	padding-top: var(--al-space-lg);
	padding-bottom: var(--al-space-xxl);
	position: relative;
	overflow: hidden;
}

.al-hero::after {
	content: '';
	position: absolute;
	bottom: -10%;
	left: 0;
	width: 100%;
	height: 20%;
	background-color: var(--al-light-bg);
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
}

.al-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--al-space-xl);
	align-items: center;
	position: relative;
	z-index: 2;
	margin-top: 50px;
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	.al-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.al-hero-image {
	position: relative;
}

.al-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--al-radius-lg);
}

.al-timer-wrap {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-md);
	box-shadow: var(--al-shadow-lg);
	position: relative;
}

.al-timer-title {
	font-family: var(--al-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: var(--al-space-sm);
	text-align: center;
	color: var(--al-gray-100);
}

.al-timer-circle {
	position: relative;
	width: 240px;
	height: 240px;
	margin: 0 auto;
}

.al-timer-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.al-progress-circle {
	fill: none;
	stroke: var(--al-secondary);
	stroke-width: 8;
	stroke-linecap: round;
	transform: rotate(-90deg);
	transform-origin: center;
	transition: stroke-dashoffset var(--al-transition-normal);
}

.al-timer-display {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.al-timer-numbers {
	display: flex;
	gap: var(--al-space-md);
	margin-bottom: var(--al-space-sm);
	margin-top: var(--al-space-sm);
}

.al-timer-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	border-radius: 15px;
	padding: 15px;
	/* min-width: 48px; */
	height: 100%;
	width: 80px;
	background: var(--al-gray-600);
}

.al-timer-value {
	font-family: var(--al-font-display);
	font-size: 1.75rem;
	font-weight: 700;

	color: var(--al-text-light);
}

.al-timer-label {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--al-gray-300);
}

.al-hero-cta {
	margin-top: var(--al-space-lg);
	text-align: center;
}

.al-btn-primary.al-btn-glow {
	box-shadow: var(--al-neonglow);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: var(--al-neonglow);
	}
	50% {
		box-shadow: 0 0 25px rgba(41, 98, 255, 0.8), 0 0 50px rgba(41, 98, 255, 0.5);
	}
	100% {
		box-shadow: var(--al-neonglow);
	}
}

/* ==============================
 6. Game Selection
 ============================== */
.al-game-selection {
	background-color: #ffffff;
	padding: var(--al-space-xxl) 0;
}

.al-selection-title {
	display: flex;
	align-items: center;
	gap: var(--al-space-sm);
	margin-bottom: var(--al-space-lg);
}

.al-selection-title span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: var(--al-primary);
	color: var(--al-text-light);
	border-radius: var(--al-radius-circular);
	font-weight: 700;
}

.al-game-options {
	background-color: var(--al-gray-100);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-lg);
	margin-bottom: var(--al-space-xl);
	box-shadow: var(--al-shadow-sm);
}

.al-option-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--al-space-md) 0;
	border-bottom: 1px solid var(--al-gray-300);
}

.al-option-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.al-option-row:first-child {
	padding-top: 0;
}

.al-option-label {
	font-weight: 500;
}

.al-option-control {
	width: 200px;
}

.al-select {
	width: 100%;
	padding: var(--al-space-sm) var(--al-space-md);
	font-size: 1rem;
	font-family: var(--al-font-primary);
	background-color: var(--al-text-light);
	border: 1px solid var(--al-gray-300);
	border-radius: var(--al-radius-sm);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath fill='%23212121' d='M6 9L1 4h10L6 9z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right var(--al-space-md) center;
	cursor: pointer;
	transition: all var(--al-transition-fast);
}

.al-select:focus {
	outline: none;
	border-color: var(--al-primary);
	box-shadow: 0 0 0 2px rgba(41, 98, 255, 0.2);
}

.al-total {
	background-color: var(--al-primary);
	color: var(--al-text-light);
	padding: var(--al-space-md);
	border-radius: var(--al-radius-md);
	margin-bottom: var(--al-space-lg);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.al-total-label {
	font-weight: 500;
}

.al-total-price {
	font-family: var(--al-font-display);
	font-size: 1.5rem;
	font-weight: 700;
}

.al-cart-action {
	text-align: center;
}

.al-btn-cart {
	padding: var(--al-space-md) var(--al-space-xl);
	font-size: 1.25rem;
}

/* ==============================
 7. How It Works
 ============================== */
.al-how-it-works {
	background-color: var(--al-gray-100);
	padding: var(--al-space-xxl) 0;
}

.al-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--al-space-xl);
	margin-top: var(--al-space-xl);
}

.al-step {
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-lg);
	box-shadow: var(--al-shadow-md);
	position: relative;
	transition: all var(--al-transition-normal);
}

.al-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--al-shadow-lg);
}

.al-step-number {
	position: absolute;
	top: -20px;
	left: var(--al-space-lg);
	width: 40px;
	height: 40px;
	background-color: var(--al-primary);
	color: var(--al-text-light);
	border-radius: var(--al-radius-circular);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
}

.al-step-title {
	margin-top: var(--al-space-md);
	margin-bottom: var(--al-space-sm);
	font-weight: 600;
	font-size: 1.25rem;
}

.al-step-desc {
	color: var(--al-gray-700);
	font-size: 0.938rem;
	margin-bottom: 0;
}

.al-breakdown {
	margin-top: var(--al-space-xxxl);
}

.al-breakdown-title {
	margin-bottom: var(--al-space-lg);
	text-align: center;
}

.al-breakdown-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-lg);
	overflow: hidden;
	box-shadow: var(--al-shadow-md);
}

.al-breakdown-table th,
.al-breakdown-table td {
	padding: var(--al-space-md);
	text-align: left;
	border-bottom: 1px solid var(--al-gray-200);
}

.al-breakdown-table th {
	background-color: var(--al-primary);
	color: var(--al-text-light);
	font-weight: 600;
}

.al-breakdown-table tr:last-child td {
	border-bottom: none;
}

.al-breakdown-table .al-odds {
	text-align: right;
	font-family: var(--al-font-secondary);
	font-weight: 600;
}

/* ==============================
 8. Latest Results
 ============================== */
.al-latest-results {
	padding: var(--al-space-xxl) 0;
	background-color: var(--al-text-light);
}

.al-ticket {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--al-gray-100);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-lg);
	box-shadow: var(--al-shadow-lg);
	border: 1px dashed var(--al-gray-400);
	position: relative;
}

.al-ticket::before {
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.al-ticket::after {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.al-ticket-header {
	text-align: center;
	margin-bottom: var(--al-space-lg);
	border-bottom: 1px dashed var(--al-gray-400);
	padding-bottom: var(--al-space-md);
}

.al-draw-number {
	font-family: var(--al-font-display);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: var(--al-space-xs);
}

.al-draw-date {
	font-size: 0.875rem;
	color: var(--al-gray-600);
}

.al-winning-numbers {
	display: flex;
	justify-content: center;
	gap: var(--al-space-sm);
	flex-wrap: wrap;
	margin-bottom: var(--al-space-lg);
}

.al-ball {
	width: 40px;
	height: 40px;
	background: var(--al-button-gradient);
	color: var(--al-text-light);
	border-radius: var(--al-radius-circular);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	box-shadow: var(--al-shadow-sm);
}

.al-ball.al-bonus {
	background: linear-gradient(to right, var(--al-secondary), #00a042);
}

.al-ticket-footer {
	text-align: center;
}

.al-prize-button {
	padding: var(--al-space-sm) var(--al-space-lg);
	font-size: 1rem;
}

/* ==============================
 9. FAQ Section
 ============================== */
.al-faq {
	padding: var(--al-space-xxl) 0;
	background-color: var(--al-gray-100);
}

.al-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.al-faq-item {
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-md);
	margin-bottom: var(--al-space-md);
	overflow: hidden;
	box-shadow: var(--al-shadow-sm);
}

.al-faq-question {
	padding: var(--al-space-lg);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 1.125rem;
	transition: all var(--al-transition-fast);
}

.al-faq-question:hover {
	color: var(--al-primary);
}

.al-faq-question::after {
	content: '\f107';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	transition: transform var(--al-transition-fast);
}

.al-faq-item.al-active .al-faq-question {
	color: var(--al-primary);
}

.al-faq-item.al-active .al-faq-question::after {
	transform: rotate(180deg);
}

.al-faq-answer {
	padding: 0 var(--al-space-lg);
	max-height: 0;
	overflow: hidden;
	transition: all var(--al-transition-normal);
}

.al-faq-item.al-active .al-faq-answer {
	padding: 0 var(--al-space-lg) var(--al-space-lg);
	max-height: 1000px;
}

.al-faq-answer p:last-child {
	margin-bottom: 0;
}

/* ==============================
 10. Footer
 ============================== */
.al-footer {
	background-color: var(--al-gray-900);
	color: var(--al-text-light);
	padding: var(--al-space-xxl) 0 var(--al-space-md);
}

.al-footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--al-space-xl);
	padding-bottom: var(--al-space-xl);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--al-space-lg);
}

.al-footer-logo {
	margin-bottom: var(--al-space-md);
	display: block;
	max-width: 160px;
}

.al-footer-logo img {
	width: 100%;
	height: auto;
}

.al-footer-title {
	font-size: 1.25rem;
	margin-bottom: var(--al-space-md);
	color: var(--al-text-light);
	font-weight: 600;
}

.al-footer-links {
	display: flex;
	flex-direction: column;
	gap: var(--al-space-sm);
}

.al-footer-link {
	color: var(--al-gray-400);
	transition: all var(--al-transition-fast);
}

.al-footer-link:hover {
	color: var(--al-text-light);
}

.al-social-links {
	display: flex;
	gap: var(--al-space-md);
	margin-top: var(--al-space-md);
}

.al-social-link {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: var(--al-radius-circular);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--al-text-light);
	transition: all var(--al-transition-fast);
}

.al-social-link:hover {
	background-color: var(--al-primary);
	transform: translateY(-3px);
}

.al-disclaimer {
	background-color: rgba(255, 255, 255, 0.05);
	padding: var(--al-space-md);
	border-radius: var(--al-radius-md);
	margin-bottom: var(--al-space-lg);
	font-size: 0.875rem;
	color: var(--al-gray-400);
	line-height: 1.5;
}

.al-disclaimer p:last-child {
	margin-bottom: 0;
}

.al-help-images {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--al-space-md);
	margin-top: var(--al-space-md);
}

.al-help-image {
	max-width: 100px;
	height: auto;
}

.al-help-image img {
	width: 100%;
	height: auto;
	border-radius: var(--al-radius-sm);
}

.al-footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: var(--al-space-md);
	font-size: 0.875rem;
	color: var(--al-gray-500);
}

.al-footer-nav {
	display: flex;
	gap: var(--al-space-md);
}

.al-footer-nav-link {
	color: var(--al-gray-400);
	transition: all var(--al-transition-fast);
}

.al-footer-nav-link:hover {
	color: var(--al-text-light);
}

@media (max-width: 767px) {
	.al-footer-bottom {
		flex-direction: column;
		gap: var(--al-space-md);
		text-align: center;
	}
}

/* ==============================
 11. Cart Page
 ============================== */
.al-cart-page {
	background-color: var(--al-light-bg);
	padding: var(--al-space-xxxl) 0;
	min-height: calc(100vh - 300px);
}

.al-cart-title {
	text-align: center;
	margin-bottom: var(--al-space-xl);
}

.al-cart-container {
	max-width: 960px;
	margin: 0 auto;
}

.al-cart-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--al-space-xl);
}

@media (max-width: 767px) {
	.al-cart-grid {
		grid-template-columns: 1fr;
	}
}

.al-cart-summary {
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-lg);
	box-shadow: var(--al-shadow-md);
}

.al-summary-title {
	font-size: 1.25rem;
	margin-bottom: var(--al-space-lg);
	padding-bottom: var(--al-space-sm);
	border-bottom: 1px solid var(--al-gray-300);
}

.al-summary-row {
	display: flex;
	justify-content: space-between;
	padding: var(--al-space-sm) 0;
	font-size: 1rem;
}

.al-summary-label {
	color: var(--al-gray-700);
}

.al-summary-value {
	font-weight: 600;
}

.al-summary-total {
	margin-top: var(--al-space-md);
	padding-top: var(--al-space-md);
	border-top: 2px solid var(--al-gray-300);
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	font-size: 1.25rem;
}

.al-summary-total-value {
	color: var(--al-primary);
}

.al-cart-form {
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-lg);
	box-shadow: var(--al-shadow-md);
}

.al-form-title {
	font-size: 1.25rem;
	margin-bottom: var(--al-space-lg);
	padding-bottom: var(--al-space-sm);
	border-bottom: 1px solid var(--al-gray-300);
}

.al-form-group {
	margin-bottom: var(--al-space-md);
}

.al-form-label {
	display: block;
	margin-bottom: var(--al-space-xs);
	font-weight: 500;
	font-size: 1rem;
}

.al-form-input {
	width: 100%;
	padding: var(--al-space-md);
	font-size: 1rem;
	border: 1px solid var(--al-gray-300);
	border-radius: var(--al-radius-md);
	background-color: var(--al-text-light);
	transition: all var(--al-transition-fast);
	font-family: var(--al-font-primary);
}

.al-form-input:focus {
	outline: none;
	border-color: var(--al-primary);
	box-shadow: 0 0 0 2px rgba(41, 98, 255, 0.2);
}

/* .al-form-input.al-error {
	border-color: var(--al-error);
} */

.al-error-message {
	color: var(--al-error);
	font-size: 0.875rem;
	margin-top: var(--al-space-xs);
	display: none;
}

.al-form-input.al-error + .al-error-message {
	display: block;
}

.al-form-buttons {
	margin-top: var(--al-space-lg);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.al-continue-shopping {
	color: var(--al-primary);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: var(--al-space-xs);
}

.al-continue-shopping i {
	transition: transform var(--al-transition-fast);
}

.al-continue-shopping:hover i {
	transform: translateX(-4px);
}

.al-submit-btn {
	padding: var(--al-space-md) var(--al-space-xl);
}

/* Modal */
.al-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--al-z-modal);
	opacity: 0;
	visibility: hidden;
	transition: all var(--al-transition-normal);
}

.al-modal.al-active {
	opacity: 1;
	visibility: visible;
}

.al-modal-content {
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-xl);
	max-width: 500px;
	width: 90%;
	transform: translateY(20px);
	transition: all var(--al-transition-normal);
	text-align: center;
	box-shadow: var(--al-shadow-xl);
}

.al-modal.al-active .al-modal-content {
	transform: translateY(0);
}

.al-modal-icon {
	font-size: 4rem;
	color: var(--al-success);
	margin-bottom: var(--al-space-md);
}

.al-modal-title {
	font-size: 1.5rem;
	margin-bottom: var(--al-space-md);
	color: var(--al-text-dark);
}

.al-modal-message {
	color: var(--al-gray-700);
	margin-bottom: var(--al-space-lg);
}

.al-modal-close {
	padding: var(--al-space-md) var(--al-space-xl);
	background: var(--al-button-gradient);
}

/* ==============================
 12. Form Elements
 ============================== */
.al-input-group {
	position: relative;
}

.al-input-icon {
	position: absolute;
	left: var(--al-space-md);
	top: 50%;
	transform: translateY(-50%);
	color: var(--al-gray-500);
	transition: all var(--al-transition-fast);
}

.al-form-input.al-has-icon {
	padding-left: calc(var(--al-space-md) * 2 + 1rem);
}

.al-form-input:focus + .al-input-icon {
	color: var(--al-primary);
}

.al-checkbox {
	display: flex;
	align-items: flex-start;
	gap: var(--al-space-sm);
	cursor: pointer;
	margin-bottom: var(--al-space-md);
}

.al-checkbox-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.al-checkbox-box {
	width: 20px;
	height: 20px;
	border: 2px solid var(--al-gray-300);
	border-radius: var(--al-radius-sm);
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all var(--al-transition-fast);
}

.al-checkbox-input:checked + .al-checkbox-box {
	background-color: var(--al-primary);
	border-color: var(--al-primary);
}

.al-checkbox-input:checked + .al-checkbox-box::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 6px;
	width: 5px;
	height: 10px;
	border: solid var(--al-text-light);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.al-checkbox-label {
	font-size: 0.938rem;
	color: var(--al-gray-700);
}

.al-checkbox-label a {
	color: var(--al-primary);
	font-weight: 500;
	text-decoration: underline;
}

.al-radio {
	display: flex;
	align-items: center;
	gap: var(--al-space-sm);
	cursor: pointer;
	margin-bottom: var(--al-space-md);
}

.al-radio-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.al-radio-circle {
	width: 20px;
	height: 20px;
	border: 2px solid var(--al-gray-300);
	border-radius: var(--al-radius-circular);
	position: relative;
	flex-shrink: 0;
	transition: all var(--al-transition-fast);
}

.al-radio-input:checked + .al-radio-circle {
	border-color: var(--al-primary);
}

.al-radio-input:checked + .al-radio-circle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background-color: var(--al-primary);
	border-radius: var(--al-radius-circular);
}

.al-radio-label {
	font-size: 1rem;
}

/* ==============================
 13. Buttons & CTAs
 ============================== */
.al-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--al-space-md) var(--al-space-lg);
	border-radius: var(--al-radius-pill);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
	transition: all var(--al-transition-normal);
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-family: var(--al-font-secondary);
}

.al-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: all var(--al-transition-normal);
	z-index: -1;
}

.al-btn:hover::before {
	left: 0;
}

.al-btn-primary {
	background: var(--al-button-gradient);
	color: var(--al-text-light);
	box-shadow: var(--al-shadow-md);
}

.al-btn-primary:hover {
	box-shadow: var(--al-shadow-lg);
	transform: translateY(-3px);
}

.al-btn-secondary {
	background-color: var(--al-secondary);
	color: var(--al-text-light);
	box-shadow: var(--al-shadow-md);
}

.al-btn-secondary:hover {
	box-shadow: var(--al-shadow-lg);
	transform: translateY(-3px);
}

.al-btn-outline {
	background: transparent;
	border: 2px solid var(--al-primary);
	color: var(--al-primary);
}

.al-btn-outline:hover {
	background-color: var(--al-primary);
	color: var(--al-text-light);
}

.al-btn-lg {
	padding: var(--al-space-md) var(--al-space-xl);
	font-size: 1.125rem;
}

.al-btn-sm {
	padding: var(--al-space-sm) var(--al-space-md);
	font-size: 0.875rem;
}

.al-btn-icon {
	display: inline-flex;
	align-items: center;
	gap: var(--al-space-sm);
}

.al-btn-icon i {
	font-size: 1.25rem;
}

.al-btn-block {
	display: block;
	width: 100%;
}

.al-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.al-btn:disabled:hover::before {
	left: -100%;
}

.al-btn:disabled:hover {
	transform: none;
	box-shadow: var(--al-shadow-md);
}

/* ==============================
 14. Animations & Effects
 ============================== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.al-fade-in {
	animation: fadeIn 1s forwards;
}

.al-slide-right {
	animation: slideInRight 1s forwards;
}

.al-slide-left {
	animation: slideInLeft 1s forwards;
}

.al-delay-100 {
	animation-delay: 0.1s;
}
.al-delay-200 {
	animation-delay: 0.2s;
}
.al-delay-300 {
	animation-delay: 0.3s;
}
.al-delay-400 {
	animation-delay: 0.4s;
}
.al-delay-500 {
	animation-delay: 0.5s;
}

.al-animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.al-animate-on-scroll.al-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Hover Effects */
.al-hover-lift {
	transition: transform var(--al-transition-normal);
}

.al-hover-lift:hover {
	transform: translateY(-5px);
}

.al-hover-scale {
	transition: transform var(--al-transition-normal);
}

.al-hover-scale:hover {
	transform: scale(1.05);
}

/* ==============================
 15. Utilities
 ============================== */
.al-text-primary {
	color: var(--al-primary);
}
.al-text-secondary {
	color: var(--al-secondary);
}
.al-text-light {
	color: var(--al-text-light);
}
.al-text-dark {
	color: var(--al-text-dark);
}
.al-text-gray {
	color: var(--al-gray-600);
}

.al-bg-primary {
	background-color: var(--al-primary);
}
.al-bg-secondary {
	background-color: var(--al-secondary);
}
.al-bg-light {
	background-color: var(--al-light-bg);
}
.al-bg-white {
	background-color: var(--al-text-light);
}
.al-bg-dark {
	background-color: var(--al-text-dark);
}

.al-text-left {
	text-align: left;
}
.al-text-center {
	text-align: center;
}
.al-text-right {
	text-align: right;
}

.al-font-bold {
	font-weight: 700;
}
.al-font-semibold {
	font-weight: 600;
}
.al-font-medium {
	font-weight: 500;
}
.al-font-normal {
	font-weight: 400;
}
.al-font-light {
	font-weight: 300;
}

.al-rounded-sm {
	border-radius: var(--al-radius-sm);
}
.al-rounded-md {
	border-radius: var(--al-radius-md);
}
.al-rounded-lg {
	border-radius: var(--al-radius-lg);
}

.al-shadow-sm {
	box-shadow: var(--al-shadow-sm);
}
.al-shadow-md {
	box-shadow: var(--al-shadow-md);
}
.al-shadow-lg {
	box-shadow: var(--al-shadow-lg);
}

.al-mt-0 {
	margin-top: 0;
}
.al-mt-sm {
	margin-top: var(--al-space-sm);
}
.al-mt-md {
	margin-top: var(--al-space-md);
}
.al-mt-lg {
	margin-top: var(--al-space-lg);
}
.al-mt-xl {
	margin-top: var(--al-space-xl);
}

.al-mb-0 {
	margin-bottom: 0;
}
.al-mb-sm {
	margin-bottom: var(--al-space-sm);
}
.al-mb-md {
	margin-bottom: var(--al-space-md);
}
.al-mb-lg {
	margin-bottom: var(--al-space-lg);
}
.al-mb-xl {
	margin-bottom: var(--al-space-xl);
}

.al-mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.al-my-auto {
	margin-top: auto;
	margin-bottom: auto;
}

.al-w-full {
	width: 100%;
}
.al-h-full {
	height: 100%;
}

.al-d-block {
	display: block;
}
.al-d-inline {
	display: inline;
}
.al-d-inline-block {
	display: inline-block;
}
.al-d-flex {
	display: flex;
}
.al-d-none {
	display: none;
}

/* ==============================
 16. Responsive Design
 ============================== */
@media (min-width: 768px) {
	.al-d-md-block {
		display: block;
	}
	.al-d-md-inline {
		display: inline;
	}
	.al-d-md-inline-block {
		display: inline-block;
	}
	.al-d-md-flex {
		display: flex;
	}
	.al-d-md-none {
		display: none;
	}

	.al-text-md-left {
		text-align: left;
	}
	.al-text-md-center {
		text-align: center;
	}
	.al-text-md-right {
		text-align: right;
	}
}

@media (min-width: 1024px) {
	.al-d-lg-block {
		display: block;
	}
	.al-d-lg-inline {
		display: inline;
	}
	.al-d-lg-inline-block {
		display: inline-block;
	}
	.al-d-lg-flex {
		display: flex;
	}
	.al-d-lg-none {
		display: none;
	}

	.al-text-lg-left {
		text-align: left;
	}
	.al-text-lg-center {
		text-align: center;
	}
	.al-text-lg-right {
		text-align: right;
	}
}

/* Mobile Navigation */
@media (max-width: 767px) {
	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.al-section {
		padding: var(--al-space-xl) 0;
	}

	.al-hero-content {
		grid-template-columns: 1fr;
		gap: var(--al-space-lg);
	}

	.al-timer-circle {
		width: 200px;
		height: 200px;
	}

	.al-steps {
		grid-template-columns: 1fr;
	}

	.al-footer-top {
		grid-template-columns: 1fr;
	}
}

/* Small devices */
@media (max-width: 575px) {
	.al-timer-circle {
		width: 180px;
		height: 180px;
	}

	.al-timer-value {
		font-size: 1.5rem;
	}

	.al-timer-label {
		font-size: 0.625rem;
	}

	.al-ball {
		width: 36px;
		height: 36px;
		font-size: 1.125rem;
	}

	.al-form-buttons {
		flex-direction: column-reverse;
		gap: var(--al-space-md);
	}

	.al-submit-btn {
		width: 100%;
	}

	.al-continue-shopping {
		margin: 0 auto;
	}
}

/* ==============================
 17. Accessibility
 ============================== */

.al-skip-link {
	position: absolute;
	top: -50px;
	left: 0;
	padding: var(--al-space-md);
	background-color: var(--al-primary);
	color: var(--al-text-light);
	z-index: 1000;
	transition: top var(--al-transition-normal);
}

.al-skip-link:focus {
	top: 0;
}

.al-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Reduce Motion */
@media (prefers-reduced-motion) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001s !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001s !important;
		scroll-behavior: auto !important;
	}
}

/* ==============================
 18. Print Styles
 ============================== */
@media print {
	* {
		background: transparent !important;
		color: black !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: ' (' attr(href) ')';
	}

	abbr[title]::after {
		content: ' (' attr(title) ')';
	}

	.al-no-print,
	.al-header,
	.al-footer,
	.al-cookie-consent {
		display: none !important;
	}

	.al-container {
		max-width: 100%;
		padding: 0;
	}

	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}

/* Age Check Popup */
.al-age-check {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 15, 43, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--al-z-modal);
}

.al-age-content {
	background-color: var(--al-text-light);
	border-radius: var(--al-radius-lg);
	padding: var(--al-space-xl);
	max-width: 500px;
	width: 90%;
	text-align: center;
	box-shadow: var(--al-shadow-xl);
}

.al-age-title {
	font-size: 1.75rem;
	margin-bottom: var(--al-space-lg);
	color: var(--al-text-dark);
}

.al-age-logo {
	width: 120px;
	height: auto;
	margin: 0 auto var(--al-space-lg);
}

.al-age-text {
	margin-bottom: var(--al-space-lg);
	color: var(--al-gray-700);
}

.al-age-buttons {
	display: flex;
	justify-content: center;
	gap: var(--al-space-md);
}

@media (max-width: 480px) {
	.al-age-buttons {
		flex-direction: column;
		gap: var(--al-space-sm);
	}
}

/* Cookie Consent */
.al-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--al-text-dark);
	padding: var(--al-space-lg);
	color: var(--al-text-light);
	z-index: var(--al-z-modal);
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
	display: none;
}

.al-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--al-space-lg);
	max-width: 1200px;
	margin: 0 auto;
}

.al-cookie-text {
	font-size: 0.938rem;
}

.al-cookie-text a {
	color: var(--al-primary);
	text-decoration: underline;
}

.al-cookie-buttons {
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.al-cookie-content {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--al-space-md);
	}

	.al-header {
		height: 110vh;
	}

	.al-cookie-buttons {
		width: 100%;
	}

	.al-cookie-buttons .al-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.al-header {
		height: 85vh;
	}
}
