:root {
	--tl-color-background: #fafafa;
	--tl-color-primary: #ff7043;
	--tl-color-primary-light: #ffab91;
	--tl-color-primary-dark: #e64a19;
	--tl-color-secondary: #26c6da;
	--tl-color-secondary-light: #80deea;
	--tl-color-secondary-dark: #00acc1;
	--tl-color-text: #263238;
	--tl-color-text-light: #607d8b;
	--tl-color-text-lighter: #b0bec5;
	--tl-color-text-lightest: #eceff1;
	--tl-color-white: #ffffff;
	--tl-color-black: #000000;
	--tl-color-gray-100: #f5f5f5;
	--tl-color-gray-200: #eeeeee;
	--tl-color-gray-300: #e0e0e0;
	--tl-color-gray-400: #bdbdbd;
	--tl-color-success: #66bb6a;
	--tl-color-warning: #ffa726;
	--tl-color-error: #ef5350;
	--tl-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--tl-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
	--tl-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
	--tl-font-primary: 'Inter', sans-serif;
	--tl-font-secondary: 'Open Sans', sans-serif;
	--tl-border-radius: 8px;
	--tl-border-radius-lg: 16px;
	--tl-transition-fast: 200ms ease;
	--tl-transition-normal: 300ms ease;
	--tl-transition-slow: 500ms ease;
	--tl-header-height: 80px;
	--tl-max-width: 1200px;
	--tl-section-spacing: 80px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	line-height: 1.6;
}

body {
	font-family: var(--tl-font-secondary);
	color: var(--tl-color-text);
	background-color: var(--tl-color-background);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23263238' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
	min-height: 100vh;
	overflow-x: hidden;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--tl-transition-fast);
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
}

/* ------------------------------------ */
/* 2. Typography                        */
/* ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--tl-font-primary);
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--tl-color-text);
}

h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
}

h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

h4 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

h5 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

h6 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

.tl-section-title {
	font-size: 2.25rem;
	margin-bottom: 2rem;
	text-align: center;
	position: relative;
	padding-bottom: 0.5rem;
}

.tl-section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--tl-color-primary);
	border-radius: 2px;
}

.tl-section-subtitle {
	font-size: 1.25rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--tl-color-text-light);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.tl-text-accent {
	color: var(--tl-color-primary);
}

.tl-text-secondary {
	color: var(--tl-color-secondary);
}

.tl-text-large {
	font-size: 1.125rem;
}

.tl-text-small {
	font-size: 0.875rem;
}

.tl-text-bold {
	font-weight: 700;
}

.tl-text-uppercase {
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tl-text-center {
	text-align: center;
}

.tl-text-right {
	text-align: right;
}

.tl-text-muted {
	color: var(--tl-color-text-light);
}

/* ------------------------------------ */
/* 3. Layout & Grid                     */
/* ------------------------------------ */
.tl-container {
	width: 100%;
	max-width: var(--tl-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tl-section {
	padding: var(--tl-section-spacing) 0;
	position: relative;
}

.tl-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1rem;
}

.tl-col {
	flex: 1 0 100%;
	padding: 0 1rem;
	max-width: 100%;
}

.tl-col-6 {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 1rem;
}

.tl-col-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding: 0 1rem;
}

.tl-col-3 {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 1rem;
}

.tl-flex {
	display: flex;
}

.tl-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tl-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tl-flex-column {
	display: flex;
	flex-direction: column;
}

.tl-flex-wrap {
	flex-wrap: wrap;
}

.tl-flex-grow {
	flex-grow: 1;
}

.tl-flex-shrink-0 {
	flex-shrink: 0;
}

.tl-gap-1 {
	gap: 0.5rem;
}

.tl-gap-2 {
	gap: 1rem;
}

.tl-gap-3 {
	gap: 1.5rem;
}

.tl-gap-4 {
	gap: 2rem;
}

