/* ========================================
   RESET AND BASE STYLES
   ======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
	color: #1e293b;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
	--primary: #3b82f6;
	--primary-dark: #2563eb;
	--secondary: #f59e0b;
	--accent: #10b981;
	--danger: #ef4444;
	--success: #22c55e;
	--warning: #f97316;
	--dark: #1e293b;
	--darker: #0f172a;
	--light: #ffffff;
	--gray: #64748b;
	--gray-light: #94a3b8;
	--gray-lighter: #e2e8f0;
	--border: #cbd5e1;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
	--glow: rgba(59, 130, 246, 0.2);
}

/* ========================================
   HEADER STYLES
   ======================================== */
.site-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 2px solid var(--primary);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-logo {
	font-size: 2rem;
	font-weight: 900;
	color: var(--primary);
	text-decoration: none;
	text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
	transition: all 0.3s ease;
}

.brand-logo:hover {
	transform: scale(1.05);
	color: var(--primary-dark);
}

/* ========================================
   CART BUTTON IN HEADER
   ======================================== */
.cart-button {
	background: linear-gradient(45deg, var(--secondary), var(--warning));
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: var(--shadow);
	text-decoration: none;
}

.cart-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	background: linear-gradient(45deg, var(--warning), var(--secondary));
}

.cart-button .cart-icon {
	font-size: 1.2rem;
}

.cart-button .cart-count {
	background: var(--danger);
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 800;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.fun-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(45deg, var(--secondary), var(--warning));
	color: white;
	padding: 1.5rem 2rem;
	text-align: center;
	z-index: 9999;
	box-shadow: 0 -10px 30px rgba(245, 158, 11, 0.3);
	animation: slideUp 0.6s ease-out;
}

.fun-cookie-banner p {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.fun-cookie-button {
	background: white;
	color: var(--dark);
	border: 2px solid white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
}

.fun-cookie-button:hover {
	background: var(--dark);
	color: white;
	transform: translateY(-2px);
}

/* ========================================
   AGE GATE MODAL
   ======================================== */
.lotto-age-gate {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(20px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.5s ease;
}

.age-gate-popup {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 3px solid var(--primary);
	border-radius: 30px;
	padding: 4rem 3rem;
	text-align: center;
	max-width: 550px;
	width: 90%;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
	animation: popIn 0.4s ease;
	position: relative;
	overflow: hidden;
}

.age-gate-popup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	border-radius: 30px 30px 0 0;
}

.age-gate-popup h3 {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--dark);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
}

.age-gate-popup p {
	color: var(--gray);
	margin-bottom: 3rem;
	line-height: 1.7;
	font-size: 1.2rem;
	font-weight: 500;
	position: relative;
	z-index: 2;
}

.age-gate-popup .age-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.age-btn-yes, .age-btn-no {
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 50px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	min-width: 140px;
}

