:root { 
	--bg: #fff; 
	--text: #1f2937; 
	--muted: #6b7280; 
	--brand: #9b5de5; 
	--brand-2: #f15bb5;
	--nav-bg: rgba(0, 0, 0, 0.1);
	--nav-text: #ffffff;
	--countdown-text: #fff;
	--title-color: #fbbf24;
}

* { box-sizing: border-box; }

body { 
	margin: 0; 
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	color: var(--text); 
	background: var(--bg); 
	line-height: 1.6; 
	overflow-x: hidden;
}

/* Container principal */
.hero-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
}

.hero-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

/* Hero Background */
.hero-background {
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	display: flex;
	flex-direction: column;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

/* Header Navigation */
.hero-header {
	position: relative;
	z-index: 10;
	padding: 20px 0;
	background: var(--nav-bg);
	backdrop-filter: blur(10px);
}

.hero-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
	padding: 0 20px;
}

.nav-link {
	color: var(--nav-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	transform: translateY(-2px);
}

.nav-dropdown {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
}

.chevron {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.nav-dropdown:hover .chevron {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	padding: 10px 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--text);
	text-decoration: none;
	transition: background 0.3s ease;
}

.dropdown-menu a:hover {
	background: rgba(0, 0, 0, 0.1);
}

/* Hero Content */
.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 40px 20px;
	position: relative;
	z-index: 10;
}

.hero-title {
	font-size: clamp(48px, 8vw, 80px);
	font-weight: 900;
	color: var(--title-color);
	margin: 0 0 40px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	letter-spacing: 2px;
}

/* Countdown Timer */
.countdown-timer {
	color: var(--countdown-text);
	text-align: center;
	margin-top: 20px;
}

.countdown-days {
	margin-bottom: 30px;
}

.countdown-number {
	font-size: clamp(60px, 12vw, 120px);
	font-weight: 900;
	display: block;
	line-height: 1;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-label {
	font-size: clamp(16px, 3vw, 24px);
	font-weight: 600;
	display: block;
	margin-top: 5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.countdown-time {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.countdown-item {
	text-align: center;
}

.countdown-item .countdown-number {
	font-size: clamp(40px, 6vw, 60px);
}

.countdown-item .countdown-label {
	font-size: clamp(12px, 2vw, 18px);
}

.countdown-until {
	font-size: clamp(14px, 2.5vw, 20px);
	font-weight: 500;
	opacity: 0.9;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.countdown-finished {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	color: var(--title-color);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-nav {
		gap: 20px;
		padding: 0 10px;
	}
	
	.nav-link {
		font-size: 14px;
		padding: 8px 12px;
	}
	
	.hero-content {
		padding: 20px 10px;
	}
	
	.countdown-time {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.hero-nav {
		flex-direction: column;
		gap: 10px;
	}
	
	.countdown-time {
		flex-direction: column;
		gap: 15px;
	}
}

/* Legacy styles for other pages */
.container { max-width: 960px; margin: 0 auto; padding: 24px; }
.hero { background: linear-gradient(135deg,var(--brand),var(--brand-2)); color:#fff; }
.hero__inner { padding: 64px 24px; text-align:center; }
.hero__title { font-size: clamp(36px, 6vw, 64px); margin: 0 0 8px; }
.hero__subtitle { margin: 0 0 24px; color:#fef3c7; }
.button { display:inline-block; background:#fff; color:#111827; padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:600; }
.grid { display:grid; gap:16px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
label, fieldset { display:block; margin: 12px 0; }
input, textarea, select { width:100%; padding:10px; border:1px solid #e5e7eb; border-radius:6px; font: inherit; }
button.button, .button.button { background: var(--brand); color:#fff; border:0; cursor:pointer; }