/* ------------------------------------ */
/* 4. Header & Navigation               */
/* ------------------------------------ */
.tl-header {
	position: relative;
	z-index: 100;
	background: radial-gradient(ellipse at 50% -50%, #fff3e0 0%, #ffe0b2 70%);
	padding-top: 1.5rem;
	border-radius: 0 0 50% 50% / 0 0 100px 100px;
	margin-bottom: 4rem;
	overflow: hidden;
}

.tl-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 112, 67, 0.03);
	z-index: -1;
}

.tl-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.tl-logo {
	display: block;
	max-width: 150px;
}

.tl-logo img {
	width: 250px;
	height: 80px;
	object-fit: cover;
}

.tl-nav-list {
	display: flex;
	gap: 2rem;
}

.tl-nav-item {
	position: relative;
}

.tl-nav-link {
	font-family: var(--tl-font-primary);
	font-weight: 600;
	color: var(--tl-color-text);
	padding: 0.5rem 0;
	position: relative;
}

.tl-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--tl-color-primary);
	transition: var(--tl-transition-normal);
}

.tl-nav-link:hover::after,
.tl-nav-link.active::after {
	width: 100%;
}

.tl-cart-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--tl-color-text);
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: var(--tl-border-radius);
	transition: var(--tl-transition-normal);
}

.tl-cart-btn:hover {
	background-color: rgba(255, 112, 67, 0.1);
}

.tl-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	font-size: 0.75rem;
	border-radius: 50%;
}

.tl-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.tl-mobile-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--tl-color-text);
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: var(--tl-transition-fast);
}

.tl-mobile-toggle span:nth-child(1) {
	top: 0;
}

.tl-mobile-toggle span:nth-child(2) {
	top: 10px;
}

.tl-mobile-toggle span:nth-child(3) {
	top: 20px;
}

.tl-mobile-toggle.tl-active span:nth-child(1) {
	top: 10px;
	transform: rotate(135deg);
}

.tl-mobile-toggle.tl-active span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.tl-mobile-toggle.tl-active span:nth-child(3) {
	top: 10px;
	transform: rotate(-135deg);
}

.tl-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 320px;
	height: 100vh;
	background-color: var(--tl-color-white);
	z-index: 1000;
	box-shadow: var(--tl-shadow-lg);
	transition: right 0.3s ease;
	padding: 2rem;
}

.tl-mobile-menu.tl-active {
	right: 0;
}

.tl-mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--tl-color-gray-200);
}

.tl-mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
	color: var(--tl-color-text);
}

.tl-mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tl-mobile-nav-link {
	font-family: var(--tl-font-primary);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--tl-color-text);
}

.tl-mobile-nav-link:hover {
	color: var(--tl-color-primary);
}

.tl-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.tl-overlay.tl-active {
	display: block;
}

/* ------------------------------------ */
/* 5. Hero Section with Timer           */
/* ------------------------------------ */
.tl-hero {
	padding: 2rem 0 6rem;
}

.tl-hero-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.tl-hero-image {
	/* flex: 1 1 40%; */
	/* max-width: 500px; */
	width: 525px;
	height: 100%;
}

.tl-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
	animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.tl-hero-timer {
	flex: 1 1 50%;
	text-align: center;
}

.tl-timer-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--tl-color-text);
}

.tl-timer-container {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 0 auto 2rem;
}

.tl-timer-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tl-timer-circle {
	fill: none;
	stroke: var(--tl-color-gray-200);
	stroke-width: 8;
}

.tl-timer-circle-progress {
	fill: none;
	stroke: var(--tl-color-primary);
	stroke-width: 8;
	stroke-linecap: round;
	transform-origin: center;
	transform: rotate(-90deg);
	transition: stroke-dashoffset var(--tl-transition-normal);
}

.tl-timer-display {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 80%;
}

.tl-timer-units {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.tl-timer-unit {
	flex: 1;
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius);
	padding: 1rem;
	box-shadow: var(--tl-shadow-md);
}

.tl-timer-value {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: var(--tl-color-primary);
	margin-bottom: 0.25rem;
}

