:root {
	--white: #ffffff;
	--off-white: #f8f9fe;
	--light-blue: #f3f5ff;
	--primary: #3a5cff;
	--primary-hover: #2a4def;
	--accent: #ffd230;
	--accent-hover: #ffdc5c;
	--text: #2a2a2a;
	--text-light: #595959;
	--text-lighter: #8a8a8a;
	--border: #e2e8f0;
	--shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 8px 15px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
	--gradient-card: linear-gradient(
		135deg,
		var(--white) 0%,
		var(--light-blue) 100%
	);
	--gradient-primary: linear-gradient(135deg, var(--primary) 0%, #5c78ff 100%);
	--gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ffea94 100%);
	--transition-fast: all 0.2s ease;
	--transition-normal: all 0.3s ease;
	--transition-slow: all 0.5s ease;
	--border-radius-sm: 8px;
	--border-radius-md: 12px;
	--border-radius-lg: 20px;
	--font-primary: 'Poppins', sans-serif;
	--font-secondary: 'Montserrat', sans-serif;
	--z-index-menu: 100;
	--z-index-popup: 999;
	--z-index-modal: 1000;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-primary);
	background-color: var(--off-white);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: var(--primary);
	transition: var(--transition-normal);
}

a:hover {
	color: var(--primary-hover);
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button,
input,
textarea,
select {
	font-family: var(--font-primary);
	font-size: 1rem;
	outline: none;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

h2 {
	font-size: 2.5rem;
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
}

h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 80px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1.5rem;
}

.alh-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.alh-section {
	padding: 6rem 0;
	position: relative;
}

.alh-section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.alh-section-title h2 {
	display: inline-block;
	position: relative;
}

.alh-section-title h2::after {
	left: 50%;
	transform: translateX(-50%);
}

.alh-section-title p {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-light);
}

.alh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2rem;
	font-weight: 600;
	border-radius: var(--border-radius-sm);
	transition: var(--transition-normal);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: var(--shadow-sm);
}

.alh-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: var(--transition-normal);
	z-index: -1;
}

.alh-btn:hover::before {
	left: 0;
}

.alh-btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: 0 0 15px rgba(58, 92, 255, 0.4);
}

.alh-btn-primary:hover {
	box-shadow: 0 0 20px rgba(58, 92, 255, 0.6);
	transform: translateY(-2px);
}

.alh-btn-accent {
	background: var(--gradient-accent);
	color: var(--text);
	box-shadow: 0 0 15px rgba(255, 210, 48, 0.4);
}

.alh-btn-accent:hover {
	box-shadow: 0 0 20px rgba(255, 210, 48, 0.6);
	transform: translateY(-2px);
}

.alh-btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.alh-btn-outline:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.alh-btn-icon {
	display: inline-flex;
	gap: 0.5rem;
}

.alh-btn-icon i {
	font-size: 1.2rem;
}

/* Age Check Popup Styles */
.alh-age-check {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--z-index-modal);
	backdrop-filter: blur(10px);
}

.alh-age-check-content {
	background: var(--gradient-card);
	border-radius: var(--border-radius-lg);
	padding: 3rem;
	max-width: 500px;
	width: 90%;
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.alh-age-check-title {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--text);
}

.alh-age-check-text {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: var(--text-light);
}

.alh-age-check-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.alh-age-check-logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	position: relative;
}

.alh-age-check-logo::before {
	content: '18+';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
}

.alh-age-check-logo::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid var(--primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Header Styles */
.alh-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: var(--z-index-menu);
	transition: var(--transition-normal);
	padding: 1.5rem 0;
}

.alh-header.alh-scrolled {
	background-color: rgba(248, 249, 254, 0.9);
	box-shadow: var(--shadow-md);
	padding: 1rem 0;
	backdrop-filter: blur(10px);
}

.alh-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.alh-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary);
}

.alh-logo-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-primary);
	border-radius: var(--border-radius-sm);
	color: white;
}

.alh-nav {
	display: flex;
	gap: 2rem;
}

.alh-nav-link {
	position: relative;
	padding: 0.5rem 0;
	font-weight: 500;
	color: var(--text);
}

.alh-nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: var(--transition-normal);
}

.alh-nav-link:hover {
	color: var(--primary);
}

.alh-nav-link:hover::after,
.alh-nav-link.alh-active::after {
	width: 100%;
}

.alh-mobile-menu {
	display: none;
	width: 30px;
	height: 30px;
	flex-direction: column;
	justify-content: space-around;
	background: transparent;
	cursor: pointer;
	position: relative;
	z-index: 95;
}

