@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00ffff;
	--secondary: #ff00ff;
	--accent: #7c3aed;
	--dark: #0a0a0f;
	--darker: #050508;
	--light: #ffffff;
	--gray: #ffffffbe;
	--success: #00ff88;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: var(--dark);
	color: var(--light);
	overflow-x: hidden;
	line-height: 1.6;
}

p a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

p a:hover {
	color: var(--success);
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Background Animation */


.neural-network {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.1;
}

.node {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--primary);
	border-radius: 50%;
	animation: pulse 4s infinite;
}

.connection {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, var(--primary), transparent);
	animation: flow 6s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.3;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

@keyframes flow {
	0% {
		opacity: 0;
		transform: scaleX(0);
	}

	50% {
		opacity: 1;
		transform: scaleX(1);
	}

	100% {
		opacity: 0;
		transform: scaleX(0);
	}
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 15, 0);
	backdrop-filter: blur(20px);
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
		0 5px 30px rgba(0, 0, 0, 0.3);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: translateY(-2px);
}

.logo-icon {
	width: 40px;
	height: 40px;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 0.5rem;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.6rem 1.2rem;
	border-radius: 25px;
	font-weight: 500;
	font-size: 0.95rem;
	background: transparent;
}

.nav-links a:hover {
	color: var(--light);
	background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
	color: var(--dark);
	background: linear-gradient(45deg, var(--primary), var(--accent));
	font-weight: 600;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
	opacity: 0;
}

.nav-links a:hover::after {
	width: 30px;
	opacity: 1;
}

.nav-links a.active::after {
	display: none;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
	padding: 0.5rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.mobile-menu:hover {
	background: rgba(255, 255, 255, 0.05);
}

.mobile-menu span {
	width: 25px;
	height: 2px;
	background: var(--light);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.mobile-menu.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(20, 20, 30, 0.98));
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding-top: 80px;
}

.mobile-nav.active {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.mobile-nav a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 1.2rem;
	margin: 0.5rem 0;
	padding: 1rem 2rem;
	border-radius: 30px;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	min-width: 250px;
	text-align: center;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.mobile-nav a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
	left: 100%;
}

.mobile-nav a:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 255, 255, 0.3);
	color: var(--primary);
	transform: scale(1.02);
}

.mobile-nav a.active {
	background: linear-gradient(45deg, var(--primary), var(--accent));
	color: var(--dark);
	font-weight: 600;
	border-color: transparent;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 60px 40px;
	margin-top: 90px;
	z-index: 2;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1rem;
	background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
	}

	to {
		filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
	}
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary);
	display: block;
}

.stat-label {
	color: var(--gray);
	font-size: 0.9rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(60deg, #a504ce, #ffcdfc, #c60388);
	color: var(--dark);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(191, 253, 253, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--light);
	border: 2px solid var(--primary);
}

.btn-secondary:hover {
	background: var(--primary);
	color: var(--dark);
}

/* Countdown */
.countdown {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin: 1rem 0;
	flex-wrap: wrap;
}

.countdown-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 1rem;
	border-radius: 15px;
	border: 1px solid rgba(0, 255, 255, 0.2);
}

.countdown-number {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary);
	display: block;
}

.countdown-label {
	color: var(--gray);
	font-size: 0.8rem;
}

.section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	text-align: center;
	margin-bottom: 2rem;
	background: linear-gradient(45deg, var(--primary), var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.about-content {
	align-items: center;
	margin-bottom: 3rem;
}

.about-text {
	font-size: 1.1rem;
	color: var(--gray);
	position: relative;
}

.about-text p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.about-text::before {
	content: '';
	position: absolute;
	left: -2rem;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary), var(--secondary));
	border-radius: 2px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
	margin-bottom: 5rem;
}

.about-stat {
	align-items: center;
	background: rgb(255 255 255 / 9%);
	backdrop-filter: blur(10px);
	padding: 0.8rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid #00ffff;
	box-shadow: 5px 6px 0px rgb(0 255 255);
}