.tl-timer-label {
	font-size: 0.875rem;
	color: var(--tl-color-text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tl-timer-separator {
	display: flex;
	align-items: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--tl-color-text);
}

.tl-hero-cta {
	margin-top: 2rem;
	text-align: center;
}

/* ------------------------------------ */
/* 6. Game Selection                    */
/* ------------------------------------ */
.tl-games {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius-lg);
	box-shadow: var(--tl-shadow-md);
	padding: 2rem;
	margin-bottom: 3rem;
}

.tl-games-title {
	color: var(--tl-color-text);
	font-size: 1.5rem;
	margin-bottom: 2rem;
	position: relative;
	padding-left: 2rem;
}

.tl-games-title::before {
	content: '1';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1rem;
}

.tl-games-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tl-form-group {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.tl-form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--tl-color-text);
}

.tl-form-select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tl-color-gray-300);
	border-radius: var(--tl-border-radius);
	background-color: var(--tl-color-white);
	color: var(--tl-color-text);
	font-size: 1rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23263238' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	cursor: pointer;
	transition: border-color var(--tl-transition-fast);
}

.tl-form-select:focus {
	outline: none;
	border-color: var(--tl-color-primary);
	box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.2);
}

.tl-checkbox-group {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.tl-checkbox {
	position: relative;
	width: 20px;
	height: 20px;
	border: 2px solid var(--tl-color-primary);
	border-radius: 4px;
	cursor: pointer;
	overflow: hidden;
}

.tl-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.tl-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: transparent;
	transition: background-color var(--tl-transition-fast);
}

.tl-checkmark:after {
	content: '';
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.tl-checkbox input:checked ~ .tl-checkmark {
	background-color: var(--tl-color-primary);
}

.tl-checkbox input:checked ~ .tl-checkmark:after {
	display: block;
}

.tl-checkbox-label {
	font-weight: 500;
}

.tl-total-price {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--tl-color-gray-200);
	display: flex;
	justify-content: space-between;
}

.tl-total-label {
	color: var(--tl-color-text);
}

.tl-total-value {
	color: var(--tl-color-primary);
}

.tl-games-actions {
	margin-top: 1rem;
	display: flex;
	justify-content: flex-end;
}

/* ------------------------------------ */
/* 7. Promotions & Rewards              */
/* ------------------------------------ */
.tl-promotions {
	margin-bottom: 3rem;
}

.tl-promo-title {
	color: var(--tl-color-text);
	font-size: 1.5rem;
	margin-bottom: 2rem;
	position: relative;
	padding-left: 2rem;
}

.tl-promo-title::before {
	content: '2';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1rem;
}

.tl-promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.tl-promo-card {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius);
	overflow: hidden;
	box-shadow: var(--tl-shadow-md);
	border: 2px solid var(--tl-color-secondary-light);
	padding: 1.5rem;
	transition: transform var(--tl-transition-normal);
}

.tl-promo-card:hover {
	transform: translateY(-5px);
}

.tl-promo-icon {
	font-size: 2rem;
	color: var(--tl-color-secondary);
	margin-bottom: 1rem;
}

.tl-promo-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.tl-promo-card-text {
	font-size: 0.95rem;
	color: var(--tl-color-text-light);
}

/* ------------------------------------ */
/* 8. Latest Results                    */
/* ------------------------------------ */
.tl-results {
	margin-bottom: 3rem;
}

.tl-results-ticket {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius-lg);
	box-shadow: var(--tl-shadow-md);
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.tl-results-ticket::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(
		90deg,
		var(--tl-color-primary),
		var(--tl-color-secondary)
	);
}

.tl-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.tl-results-title {
	font-size: 1.5rem;
	font-weight: 700;
}

.tl-draw-number {
	font-size: 1rem;
	font-weight: 600;
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	padding: 0.25rem 0.75rem;
	border-radius: var(--tl-border-radius);
}

.tl-winning-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.tl-number-ball {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
	box-shadow: var(--tl-shadow-md);
	color: var(--tl-color-text);
	position: relative;
	overflow: hidden;
}