.alh-mobile-menu span {
	width: 100%;
	height: 3px;
	background-color: var(--primary);
	border-radius: 3px;
	transition: var(--transition-normal);
}

/* Hero Section Styles */
.alh-hero {
	padding: 8rem 0 6rem;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.alh-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('assets/alh-hero.jpg');
	background-size: cover;
	background-position: center;
	opacity: 0.5;
	z-index: -1;
}

.alh-hero-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}

.alh-hero-text {
	flex: 1;
	padding-right: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.alh-hero-title {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	position: relative;
	text-align: center;
}

.alh-hero-title span {
	display: block;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s forwards;
}

.alh-hero-title span:nth-child(1) {
	animation-delay: 0.2s;
}

.alh-hero-title span:nth-child(2) {
	animation-delay: 0.4s;
}

.alh-hero-title span:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.alh-hero-ticker {
	background: var(--gradient-card);
	border-radius: var(--border-radius-md);
	padding: 1rem 1.5rem;
	margin-bottom: 2rem;
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow-md);
}

.alh-hero-ticker::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--white),
		transparent 10%,
		transparent 90%,
		var(--white)
	);
	z-index: 1;
	pointer-events: none;
}

.alh-ticker-content {
	display: flex;
	gap: 3rem;
	animation: ticker 20s linear infinite;
	white-space: nowrap;
}

/* @keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
} */

@-webkit-keyframes ticker {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes ticker {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.alh-ticker-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}

.alh-ticker-item span {
	color: var(--primary);
}

.alh-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.alh-hero-visual {
	flex: 1;
	position: relative;
}

.alh-lotto-machine {
	width: 100%;
	height: auto;
	transform-style: preserve-3d;
	animation: rotate3D 20s infinite linear;
}

@keyframes rotate3D {
	0% {
		transform: rotateY(0);
	}
	100% {
		transform: rotateY(360deg);
	}
}

.alh-countdown {
	position: relative;

	background: var(--gradient-primary);
	border-radius: var(--border-radius-md);
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: var(--shadow-md);
	color: white;
	max-width: max-content;
	margin: 0 auto;
	justify-content: center;
}

.alh-countdown-title {
	font-weight: 600;
	margin-right: 0.5rem;
}

.alh-countdown-number {
	background: rgba(255, 255, 255, 0.2);
	border-radius: var(--border-radius-sm);
	padding: 0.5rem;
	min-width: 40px;
	text-align: center;
	font-weight: 700;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.alh-countdown-separator {
	font-weight: 700;
}

/* Jackpot Alerts Section Styles */
.alh-jackpot-alerts {
	padding: 6rem 0;
	position: relative;
}

.alh-alerts-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.alh-alert-card {
	background: var(--gradient-card);
	border-radius: var(--border-radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.alh-alert-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.alh-alert-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gradient-primary);
	z-index: 1;
}

.alh-alert-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.alh-alert-card-icon {
	width: 48px;
	height: 48px;
	background: rgba(58, 92, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.alh-alert-card-title {
	font-size: 1.25rem;
	margin-bottom: 0;
}

.alh-alert-card-content {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text);
}

.alh-alert-card-footer {
	font-size: 0.875rem;
	color: var(--text-light);
}

.alh-prize-card .alh-alert-card-content {
	color: var(--primary);
	font-size: 2rem;
}

.alh-location-card .alh-alert-card-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--text);
}

/* Winning Stories Section Styles */
.alh-winning-stories {
	padding: 6rem 0;
	position: relative;
	background-color: rgba(58, 92, 255, 0.03);
}

.alh-stories-container {
	position: relative;
}

.alh-stories-track {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	transition: var(--transition-slow);
}

.alh-story-card {
	flex: 0 0 calc(33.333% - 2rem);

	background: var(--gradient-card);
	border-radius: var(--border-radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.alh-story-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: var(--gradient-accent);
	border-radius: 0 0 0 100%;
	opacity: 0.2;
	z-index: -1;
}

.alh-story-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1.5rem;
	border: 3px solid white;
	box-shadow: var(--shadow-sm);
}

.alh-story-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.alh-story-name {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.alh-story-win {
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 1rem;
}

.alh-story-text {
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.alh-stories-nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 3rem;
}

.alh-stories-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: var(--transition-normal);
	color: var(--primary);
}

.alh-stories-btn:hover {
	background: var(--primary);
	color: white;
	box-shadow: 0 0 15px rgba(58, 92, 255, 0.4);
}

.alh-stories-btn.alh-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Prize Breakdown Section Styles */
.alh-prize-breakdown {
	padding: 6rem 0;
	position: relative;
}

.alh-breakdown-container {
	display: flex;
	gap: 4rem;
	align-items: center;
}

.alh-breakdown-chart {
	flex: 0 0 50%;
	position: relative;
}

.alh-chart-container {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	position: relative;
}

.alh-donut-chart {
	width: 100%;
	height: auto;
}

.alh-chart-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.alh-chart-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.alh-chart-label {
	font-size: 1rem;
	color: var(--text-light);
}

.alh-breakdown-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border);
}