.age-btn-yes {
	background: linear-gradient(135deg, var(--success), var(--accent));
	color: white;
	box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.age-btn-no {
	background: linear-gradient(135deg, var(--danger), #dc2626);
	color: white;
	box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.age-btn-yes::before, .age-btn-no::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
}

.age-btn-yes:hover::before, .age-btn-no::before {
	left: 100%;
}

.age-btn-yes:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
	background: linear-gradient(135deg, var(--accent), var(--success));
}

.age-btn-no:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
	background: linear-gradient(135deg, #dc2626, var(--danger));
}

.age-gate-popup .age-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: block;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* ========================================
   HERO SECTION
   ======================================== */
.lucky-blast {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	padding: 8rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.lucky-blast::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
	opacity: 0.5;
	animation: float 20s linear infinite;
}

.blast-inner {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.blast-title {
	font-size: clamp(3rem, 10vw, 5rem);
	font-weight: 900;
	background: linear-gradient(45deg, #ffffff, #fbbf24, #34d399);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
	animation: glow 2s ease-in-out infinite alternate;
}

.blast-subtext {
	font-size: 1.4rem;
	color: white;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================
   TIMER STYLES
   ======================================== */
.timer-wrapper {
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	padding: 3rem;
	max-width: 600px;
	margin: 3rem auto;
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
}

.timer-label {
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.timer-grid {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.time-unit {
	background: rgba(255, 255, 255, 0.2);
	border: 3px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	min-width: 100px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px);
}

.time-unit:hover {
	transform: translateY(-10px) scale(1.1);
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.6);
}

.time-unit span {
	font-size: 2.5rem;
	font-weight: 900;
	color: white;
	display: block;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.time-unit em {
	font-size: 0.9rem;
	color: white;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 600;
}

.divider {
	font-size: 3rem;
	color: white;
	font-weight: bold;
	display: flex;
	align-items: center;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.blast-call {
	background: linear-gradient(45deg, var(--secondary), var(--warning));
	color: white;
	padding: 1.5rem 4rem;
	border-radius: 50px;
	font-size: 1.3rem;
	font-weight: 800;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.blast-call:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 20px 40px rgba(245, 158, 11, 0.6);
}

/* ========================================
   SYNDICATE SECTION
   ======================================== */
.lotto-syndicate-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 6rem 2rem;
	position: relative;
}

.zone-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.lotto-syndicate-form {
	background: white;
	border: 2px solid var(--primary);
	border-radius: 30px;
	padding: 4rem;
	box-shadow: var(--shadow);
}

.lotto-syndicate-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 2.5rem;
	border-left: 5px solid var(--primary);
	padding-left: 1.5rem;
}

.lotto-syndicate-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.lotto-syndicate-card {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border: 3px solid var(--primary);
	border-radius: 25px;
	padding: 2.5rem;
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.lotto-syndicate-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.lotto-syndicate-card:hover::before {
	transform: rotate(45deg) translate(50%, 50%);
}

.lotto-syndicate-card:hover {
	transform: translateY(-15px) scale(1.05);
	border-color: var(--secondary);
	box-shadow: var(--shadow-hover);
}

.lotto-syndicate-card.selected {
	border-color: var(--accent);
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	transform: scale(1.05);
}

.card-head {
	font-size: 1.6rem;
	color: var(--dark);
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.card-head span {
	display: block;
	font-size: 1rem;
	color: var(--gray);
	margin-top: 0.5rem;
	font-weight: 500;
}

.card-price {
	font-size: 1.5rem;
	color: var(--accent);
	margin-bottom: 2rem;
	font-weight: 700;
}

/* ========================================
   CUSTOM RADIO STYLES
   ======================================== */
.custom-radio {
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	font-weight: 700;
	color: var(--dark);
	font-size: 1.1rem;
}

.custom-radio input[type="radio"] {
	display: none;
}

.radio-mark {
	width: 25px;
	height: 25px;
	border: 3px solid var(--primary);
	border-radius: 50%;
	position: relative;
	transition: all 0.3s ease;
	background: transparent;
}

.custom-radio input[type="radio"]:checked + .radio-mark {
	border-color: var(--accent);
	background: var(--accent);
	box-shadow: 0 0 20px var(--accent);
}

.custom-radio input[type="radio"]:checked + .radio-mark::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: white;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

/* ========================================
   FORM CONTROLS
   ======================================== */
#lotto-share-count {
	background: white;
	color: var(--dark);
	border: 2px solid var(--primary);
	padding: 1rem 1.5rem;
	border-radius: 15px;
	font-size: 1.1rem;
	width: 250px;
	margin-bottom: 1.5rem;
}

.repeat-toggle label {
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	font-weight: 700;
	color: var(--accent);
	font-size: 1.1rem;
}

.repeat-toggle input[type="checkbox"] {
	width: 25px;
	height: 25px;
	accent-color: var(--accent);
}

.lotto-total-text {
	font-size: 2rem;
	font-weight: 900;
	color: var(--secondary);
	text-align: center;
	margin: 3rem 0;
	padding: 2rem;
	background: white;
	border-radius: 20px;
	border: 3px solid var(--secondary);
	box-shadow: var(--shadow);
}

.lotto-btn {
	background: linear-gradient(45deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 1.2rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	font-weight: 700;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow);
}

.lotto-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-hover);
}

/* ========================================
   STANDARD LOTTERY SECTION
   ======================================== */
.lotto-container {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 6rem 2rem;
	margin: 0 auto;
}

.lotto-heading {
	font-size: 3rem;
	font-weight: 900;
	color: var(--secondary);
	text-align: center;
	margin-bottom: 4rem;
}

.lotto-card {
	background: white;
	border: 2px solid var(--primary);
	border-radius: 25px;
	padding: 2.5rem;
	margin-bottom: 2.5rem;
	transition: all 0.4s ease;
	box-shadow: var(--shadow);
}

.lotto-card:hover {
	border-color: var(--secondary);
	box-shadow: var(--shadow-hover);
	transform: translateY(-5px);
}

.lotto-card label {
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-input {
	width: 100%;
	padding: 1rem 1.5rem;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 15px;
	color: var(--dark);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.lotto-input:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.lotto-input:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: var(--gray-lighter);
}

.lotto-options {
	display: flex;
	gap: 2.5rem;
	margin-top: 1.5rem;
}

.option {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	cursor: pointer;
	padding: 1rem 1.5rem;
	background: white;
	border: 2px solid var(--primary);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.option:hover {
	border-color: var(--secondary);
	background: rgba(245, 158, 11, 0.1);
	transform: translateY(-3px);
}

.option input[type="radio"] {
	accent-color: var(--secondary);
	width: 20px;
	height: 20px;
}

/* ========================================
   INLINE CHECKBOX STYLES
   ======================================== */
.inline-checkbox {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	color: var(--secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.inline-checkbox:hover {
	transform: translateY(-2px);
	color: var(--warning);
}

.inline-checkbox input[type="checkbox"] {
	width: 25px;
	height: 25px;
	border: 3px solid var(--secondary);
	border-radius: 8px;
	background: white;
	appearance: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.inline-checkbox input[type="checkbox"]:checked {
	border-color: var(--accent);
	background: var(--accent);
	box-shadow: 0 0 20px var(--accent);
}

.inline-checkbox input[type="checkbox"]:checked::before {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-weight: 900;
	font-size: 16px;
}

.lotto-numbers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
	gap: 0.8rem;
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 15px;
	border: 2px solid var(--primary);
}

.lotto-numbers button {
	width: 45px;
	height: 45px;
	border: 2px solid var(--primary);
	border-radius: 50%;
	background: white;
	color: var(--dark);
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 700;
	font-size: 1rem;
}

.lotto-numbers button:hover {
	border-color: var(--secondary);
	background: var(--secondary);
	color: white;
	transform: scale(1.1);
}

.lotto-numbers button.selected {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	box-shadow: 0 0 20px var(--accent);
}

.lotto-summary {
	text-align: center;
	margin-top: 4rem;
	padding: 3rem;
	background: white;
	border-radius: 25px;
	border: 3px solid var(--accent);
	box-shadow: var(--shadow);
}

.lotto-total {
	font-size: 2rem;
	font-weight: 800;
	color: var(--accent);
	margin-bottom: 2rem;
}

.lotto-button {
	background: linear-gradient(45deg, var(--accent), var(--success));
	color: white;
	padding: 1.2rem 3rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow);
}

.lotto-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-hover);
}

/* ========================================
   PARTY SECTION
   ======================================== */
.lotto-party-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 6rem 2rem;
}

.lotto-party-header h3 {
	font-size: 3rem;
	font-weight: 900;
	color: var(--secondary);
	margin-bottom: 4rem;
	border-left: 5px solid var(--secondary);
	padding-left: 2rem;
}

.lotto-party-header span {
	color: var(--danger);
}

.lotto-party-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-bottom: 4rem;
}

.lotto-party-card {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border: 3px solid var(--accent);
	border-radius: 25px;
	padding: 2.5rem;
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.lotto-party-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.lotto-party-card:hover::before {
	transform: rotate(45deg) translate(50%, 50%);
}

.lotto-party-card:hover {
	transform: translateY(-15px) scale(1.05);
	border-color: var(--secondary);
	box-shadow: var(--shadow-hover);
}

.lotto-party-card.selected {
	border-color: var(--danger);
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	transform: scale(1.05);
}

.party-img {
	height: 140px;
	background: linear-gradient(45deg, var(--secondary), var(--warning));
	border-radius: 20px;
	margin-bottom: 2rem;
	position: relative;
	box-shadow: var(--shadow);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.party-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

.party-img:hover img {
	transform: scale(1.1);
}

.party-details h4 {
	font-size: 1.5rem;
	color: var(--dark);
	margin-bottom: 1rem;
	font-weight: 800;
}

.party-details p {
	color: var(--gray);
	margin-bottom: 1rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.party-details strong {
	display: block;
	font-size: 1.4rem;
	color: var(--accent);
	margin-bottom: 1rem;
	font-weight: 800;
}

.party-details strong small {
	font-size: 0.9rem;
	color: var(--gray);
	font-weight: 500;
}

.party-details span {
	color: var(--primary);
	font-size: 1rem;
	margin-bottom: 1.5rem;
	display: block;
	font-weight: 600;
}

.lotto-party-total {
	font-size: 2rem;
	font-weight: 800;
	color: var(--secondary);
	text-align: center;
	margin: 3rem 0;
	padding: 2rem;
	background: white;
	border-radius: 20px;
	border: 3px solid var(--secondary);
	box-shadow: var(--shadow);
}

/* ========================================
   CHECKOUT SECTION
   ======================================== */
.lotto-checkout-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 6rem 2rem;
}

.lotto-checkout-header h1 {
	font-size: 3rem;
	font-weight: 900;
	color: var(--primary);
	text-align: center;
	margin-bottom: 3rem;
	border-bottom: 4px solid var(--primary);
	padding-bottom: 1rem;
}

.lotto-checkout-body {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.lotto-checkout-form {
	background: white;
	border: 3px solid var(--primary);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: var(--shadow);
}

.lotto-checkout-form input,
.lotto-checkout-form select {
	width: 100%;
	padding: 1rem 1.5rem;
	background: white;
	border: 2px solid var(--border);
	border-radius: 15px;
	color: var(--dark);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.lotto-checkout-form input:focus,
.lotto-checkout-form select:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.lotto-checkout-form input::placeholder {
	color: var(--gray);
}

.lotto-payment-box {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	margin-top: 2rem;
}

.lotto-payment-box p {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.lotto-amount {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--secondary);
	margin-bottom: 2rem;
	text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.payment-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.clear-cart-btn {
	background: var(--gray);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.clear-cart-btn:hover {
	background: var(--gray-light);
	transform: translateY(-3px);
}

.lotto-pay-btn {
	background: linear-gradient(45deg, var(--secondary), var(--warning));
	color: white;
	border: none;
	border-radius: 50px;
	padding: 1.2rem 3rem;
	font-size: 1.2rem;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow);
}

.lotto-pay-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: var(--shadow-hover);
}

.lotto-ticket-summary {
	background: white;
	border: 3px solid var(--accent);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: var(--shadow);
}

.lotto-ticket-summary h3 {
	font-size: 1.8rem;
	color: var(--accent);
	margin-bottom: 2rem;
	text-align: center;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 1rem;
}

.lotto-ticket-row {
	margin-bottom: 2rem;
}

.lotto-ticket-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.lotto-ticket-numbers span {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.2rem;
	box-shadow: var(--shadow);
}

.lotto-ticket-numbers .powerball {
	background: linear-gradient(135deg, var(--secondary), var(--warning));
	border: 3px solid var(--secondary);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.lucky-benefits {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 6rem 2rem;
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.benefits-heading {
	font-size: 3rem;
	font-weight: 900;
	color: white;
	margin-bottom: 5rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.benefits-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.15);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	padding: 3rem 2rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.benefit-card:hover::before {
	transform: rotate(45deg) translate(50%, 50%);
}

.benefit-card:hover {
	transform: translateY(-15px) scale(1.05);
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.benefit-icon-new {
	font-size: 3rem;
	margin-bottom: 2rem;
	color: var(--secondary);
	text-shadow: 0 0 20px var(--secondary);
}

.benefit-card p {
	color: white;
	line-height: 1.7;
	font-size: 1.1rem;
	font-weight: 500;
}

/* ========================================
   FOOTER
   ======================================== */
.lotto-footer {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	color: rgba(255, 255, 255, 0.8);
	padding: 5rem 2rem 3rem;
	border-top: 3px solid var(--primary);
}

.lotto-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.lotto-footer-left, .lotto-footer-right {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.lotto-logo-link {
	font-size: 2rem;
	font-weight: 900;
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.lotto-logo-link:hover {
	color: var(--secondary);
	transform: scale(1.05);
}

.lotto-footer-info h2 {
	color: white;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 700;
}

.lotto-footer-info .lotto-info-title {
	color: white;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 700;
}

.lotto-footer-info p {
	margin-bottom: 1.5rem;
	line-height: 1.7;
	font-size: 1rem;
}

.lotto-footer-info a {
	color: var(--primary);
	text-decoration: none;
	border-bottom: 2px dashed var(--primary);
	transition: all 0.3s ease;
}

.lotto-footer-info a:hover {
	color: var(--secondary);
	border-bottom-color: var(--secondary);
}

.lotto-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
}

.lotto-badges a {
	text-decoration: none;
	outline: none;
}

.lotto-badges a:focus {
	outline: none;
}

.lotto-badges img {
	height: 50px;
	width: auto;
	border-radius: 10px;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lotto-badges img:hover {
	transform: scale(1.1);
}

.lotto-age-badge {
	background: var(--accent);
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	font-weight: 800;
	font-size: 1rem;
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.lotto-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.lotto-footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.lotto-footer-links a:hover {
	color: var(--primary);
}

.lotto-footer-copy {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
	padding-top: 3rem;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.mpz-scroll-top {
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, var(--primary), var(--primary-dark));
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
	font-size: 1.5rem;
	font-weight: 800;
}

.mpz-scroll-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: var(--shadow-hover);
}

/* ========================================
   CART ITEM STYLES
   ======================================== */
.cart-item {
	background: white;
	border: 2px solid var(--border);
	border-radius: 15px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.cart-item:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
}

.cart-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.cart-item-header h4 {
	color: var(--primary);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
}

.remove-item-btn {
	background: var(--danger);
	color: white;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 1.2rem;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remove-item-btn:hover {
	background: #dc2626;
	transform: scale(1.1);
}

.cart-item-details p {
	margin-bottom: 0.5rem;
	color: var(--gray);
	font-size: 0.95rem;
}

.cart-item-details strong {
	color: var(--dark);
	font-weight: 600;
}

/* ========================================
   SUCCESS MESSAGE STYLES
   ======================================== */
.success-message {
	text-align: center;
	padding: 3rem;
	background: linear-gradient(135deg, var(--success), var(--accent));
	color: white;
	border-radius: 25px;
	box-shadow: var(--shadow);
}

.success-message h2 {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.success-message p {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.success-message .lotto-btn {
	background: white;
	color: var(--success);
	margin-top: 2rem;
}

.success-message .lotto-btn:hover {
	background: var(--gray-lighter);
	transform: translateY(-3px);
}

/* ========================================
   EMPTY CART STYLES
   ======================================== */
.lotto-ticket-summary h3 {
	color: var(--gray);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.lotto-ticket-summary p {
	color: var(--gray);
	line-height: 1.6;
}

.lotto-ticket-summary a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.lotto-ticket-summary a:hover {
	color: var(--primary-dark);
}

/* ========================================
   CART COUNT ANIMATION
   ======================================== */
.cart-count {
	animation: cartPulse 0.6s ease-in-out;
}

@keyframes cartPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes popIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes glow {
	0% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
	100% { filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.5)); }
}

@keyframes float {
	0% { transform: translateY(0px); }
	100% { transform: translateY(-20px); }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
	.header-container {
		padding: 1rem;
	}
	
	.lucky-blast {
		padding: 5rem 1rem;
	}
	
	.blast-title {
		font-size: 2.5rem;
	}
	
	.timer-grid {
		flex-direction: column;
		gap: 1rem;
	}
	
	.divider {
		display: none;
	}
	
	.lotto-syndicate-options {
		grid-template-columns: 1fr;
	}
	
	.lotto-party-grid {
		grid-template-columns: 1fr;
	}
	
	.benefits-cards {
		grid-template-columns: 1fr;
	}
	
	.lotto-footer-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.lotto-options {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.time-unit {
		min-width: 80px;
		padding: 1.5rem 1rem;
	}
	
	.lotto-checkout-body {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 480px) {
	.age-gate-popup {
		padding: 2rem 1.5rem;
	}
	
	.lotto-syndicate-form {
		padding: 2rem 1.5rem;
	}
	
	.lotto-container {
		padding: 4rem 1rem;
	}
	
	.lotto-party-section {
		padding: 4rem 1rem;
	}
	
	.lucky-benefits {
		padding: 4rem 1rem;
	}
	
	.lotto-checkout-section {
		padding: 4rem 1rem;
	}
	
	.blast-title {
		font-size: 2rem;
	}
	
	.timer-wrapper {
		padding: 2rem 1.5rem;
	}
	
	.lotto-checkout-form {
		padding: 2rem 1.5rem;
	}
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--gray-lighter);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(45deg, var(--primary), var(--primary-dark));
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

/* ========================================
   FOCUS STYLES
   ======================================== */
button:focus,
input:focus,
select:focus,
a:focus {
	outline: 3px solid var(--primary);
	outline-offset: 2px;
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
	background: var(--primary);
	color: white;
}

/* ========================================
   MAIN CONTENT STYLES
   ======================================== */
.main-content {
	padding: 8rem 2rem 6rem;
	min-height: 60vh;
}

.content-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 25px;
	padding: 4rem;
	box-shadow: var(--shadow);
	border: 2px solid var(--primary);
}

.content-wrapper h1 {
	font-size: 3rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 2rem;
	text-align: center;
	border-bottom: 4px solid var(--primary);
	padding-bottom: 1rem;
}

.content-wrapper p {
	font-size: 1.2rem;
	color: var(--gray);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
	.lotto-age-gate,
	.fun-cookie-banner,
	.mpz-scroll-top {
		display: none !important;
	}
}

/* ========================================
   CONTINUE SHOPPING LINK STYLES
   ======================================== */
.continue-shopping-link {
	display: inline-block;
	background: linear-gradient(45deg, var(--primary), var(--primary-dark));
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
	margin-top: 1rem;
}

.continue-shopping-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	background: linear-gradient(45deg, var(--primary-dark), var(--primary));
}

/* ========================================
   DISABLED BUTTON STYLES
   ======================================== */
.lotto-pay-btn:disabled,
.clear-cart-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed !important;
	transform: none !important;
}

.lotto-pay-btn:disabled:hover,
.clear-cart-btn:disabled:hover {
	transform: none !important;
	box-shadow: var(--shadow) !important;
}

/* ========================================
   NOTIFICATION STYLES
   ======================================== */
.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: white;
	border-radius: 15px;
	padding: 1.5rem 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	transform: translateX(400px);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	max-width: 350px;
	border-left: 5px solid var(--primary);
}

/* Positioning for multiple notifications */
.notification:nth-child(2) {
	top: 90px;
}

.notification:nth-child(3) {
	top: 160px;
}

.notification:nth-child(4) {
	top: 230px;
}

.notification.show {
	transform: translateX(0);
}

.notification.success {
	border-left-color: var(--success);
}

.notification.warning {
	border-left-color: var(--warning);
}

.notification.error {
	border-left-color: var(--danger);
}

.notification.info {
	border-left-color: var(--primary);
}

.notification-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.notification-title {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--dark);
	margin: 0;
}

.notification-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--gray);
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.notification-close:hover {
	background: var(--gray-lighter);
	color: var(--dark);
}

.notification-message {
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

.notification-icon {
	font-size: 1.5rem;
	margin-right: 0.5rem;
}

/* Animations for notifications */
@keyframes notificationSlideIn {
	from {
		transform: translateX(400px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes notificationSlideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(400px);
		opacity: 0;
	}
}

.notification.slide-in {
	animation: notificationSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.slide-out {
	animation: notificationSlideOut 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Mobile styles for notifications */
@media (max-width: 768px) {
	.notification {
		top: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
		transform: translateY(-100px);
	}
	
	.notification.show {
		transform: translateY(0);
	}
	
	@keyframes notificationSlideIn {
		from {
			transform: translateY(-100px);
			opacity: 0;
		}
		to {
			transform: translateY(0);
			opacity: 1;
		}
	}
	
	@keyframes notificationSlideOut {
		from {
			transform: translateY(0);
			opacity: 1;
		}
		to {
			transform: translateY(-100px);
			opacity: 0;
		}
	}
}

/* ========================================
   LEGAL PAGES STYLES (Terms, Cookie Policy, Privacy Policy)
   ======================================== */

.main-content {
    padding: 80px 0 60px;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.main-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 2px;
}

/* Terms & Conditions Styles */
.terms-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.terms-section h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
}

.contact-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    border-left: 3px solid #10b981;
}

.contact-info p {
    margin-bottom: 8px;
    color: #374151;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.terms-footer {
    background: #1e293b;
    color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.terms-footer p {
    margin-bottom: 8px;
    color: #e2e8f0;
}

.terms-footer p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Cookie Policy Styles */
.cookie-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.cookie-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cookie-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.cookie-section h2::before {
    content: '🍪';
    margin-right: 12px;
    font-size: 1.2rem;
}

.cookie-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 20px 0 10px;
}

.cookie-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    margin: 15px 0 8px;
}

.cookie-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

.cookie-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.cookie-section li {
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
}

.cookie-type {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border-left: 3px solid #0ea5e9;
}

.cookie-detail {
    background: #fef3c7;
    border-radius: 8px;
    padding: 18px;
    margin: 12px 0;
    border-left: 3px solid #f59e0b;
}

.cookie-controls {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border-left: 3px solid #22c55e;
}

.cookie-footer {
    background: #10b981;
    color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.cookie-footer p {
    margin-bottom: 8px;
    color: #ffffff;
}

.cookie-footer p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Privacy Policy Styles */
.policy-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #8b5cf6;
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: '🔒';
    margin-right: 12px;
    font-size: 1.2rem;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 20px 0 15px;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    margin: 15px 0 8px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
}

.info-category {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border-left: 3px solid #0ea5e9;
}

.usage-purpose {
    background: #fef3c7;
    border-radius: 8px;
    padding: 18px;
    margin: 12px 0;
    border-left: 3px solid #f59e0b;
}

.sharing-scenario {
    background: #fef2f2;
    border-radius: 8px;
    padding: 18px;
    margin: 12px 0;
    border-left: 3px solid #ef4444;
}

.user-rights {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 18px;
    margin: 12px 0;
    border-left: 3px solid #22c55e;
}

.policy-footer {
    background: #8b5cf6;
    color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.policy-footer p {
    margin-bottom: 8px;
    color: #ffffff;
}

.policy-footer p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 0 40px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .main-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .terms-section,
    .cookie-section,
    .policy-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .terms-section h2,
    .cookie-section h2,
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-info,
    .cookie-type,
    .cookie-detail,
    .cookie-controls,
    .info-category,
    .usage-purpose,
    .sharing-scenario,
    .user-rights {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-section,
    .cookie-section,
    .policy-section {
        padding: 15px;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
}