.tl-number-ball.tl-powerball {
	background: linear-gradient(135deg, #ff9e80 0%, #ff7043 100%);
	color: var(--tl-color-white);
}

.tl-results-date {
	text-align: center;
	font-size: 0.875rem;
	color: var(--tl-color-text-light);
	margin-bottom: 1.5rem;
}

.tl-results-actions {
	text-align: center;
}

/* ------------------------------------ */
/* 9. Top Winners                       */
/* ------------------------------------ */
.tl-winners {
	margin-bottom: 3rem;
}

.tl-winners-title {
	color: var(--tl-color-text);
	font-size: 1.5rem;
	margin-bottom: 2rem;
	position: relative;
	padding-left: 2rem;
}

.tl-winners-title::before {
	content: '3';
	position: absolute;
	left: 0;
	top: 0;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1rem;
}

.tl-winners-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.tl-winner-card {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius);
	overflow: hidden;
	box-shadow: var(--tl-shadow-md);
	padding: 1.5rem;
	transition: transform var(--tl-transition-normal);
	position: relative;
}

.tl-winner-card:hover {
	transform: translateY(-5px);
}

.tl-winner-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--tl-color-primary),
		var(--tl-color-secondary)
	);
}

.tl-winner-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.tl-winner-amount {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--tl-color-primary);
	margin-bottom: 0.75rem;
}

.tl-winner-date {
	font-size: 0.875rem;
	color: var(--tl-color-text-light);
}

/* ------------------------------------ */
/* 10. Footer                           */
/* ------------------------------------ */
.tl-footer {
	background-color: var(--tl-color-text);
	color: var(--tl-color-text-lightest);
	padding: 4rem 0 0;
	margin-top: 4rem;
	position: relative;
	z-index: 10;
}

.tl-footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.tl-footer-logo {
	margin-bottom: 1.5rem;
	display: inline-block;
	height: 100px;
}

.tl-footer-logo img {
	filter: brightness(2);
	width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}

.tl-footer-title {
	font-size: 1.25rem;
	color: var(--tl-color-white);
	margin-bottom: 1.5rem;
}

.tl-footer-nav ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tl-footer-link {
	color: var(--tl-color-gray-300);
	transition: var(--tl-transition-fast);
}

.tl-footer-link:hover {
	color: var(--tl-color-white);
	padding-left: 5px;
}

.tl-footer-disclaimer {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--tl-color-gray-400);
}

.tl-footer-disclaimer a {
	color: var(--tl-color-secondary-light);
	text-decoration: underline;
}

.tl-footer-disclaimer a:hover {
	color: var(--tl-color-secondary);
}

.tl-responsible-gaming {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.tl-responsible-gaming-title {
	font-weight: 700;
	color: var(--tl-color-white);
}

.tl-responsible-gaming-logos {
	display: flex;
	margin-bottom: 25px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.tl-responsible-logo {
	height: 64px;
	width: auto;
	/* background-color: var(--tl-color-white); */
	padding: 0.5rem;
	border-radius: var(--tl-border-radius);
}

.tl-responsible-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tl-eighteen-plus {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--tl-color-white);
	font-weight: 700;
	padding: 0.5rem 0.75rem;
	border-radius: var(--tl-border-radius);
	font-size: 1.5rem;
	max-width: max-content;
}

.tl-footer-bottom {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 1rem 0;
	text-align: center;
}

.tl-copyright {
	font-size: 0.875rem;
	color: var(--tl-color-gray-400);
}

/* ------------------------------------ */
/* 11. Buttons & CTAs                   */
/* ------------------------------------ */
.tl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: var(--tl-border-radius);
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: var(--tl-transition-normal);
	border: none;
	font-size: 1rem;
	line-height: 1.5;
	font-family: var(--tl-font-primary);
}

.tl-btn-primary {
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	box-shadow: var(--tl-shadow-sm);
}

.tl-btn-primary:hover {
	background-color: var(--tl-color-primary-dark);
	box-shadow: var(--tl-shadow-md);
	transform: translateY(-2px);
}

.tl-btn-secondary {
	background-color: var(--tl-color-secondary);
	color: var(--tl-color-white);
	box-shadow: var(--tl-shadow-sm);
}