.alh-breakdown-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.alh-breakdown-color {
	width: 24px;
	height: 24px;
	border-radius: 8px;
	margin-right: 1rem;
	position: relative;
	box-shadow: var(--shadow-sm);
}

.alh-breakdown-info {
	flex: 1;
}

.alh-breakdown-name {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.alh-breakdown-description {
	font-size: 0.875rem;
	color: var(--text-light);
}

.alh-breakdown-percent {
	font-size: 1.25rem;
	font-weight: 700;
	min-width: 60px;
	text-align: right;
	transition: var(--transition-normal);
}

.alh-breakdown-item:hover .alh-breakdown-percent {
	transform: scale(1.1);
	color: var(--primary);
}

/* Lucky Numbers Generator Styles */
.alh-lucky-numbers {
	padding: 6rem 0;
	position: relative;
	background-color: rgba(58, 92, 255, 0.03);
}

.alh-generator-container {
	max-width: 800px;
	margin: 0 auto;
	background: var(--gradient-card);
	border-radius: var(--border-radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-md);
	text-align: center;
}

.alh-generator-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.alh-generator-title::after {
	left: 50%;
	transform: translateX(-50%);
}

.alh-generator-subtitle {
	max-width: 600px;
	margin: 0 auto 2.5rem;
	color: var(--text-light);
}

.alh-numbers-display {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.alh-number-ball {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	box-shadow: var(--shadow-sm);
	border: 2px solid var(--primary);
	position: relative;
	overflow: hidden;
	transition: var(--transition-normal);
}

.alh-number-ball::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(58, 92, 255, 0.1) 0%,
		transparent 100%
	);
	z-index: 0;
}

.alh-number-ball span {
	position: relative;
	z-index: 1;
}

.alh-generate-btn {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

.alh-generator-note {
	margin-top: 2rem;
	font-size: 0.875rem;
	color: var(--text-light);
}

/* Contact Section Styles */
.alh-contact {
	padding: 6rem 0;
	position: relative;
}

.alh-contact-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
}

.alh-contact-form {
	background: var(--gradient-card);
	border-radius: var(--border-radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-md);
}

.alh-form-title {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.alh-form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.alh-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.alh-form-input {
	width: 100%;
	padding: 0.875rem 1rem;
	border-radius: var(--border-radius-sm);
	border: 1px solid var(--border);
	background-color: white;
	transition: var(--transition-normal);
}

.alh-form-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(58, 92, 255, 0.1);
}

.alh-form-input.alh-error {
	border-color: #ff3b3b;
}

.alh-form-error {
	font-size: 0.875rem;
	color: #ff3b3b;
	margin-top: 0.5rem;
}

.alh-form-submit {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
	margin-top: 1rem;
}

.alh-form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Map Section */
.alh-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.alh-map {
		height: 400px;
		min-width: auto;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.alh-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.alh-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Стили для ошибок */

.alh-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Cookie Consent Popup Styles */
.alh-cookie-consent {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 500px;
	background: var(--gradient-card);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	z-index: var(--z-index-popup);
	border: 1px solid var(--border);
	display: none;
}

.alh-cookie-text {
	margin-bottom: 1.5rem;
}

.alh-cookie-text a {
	font-weight: 600;
}

.alh-cookie-buttons {
	display: flex;
	justify-content: flex-end;
}

/* Footer Styles */
.alh-footer {
	padding: 6rem 0 2rem;
	background-color: var(--off-white);
	position: relative;
	overflow: hidden;
}

.alh-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.alh-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 4rem;
}

.alh-footer-logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary);
	display: inline-block;
	margin-bottom: 1.25rem;
}

.alh-footer-about {
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.alh-footer-column h4 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.alh-footer-column h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.alh-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.alh-footer-link {
	color: var(--text-light);
	transition: var(--transition-normal);
}

.alh-footer-link:hover {
	color: var(--primary);
	transform: translateX(5px);
}

.alh-contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.alh-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--text-light);
}