.about-stat:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.about-stat-number {
	font-size: 1rem;
	font-weight: bold;
	color: var(--primary);
	display: block;
	margin-bottom: 0.5rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(45deg,#000000);
	padding: 18px 12px;
}

.about-stat-label {
	color: var(--gray);
	font-size: 0.9rem;
	text-align: center;
	letter-spacing: 1px;
}

.about-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.whoabout-text {
	font-size: 1.1rem;
	color: var(--gray);
	position: relative;
}

.whoabout-text p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.whoabout-text::before {
	content: '';
	position: absolute;
	left: -2rem;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary), var(--secondary));
	border-radius: 2px;
}

.whoabout-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 5rem;
}

.whoabout-stat {
	align-items: center;
	background: rgb(255 255 255 / 9%);
	backdrop-filter: blur(10px);
	padding: 0.8rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid #00ffff;
	box-shadow: -5px 5px 0px rgb(0 255 255);
}

.whoabout-stat:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.whoabout-stat-number {
	font-size: 1rem;
	font-weight: bold;
	color: var(--primary);
	display: block;
	margin-bottom: 0.5rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(45deg,#000000);
	padding: 18px 12px;
}

.whoabout-stat-label {
	color: var(--gray);
	font-size: 0.9rem;
	text-align: center;
	letter-spacing: 1px;
}

.whoabout-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.blockchain-visual {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding: 2rem;
	justify-items: center;
	position: relative;
}

.blockchain-visual::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	border: 2px dashed rgba(0, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.block {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	font-weight: bold;
	font-size: 0.9rem;
	animation: hexPulse 8s infinite;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.block::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: hexShine 6s infinite;
}

.block:nth-child(odd) {
	animation-delay: -4s;
}

.block:nth-child(even) {
	animation-delay: -2s;
}

@keyframes hexPulse {

	0%,
	100% {
		transform: scale(1) rotate(0deg);
		box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
	}

	50% {
		transform: scale(1.1) rotate(180deg);
		box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
	}
}

@keyframes hexShine {
	0% {
		left: -100%;
	}

	50% {
		left: 100%;
	}

	100% {
		left: -100%;
	}
}

/* Hexagonal decorative elements */
.hex-decoration {
	position: absolute;
	width: 30px;
	height: 30px;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	opacity: 0.1;
	animation: hexFloat 12s infinite;
}

@keyframes hexFloat {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

.sponsors-section {
	border-radius: 20px;
	padding: 3rem;
	margin: 2rem 0;
	position: relative;
	overflow: hidden;
}

.sponsors-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.6;
}

.sponsor-tiers {
	display: grid;
	gap: 3rem;
	position: relative;
	z-index: 2;
}

.sponsor-tier {
	text-align: center;
}

.tier-title {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.tier-title.platinum {
	background: linear-gradient(45deg, #e5e7eb, #ffffff, #e5e7eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;

}

.tier-title.gold {
	background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tier-title.silver {
	background: linear-gradient(45deg, #9ca3af, #d1d5db, #9ca3af);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tier-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	border-radius: 2px;
}

.sponsors-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
	justify-items: center;
}

.sponsors-grid.platinum {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.sponsors-grid.gold {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sponsors-grid.silver {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsor-card {
	background: rgba(255, 255, 255, 0);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.sponsor-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.sponsor-card:hover::before {
	left: 100%;
}

.sponsor-card.platinum {
	border-color: rgba(229, 231, 235, 0.3);
	max-width: 350px;
}

.sponsor-card.platinum:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: #e5e7eb00;
	box-shadow: 0 25px 50px rgba(229, 231, 235, 0.25);
}

.sponsor-card.gold {
	border-color: rgba(251, 191, 36, 0.3);
	max-width: 300px;
}

.sponsor-card.gold:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: #fbbf24;
	box-shadow: 0 20px 40px rgba(251, 191, 36, 0.25);
}

.sponsor-card.silver {
	border-color: rgba(156, 163, 175, 0.3);
	max-width: 250px;
}

.sponsor-card.silver:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: #9ca3af;
	box-shadow: 0 15px 30px rgba(156, 163, 175, 0.25);
}

.sponsor-logo {
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	font-weight: bold;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.sponsor-card.platinum .sponsor-logo {
	width: 140px;
	height: 140px;
	background: linear-gradient(135deg, #f3f4f6, #ffffff, #e5e7eb);
	font-size: 2.2rem;
	box-shadow: 0 10px 30px rgba(229, 231, 235, 0.3);
}

.sponsor-card.gold .sponsor-logo {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
	font-size: 2rem;
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.sponsor-card.silver .sponsor-logo {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #9ca3af, #d1d5db, #6b7280);
	font-size: 1.8rem;
	box-shadow: 0 6px 20px rgba(156, 163, 175, 0.3);
}

.sponsor-name {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 0.8rem;
	color: var(--light);
}

.sponsor-card.platinum .sponsor-name {
	font-size: 1.6rem;
}

.sponsor-description {
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.5;
	font-style: italic;
}

.sponsor-card.platinum .sponsor-description {
	font-size: 1rem;
}

/* Simple Registration Section */
.register-section {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(255, 0, 255, 0.08));
	border-radius: 20px;
	padding: 4rem 2rem;
	margin: 2rem auto;
	max-width: 600px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.register-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent 40%);
	animation: rotate 20s linear infinite;
}

.register-content {
	position: relative;
	z-index: 2;
}

.register-title {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.register-subtitle {
	color: var(--gray);
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.email-form {
	display: flex;
	gap: 1rem;
	max-width: 450px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.email-input {
	flex: 1;
	min-width: 250px;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	color: var(--light);
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.email-input::placeholder {
	color: var(--gray);
}

.email-input:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.submit-btn {
	padding: 1rem 2.5rem;
	background: linear-gradient(45deg, var(--primary), var(--accent));
	border: none;
	border-radius: 50px;
	color: var(--dark);
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.submit-btn:active {
	transform: translateY(-1px);
}

.form-message {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 10px;
	display: none;
	animation: slideIn 0.4s ease;
}

.form-message.success {
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.3);
	color: var(--success);
}

.form-message.error {
	background: rgba(255, 0, 0, 0.1);
	border: 1px solid rgba(255, 0, 0, 0.3);
	color: #ff6b6b;
}

.contact-info-section {
	margin-top: 3rem;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	align-items: stretch;
	border:2px solid #00ffff55;
}

.contact-form-column {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 0px;
	border: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-form-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.form-row {
	display: flex;
	gap: 20px;
	width: 100%;
}

.form-row .form-field {
	flex: 1;
}

@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
	}
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-field label {
	color: var(--light);
	font-size: 0.9rem;
	font-weight: 500;
}

.form-field input,
.form-field textarea {
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	color: var(--light);
	font-size: 0.95rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.form-field textarea {
	resize: vertical;
	min-height: 50px;
}

.contact-submit-btn {
	padding: 0.8rem 2rem;
	background: linear-gradient(45deg, #00ffff);
	border: none;
	border-radius: 10px;
	color: var(--dark);
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
	width: fit-content;
}

.contact-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(170, 250, 250, 0.377);
}

.contact-info-column {
	background: linear-gradient(45deg,#000000,#5a0b84,#000000);
	padding: 30px 20px;
	border-radius: 0px;
}

.contact-info-title {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 2rem;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-info-grid {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(238deg, #0000007d, #7a1ba3, #0000008a);
	padding: 10px 5px;
	border-radius: 15px;
}

.contact-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(45deg, var(--primary), var(--accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon svg {
	width: 22px;
	height: 22px;
	fill: var(--dark);
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.contact-label {
	font-size: 0.85rem;
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-value {
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.4;
}

.contact-value a {
	color: var(--gray);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-value a:hover {
	color: var(--primary);
}

@media (max-width: 768px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-form-column {
		padding: 1.5rem;
	}

	.contact-info-column {
		background: rgba(255, 255, 255, 0.05);
		border-radius: 0px;
		border: 1px solid rgba(0, 255, 255, 0.1);
	}
}

.particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 2px;
	height: 2px;
	background: var(--primary);
	border-radius: 50%;
	animation: float 10s infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(100vh) translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100px) translateX(100px);
		opacity: 0;
	}
}

/* Scroll-triggered animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

.animate-on-scroll.slide-left {
	transform: translateX(-50px);
}

.animate-on-scroll.slide-left.animated {
	transform: translateX(0);
}

.animate-on-scroll.slide-right {
	transform: translateX(50px);
}

.animate-on-scroll.slide-right.animated {
	transform: translateX(0);
}

.animate-on-scroll.scale-up {
	transform: scale(0.8);
}

.animate-on-scroll.scale-up.animated {
	transform: scale(1);
}

.stagger-animation {
	animation-delay: calc(var(--stagger) * 0.1s);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-menu {
		display: flex;
	}

	.hero-stats {
		gap: 1.5rem;
	}

	.countdown {
		gap: 0.5rem;
	}

	.countdown-item {
		min-width: 70px;
		padding: 0.8rem 0.5rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.btn {
		width: 100%;
		max-width: 280px;
	}

	.about-content {
		text-align: center;
	}

	.about-text::before {
		display: none;
	}

	.about-stats {
		grid-template-columns: repeat(1, 1fr);
		gap: 1rem;
	}

	.whoabout-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.blockchain-visual {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
		padding: 1.5rem;
	}

	.block {
		width: 60px;
		height: 60px;
		font-size: 0.8rem;
	}

	.timeline-header {
		grid-template-columns: 1fr;
		gap: 0.8rem;
		padding: 1rem;
	}

	.timeline-time {
		width: 100%;
		text-align: center;
	}

	.timeline-info {
		text-align: center;
	}

	.sponsors-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.sponsors-section {
		padding: 2rem 1rem;
		margin: 1rem 0;
	}

	.sponsor-tiers {
		gap: 2rem;
	}

	.tier-title {
		font-size: 1.4rem;
	}

	.sponsors-grid.platinum,
	.sponsors-grid.gold,
	.sponsors-grid.silver {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.sponsor-card {
		padding: 1.5rem;
		max-width: none;
	}

	.sponsor-card.platinum .sponsor-logo,
	.sponsor-card.gold .sponsor-logo,
	.sponsor-card.silver .sponsor-logo {
		width: 80px;
		height: 80px;
		font-size: 1.4rem;
	}

	.sponsor-name {
		font-size: 1.1rem;
	}

	.sponsor-description {
		font-size: 0.8rem;
	}
}

@media (max-width: 600px) {
	.whoabout-stats {
		grid-template-columns: 1fr !important;
	}
}


.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background: radial-gradient(circle at 15% 85%, rgba(75, 0, 130, 0.7) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgb(50 2 75 / 80%) 0%, transparent 50%), radial-gradient(circle at 45% 60%, rgba(128, 0, 128, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 40%, rgba(34, 139, 34, 0.4) 0%, transparent 50%), linear-gradient(135deg, #0a0a0a 0%, #2d1b3d 50%, #000000 100%);
	animation: backgroundPulse 14s ease-in-out infinite;
}

@keyframes backgroundPulse {

	0%,
	100% {
		filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
	}

	33% {
		filter: brightness(1.1) saturate(1.7) hue-rotate(15deg);
	}

	66% {
		filter: brightness(1.0) saturate(1.5) hue-rotate(-10deg);
	}
}

/* Floating geometric shapes */
.geometric-shapes {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 1px solid rgba(0, 255, 255, 0.3);
	animation: floatShape 20s linear infinite;
}

.shape:nth-child(1) {
	width: 100px;
	height: 100px;
	left: 10%;
	animation-delay: 0s;
	border-color: rgba(255, 105, 180, 0.4);
}

.shape:nth-child(2) {
	width: 60px;
	height: 60px;
	left: 70%;
	animation-delay: -5s;
	border-radius: 50%;
	border-color: rgba(147, 112, 219, 0.4);
}

.shape:nth-child(3) {
	width: 80px;
	height: 80px;
	left: 30%;
	animation-delay: -10s;
	transform: rotate(45deg);
	border-color: rgba(224, 163, 255, 0.4);
}

.shape:nth-child(4) {
	width: 120px;
	height: 120px;
	left: 50%;
	animation-delay: -15s;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), transparent);
}

@keyframes floatShape {
	from {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}

	10%,
	90% {
		opacity: 1;
	}

	to {
		transform: translateY(-100px) rotate(360deg);
		opacity: 0;
	}
}

.bg-trans {
	background: transparent;
}

.brand-logo {
	height: 50px;
	width: auto;
	filter: drop-shadow(0 0 6px rgba(255, 144, 255, 0.4));
}

.hero-logo img {
	width: 400px;
	height: auto;
	display: block;
	margin: 0 auto 20px;
	filter: drop-shadow(0 0 12px rgba(129, 2, 112, 0.4));
}

.hero-subtitle {
	font-size: 1.2rem;
	color: #e0a3ff;
	margin-top: 15px;
	margin-bottom: 20px;
	opacity: 0;
	animation: slideInFromLeft 1.2s ease 0.3s forwards;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	position: relative;
	display: inline-block;
	font-weight: 400;
	text-align: left;
}

.hero-subtitle::before,
.hero-subtitle::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 40px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e0a3ff, transparent);
	animation: linePulse 3s ease infinite;
}

.hero-subtitle::before {
	left: -60px;
}

.hero-subtitle::after {
	right: -60px;
}

@keyframes linePulse {

	0%,
	100% {
		opacity: 0.4;
		transform: scaleX(0.8);
	}

	50% {
		opacity: 1;
		transform: scaleX(1.2);
	}
}

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.mt-3 {
	margin-top: 30px;
}
.mt-2 {
	margin-top: 20px;
}
.mb-5{
	margin-bottom: 5rem;
}
.hero-content-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 480px;
}

.hero-content-right {
	flex: 1;
	display: none;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

.hero-logo-right img {
	width: 500px;
	height: auto;
	filter: drop-shadow(0 0 12px rgba(129, 2, 112, 0.4));
}

@media (max-width: 768px) {
	.hero-content-left {
		padding: 0 20px;
		align-items: center;
		text-align: center;
	}
}

@media (min-width: 992px) {
	.hero-content-right {
		display: flex;
	}
}

.event-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-radius: 15px;
	align-items: flex-start;
}

.hero p {
	font-size: 1.2rem;
	color: var(--gray);
	margin-bottom: 0.3rem;
}

.event-info p i {
	margin-right: 10px;
}

.event-info i {
	color: #ffffff;
	text-align: left;
}

.abouteve {
	font-style: italic;
	letter-spacing: 2px;
}

small {
	font-size: 20px;
	color: #ffffff;
}

.animated-footer {
	color: #ddd;
	padding: 60px 20px 30px;
	box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3),
		0 -5px 30px rgba(0, 0, 0, 0.3);
	background: rgba(10, 10, 15, 0);
	backdrop-filter: blur(20px);
	background-image:
		radial-gradient(ellipse at top right, rgba(249, 36, 235, 0.358), #1b0121a9 60%), radial-gradient(ellipse at bottom left, rgb(231 135 250 / 30%), #1f013591 60%);
	animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
	0% {
		filter: brightness(1);
	}

	50% {
		filter: brightness(1.2);
	}

	100% {
		filter: brightness(1);
	}
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 0 40px;
}

.footer-col {
	min-width: 250px;
	max-width: 350px;
	flex: 1;
}


.footer-logos {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	flex-direction: column;
	margin-bottom: 20px;
}

.footer-logo1 {
	width: 40px;
	height: auto;
}

.footer-logo2 {
	width: 100px;
	height: auto;
}

.footer-desc {
	color: #ccc;
	line-height: 1.7;
	margin-bottom: 25px;
	max-width: 350px;
}

.footer-social a {
	display: inline-block;
	margin-right: 15px;
	font-size: 20px;
	color: #4afff0;
	transition: 0.3s;
}

.footer-social a:hover {
	color: #49e8fa;
}

.footer-col h3 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 22px;
}

.footer-links,
.footer-contact,
.footer-contact1 {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 12px;
	text-align: center;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: #41fff5;
}

.footer-contact li {
	margin-bottom: 5px;
	font-size: 16px;
}

.footer-contact i {
	margin-right: 10px;
	color: #00fff2;
}

.footer-contact1 i {
	margin-right: 10px;
	color: #00fff2;
}

.footer-contact1 {
	margin-top: 30px;
	font-size: 16px;
}

.footer-bottom {
	text-align: center;
	padding: 15px 0;
	font-size: 15px;
	color: #bbb;
	background-color: #300237;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		gap: 30px;
		text-align: left;
	}
}

.speaker-section {
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}

.speaker-container {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.speaker-content p{
	margin-top: 18px;
}
.speaker-card {
	text-align: center;
	padding: 15px 20px;
	border-radius: 25px;
	background: linear-gradient(45deg,#2e0742,#000000);
	border:2px solid #00ffff;
}
.speaker-img {
	width: 200px;
	height: 200px;
	margin: auto;
	margin-bottom: 12px;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 3px 3px 0px rgb(90 0 128);
}

.speaker-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: linear-gradient(180deg,#6b0766,#000000);
	transition: transform 0.4s ease;
}
.speaker-img img:hover {
    transform: scale(1.08);
}
.speaker-card h3 {
	font-size: 20px;
	margin-top: 5px;
	color: #ffffff;
	font-weight: 600;
}

.speaker-card strong {
	font-size: 16px;
	color: #00fffe;
	opacity: 0.85;
}

@media (max-width: 1200px) {
    .speaker-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .speaker-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .speaker-container {
        grid-template-columns: 1fr;
    }
}

.awards-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 35px;
}

.award-card {
	background: linear-gradient(45deg,#100039,#40050533,#000000);
	border:2px solid #00ffff;
	box-shadow: 0 0 20px rgba(199, 139, 255, 0.4);
	border-radius: 8px;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	cursor: pointer;
	position: relative;
	padding: 5px;
}
.award-card img {
	width: 100%;
	height: 200px;
	object-fit: contain;
}

.award-card h3 {
	padding: 18px 20px;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
}

.award-card:hover {
	transform: translateY(-3px);
}

a{
	text-decoration: none;
	color: #ffffff;
}

.pricing-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.pricing-card {
    text-align: center;
    padding: 50px 40px;
    border-radius: 15px;
    background: linear-gradient(309deg, #4a0163, #000000);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 15px 35px rgba(201, 248, 245, 0.354);
	border: 2px solid #00ffff;
}

.pricing-card h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 6px;
    text-align: center;
    background: linear-gradient(45deg, #022b5b, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.pricing-type{
	background: linear-gradient(45deg, #ffffff);
	border-radius: 10px;
	padding: 10px 5px;
}
.date {
    font-size: 0.9rem;
    color: #98e2fc;
	margin-top: 20px;
    margin-bottom: 25px;
}

.separator {
    width: 100%;
    height: 2px;
    margin: 25px 0 25px;
    background: linear-gradient(to right, #c17aff, #6b5bff);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
	color: #ffffff;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #aaaaaa;
}

.desc {
    font-size: 1rem;
    margin-bottom: 35px;
    color: #f3f3f3;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(45deg, #00ffff);
    color: #000000;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #4c02a0;
	color: #ffffff;
}