.tl-btn-secondary:hover {
	background-color: var(--tl-color-secondary-dark);
	box-shadow: var(--tl-shadow-md);
	transform: translateY(-2px);
}

.tl-btn-outline {
	background-color: transparent;
	color: var(--tl-color-primary);
	border: 2px solid var(--tl-color-primary);
}

.tl-btn-outline:hover {
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
	transform: translateY(-2px);
}

.tl-btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.tl-btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.tl-btn-block {
	display: flex;
	width: 100%;
}

.tl-btn:disabled {
	background-color: var(--tl-color-gray-400);
	cursor: not-allowed;
	transform: none !important;
}

.tl-btn-icon {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.tl-btn i {
	font-size: 1.25rem;
}

/* ------------------------------------ */
/* 12. Forms & Inputs                   */
/* ------------------------------------ */
.tl-input-group {
	position: relative;
	margin-bottom: 1.5rem;
}

.tl-form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tl-color-gray-300);
	border-radius: var(--tl-border-radius);
	font-size: 1rem;
	transition: border-color var(--tl-transition-fast);
}

.tl-form-input:focus {
	outline: none;
	border-color: var(--tl-color-primary);
	box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.2);
}

.tl-form-input::placeholder {
	color: var(--tl-color-text-lighter);
}

.tl-input-error {
	border-color: var(--tl-color-error) !important;
}

.tl-error-message {
	color: var(--tl-color-error);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.tl-input-icon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--tl-color-text-light);
	pointer-events: none;
}

.tl-form-textarea {
	min-height: 120px;
	resize: vertical;
}

/* ------------------------------------ */
/* 13. Cart Page                        */
/* ------------------------------------ */
.tl-cart-section {
	padding: 2rem 0;
}

.tl-cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.tl-cart-title {
	font-size: 2rem;
}

.tl-cart-continue {
	color: var(--tl-color-primary);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tl-cart-continue i {
	transition: transform var(--tl-transition-fast);
}

.tl-cart-continue:hover i {
	transform: translateX(-3px);
}

.tl-cart-container {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 2rem;
}

.tl-cart-main {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius-lg);
	box-shadow: var(--tl-shadow-md);
	padding: 2rem;
}

.tl-cart-summary {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius-lg);
	box-shadow: var(--tl-shadow-md);
	padding: 2rem;
	position: sticky;
	top: 2rem;
}

.tl-cart-item {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--tl-color-gray-200);
}

.tl-cart-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.tl-cart-item-title {
	font-weight: 700;
	font-size: 1.25rem;
}

.tl-cart-item-details {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.tl-cart-detail {
	flex: 1 1 200px;
	background-color: var(--tl-color-background);
	padding: 1rem;
	border-radius: var(--tl-border-radius);
}

.tl-cart-detail-label {
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--tl-color-text-light);
}

.tl-cart-detail-value {
	font-weight: 700;
	color: var(--tl-color-text);
}

.tl-cart-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.tl-cart-number {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
	background-color: var(--tl-color-gray-100);
	box-shadow: var(--tl-shadow-sm);
}

.tl-regenerate-btn {
	margin-top: 1rem;
	background-color: transparent;
	border: none;
	color: var(--tl-color-primary);
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tl-regenerate-btn i {
	transition: transform var(--tl-transition-normal);
}

.tl-regenerate-btn:hover i {
	transform: rotate(180deg);
}

.tl-summary-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--tl-color-gray-200);
}

.tl-summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.tl-summary-label {
	color: var(--tl-color-text-light);
}

.tl-summary-value {
	font-weight: 600;
}

.tl-summary-total {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 2px solid var(--tl-color-gray-200);
	display: flex;
	justify-content: space-between;
	font-size: 1.25rem;
	font-weight: 700;
}

.tl-summary-total-label {
	color: var(--tl-color-text);
}

.tl-summary-total-value {
	color: var(--tl-color-primary);
}

.tl-summary-cta {
	margin-top: 2rem;
}