.alh-contact-item i {
	color: var(--primary);
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

.alh-help-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

.alh-help-link {
	width: 100%;
	height: 50px;
	background-color: var(--primary-hover);
	border-radius: var(--border-radius-sm);
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
}

.alh-help-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.alh-help-link:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.alh-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.alh-footer-copyright {
	color: var(--text-light);
	font-size: 0.95rem;
}

/* Policy Pages Styles */
.alh-page-header {
	position: relative;
	padding: 8rem 0 4rem;
	background-color: rgba(58, 92, 255, 0.03);
	text-align: center;
	overflow: hidden;
}

.alh-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233a5cff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.6;
	z-index: 0;
}

.alh-page-header h1 {
	position: relative;
	z-index: 1;
	margin-bottom: 1rem;
}

.alh-page-header p {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
	color: var(--text-light);
}

.alh-policy-section {
	padding: 5rem 0;
}

.alh-policy-content {
	background-color: white;
	border-radius: var(--border-radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-md);
}

.alh-policy-item {
	margin-bottom: 3rem;
}

.alh-policy-item:last-child {
	margin-bottom: 0;
}

.alh-policy-item h2 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}

.alh-policy-item p {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.alh-policy-item p:last-child {
	margin-bottom: 0;
}

.alh-policy-list {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}

.alh-policy-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--text-light);
}

.alh-policy-list li:last-child {
	margin-bottom: 0;
}

.alh-policy-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
}

.alh-contact-info-list li {
	padding-left: 0;
	margin-bottom: 0.5rem;
}

.alh-contact-info-list li::before {
	display: none;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
	html {
		font-size: 15px;
	}

	.alh-container {
		padding: 0 4rem;
	}

	.alh-hero-title {
		font-size: 3rem;
	}

	.alh-alerts-container {
		gap: 1.5rem;
	}

	.alh-alert-card {
		padding: 2rem;
	}
}

@media screen and (max-width: 992px) {
	html {
		font-size: 14px;
	}

	.alh-container {
		padding: 0 2rem;
	}

	.alh-mobile-menu {
		display: flex;
	}

	.alh-nav {
		position: fixed;
		top: 0;
		right: -300px;
		width: 300px;
		height: 100vh;
		background-color: white;
		box-shadow: var(--shadow-lg);
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 6rem 2rem 2rem;
		transition: var(--transition-normal);
		z-index: 90;
	}

	.alh-nav.alh-active {
		right: 0;
	}

	.alh-nav-link {
		padding: 1rem 0;
		border-bottom: 1px solid var(--border);
	}

	.alh-hero-content {
		flex-direction: column-reverse;
		gap: 2rem;
	}

	.alh-hero-text {
		padding-right: 0;
	}

	.alh-alerts-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.alh-story-card {
		flex: 0 0 calc(50% - 2rem);
	}

	.alh-breakdown-container {
		flex-direction: column;
		gap: 3rem;
	}

	.alh-breakdown-chart,
	.alh-breakdown-list {
		flex: 0 0 100%;
	}

	.alh-contact-container {
		grid-template-columns: 1fr;
	}

	.alh-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	html {
		font-size: 13px;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.alh-hero {
		padding: 7rem 0 4rem;
	}

	.alh-hero-title {
		font-size: 2.75rem;
	}

	.alh-section {
		padding: 4rem 0;
	}

	.alh-alerts-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.alh-alert-card {
		padding: 1.5rem;
	}

	.alh-story-card {
		flex: 0 0 100%;
		margin-right: 0;
	}

	.alh-generator-container {
		padding: 2rem;
	}

	.alh-number-ball {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.alh-contact-form {
		padding: 2rem;
	}

	.alh-policy-content {
		padding: 2rem;
	}

	.alh-footer {
		padding: 4rem 0 2rem;
	}

	.alh-footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media screen and (max-width: 576px) {
	html {
		font-size: 12px;
	}

	.alh-container {
		padding: 0 1.5rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.alh-hero-title {
		font-size: 2.25rem;
	}

	.alh-hero-btn {
		width: 100%;
	}

	.alh-alert-card-content {
		font-size: 1.5rem;
	}

	.alh-prize-card .alh-alert-card-content {
		font-size: 1.75rem;
	}

	.alh-countdown {
		gap: 0.3rem;
	}

	.alh-age-check-buttons {
		flex-direction: column;
	}

	.alh-number-ball {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.alh-contact-form {
		padding: 1.5rem;
	}

	.alh-policy-content {
		padding: 1.5rem;
	}

	.alh-policy-item h2 {
		font-size: 1.5rem;
	}

	.alh-cookie-consent {
		width: calc(100% - 2rem);
	}

	.alh-cookie-buttons {
		flex-direction: column;
	}

	.alh-cookie-btn {
		width: 100%;
		margin-top: 1rem;
	}
}