/* ------------------------------------ */
/* 14. Modal Windows                    */
/* ------------------------------------ */
.tl-modal-overlay {
	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: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--tl-transition-normal),
		visibility var(--tl-transition-normal);
}

.tl-modal-overlay.tl-active {
	opacity: 1;
	visibility: visible;
}

.tl-modal {
	background-color: var(--tl-color-white);
	width: 90%;
	max-width: 500px;
	border-radius: var(--tl-border-radius-lg);
	box-shadow: var(--tl-shadow-lg);
	transform: translateY(20px);
	opacity: 0;
	transition: transform var(--tl-transition-normal),
		opacity var(--tl-transition-normal);
	position: relative;
	padding: 2rem;
}

.tl-modal.tl-active {
	transform: translateY(0);
	opacity: 1;
}

.tl-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--tl-color-text-light);
	cursor: pointer;
	transition: var(--tl-transition-fast);
}

.tl-modal-close:hover {
	color: var(--tl-color-text);
	transform: rotate(90deg);
}

.tl-success-modal {
	text-align: center;
}

.tl-success-icon {
	font-size: 4rem;
	color: var(--tl-color-success);
	margin-bottom: 1rem;
}

.tl-success-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.tl-success-message {
	color: var(--tl-color-text-light);
	margin-bottom: 2rem;
}

/* ------------------------------------ */
/* 15. Animations & Effects             */
/* ------------------------------------ */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleUp {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.tl-fade-in {
	animation: fadeIn 1s forwards;
}

.tl-slide-left {
	animation: slideInLeft 1s forwards;
}

.tl-slide-right {
	animation: slideInRight 1s forwards;
}

.tl-scale-up {
	animation: scaleUp 1s forwards;
}

.tl-animate-spin {
	animation: spin 2s linear infinite;
}

.tl-delay-100 {
	animation-delay: 100ms;
}

.tl-delay-200 {
	animation-delay: 200ms;
}

.tl-delay-300 {
	animation-delay: 300ms;
}

.tl-delay-400 {
	animation-delay: 400ms;
}

.tl-delay-500 {
	animation-delay: 500ms;
}

.tl-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--tl-transition-slow),
		transform var(--tl-transition-slow);
}

.tl-reveal.tl-active {
	opacity: 1;
	transform: translateY(0);
}

/* ------------------------------------ */
/* 16. Utilities                        */
/* ------------------------------------ */
.tl-text-center {
	text-align: center;
}

.tl-text-right {
	text-align: right;
}

.tl-text-left {
	text-align: left;
}

.tl-mt-1 {
	margin-top: 0.5rem;
}

.tl-mt-2 {
	margin-top: 1rem;
}

.tl-mt-3 {
	margin-top: 1.5rem;
}

.tl-mt-4 {
	margin-top: 2rem;
}

.tl-mt-5 {
	margin-top: 3rem;
}

.tl-mb-1 {
	margin-bottom: 0.5rem;
}

.tl-mb-2 {
	margin-bottom: 1rem;
}

.tl-mb-3 {
	margin-bottom: 1.5rem;
}

.tl-mb-4 {
	margin-bottom: 2rem;
}

.tl-mb-5 {
	margin-bottom: 3rem;
}

.tl-p-1 {
	padding: 0.5rem;
}

.tl-p-2 {
	padding: 1rem;
}

.tl-p-3 {
	padding: 1.5rem;
}

.tl-p-4 {
	padding: 2rem;
}

.tl-p-5 {
	padding: 3rem;
}

.tl-shadow {
	box-shadow: var(--tl-shadow-md);
}

.tl-rounded {
	border-radius: var(--tl-border-radius);
}

.tl-rounded-lg {
	border-radius: var(--tl-border-radius-lg);
}

.tl-bg-primary {
	background-color: var(--tl-color-primary);
	color: var(--tl-color-white);
}

.tl-bg-secondary {
	background-color: var(--tl-color-secondary);
	color: var(--tl-color-white);
}

.tl-bg-white {
	background-color: var(--tl-color-white);
}

.tl-bg-light {
	background-color: var(--tl-color-gray-100);
}

/* ------------------------------------ */
/* 17. Media Queries                    */
/* ------------------------------------ */
@media (max-width: 1200px) {
	:root {
		--tl-section-spacing: 70px;
	}

	h1 {
		font-size: 2.75rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.tl-section-title {
		font-size: 2rem;
	}

	.tl-container {
		padding: 0 2rem;
	}

	.tl-timer-container {
		width: 250px;
		height: 250px;
	}

	.tl-timer-value {
		font-size: 1.75rem;
	}
}

@media (max-width: 992px) {
	:root {
		--tl-section-spacing: 60px;
		--tl-header-height: 70px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.tl-section-title {
		font-size: 1.75rem;
	}

	.tl-section-subtitle {
		font-size: 1.125rem;
	}

	.tl-hero-content {
		flex-direction: column;
	}

	.tl-hero-image,
	.tl-hero-timer {
		flex: 1 1 100%;
		max-width: 100%;
		text-align: center;
	}

	.tl-hero-image {
		margin-bottom: 2rem;
	}

	.tl-timer-container {
		width: 220px;
		height: 220px;
	}

	.tl-timer-value {
		font-size: 1.5rem;
	}

	.tl-cart-container {
		grid-template-columns: 1fr;
	}

	.tl-cart-summary {
		position: static;
	}
}

@media (max-width: 768px) {
	:root {
		--tl-section-spacing: 50px;
	}

	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.tl-section-title {
		font-size: 1.5rem;
	}

	.tl-nav-list {
		display: none;
	}

	.tl-mobile-toggle {
		display: block;
	}

	.tl-timer-container {
		width: 200px;
		height: 200px;
	}

	.tl-timer-units {
		gap: 0.5rem;
	}

	.tl-timer-unit {
		padding: 0.75rem;
	}

	.tl-timer-value {
		font-size: 1.25rem;
	}

	.tl-footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 576px) {
	:root {
		--tl-section-spacing: 40px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.tl-section-title {
		font-size: 1.35rem;
	}

	.tl-container {
		padding: 0 1.5rem;
	}

	.tl-timer-container {
		width: 180px;
		height: 180px;
	}

	/* .tl-timer-units {
		flex-wrap: wrap;
		justify-content: center;
	} */

	.tl-timer-unit {
		flex: 0 0 calc(33.333% - 0.5rem);
		padding: 0.5rem;
	}

	.tl-timer-value {
		font-size: 1.15rem;
	}

	.tl-winning-numbers {
		gap: 0.75rem;
	}

	.tl-responsible-gaming-logos {
		flex-direction: column;
	}

	.tl-number-ball {
		width: 45px;
		height: 45px;
		font-size: 1.25rem;
	}

	.tl-cart-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.tl-cart-title {
		font-size: 1.75rem;
	}

	.tl-cart-main,
	.tl-cart-summary {
		padding: 1.5rem;
	}
}

/* ------------------------------------ */
/* 18. Privacy & Terms Pages            */
/* ------------------------------------ */
.tl-legal-page {
	padding: 3rem 0;
}

.tl-legal-header {
	margin-bottom: 3rem;
	text-align: center;
}

.tl-legal-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.tl-legal-date {
	color: var(--tl-color-text-light);
	font-size: 0.95rem;
}

.tl-legal-content {
	max-width: 900px;
	margin: 0 auto;
}

.tl-legal-section {
	margin-bottom: 2.5rem;
}

.tl-legal-section-title {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--tl-color-primary);
}

.tl-legal-list {
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.tl-legal-list li {
	margin-bottom: 0.75rem;
	position: relative;
	padding-left: 0.5rem;
}

.tl-legal-list li::before {
	content: '•';
	position: absolute;
	left: -1rem;
	color: var(--tl-color-primary);
}

.tl-legal-contact {
	background-color: var(--tl-color-white);
	border-radius: var(--tl-border-radius);
	padding: 1.5rem;
	margin-top: 3rem;
}

.tl-legal-contact-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.tl-legal-contact-item {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.tl-legal-contact-label {
	font-weight: 600;
	min-width: 80px;
}
