@charset "utf-8";
/* CSS Document 

TemplateMo 601 Chain Summit

https://templatemo.com/tm-601-chain-summit

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #67e8f9;
	--secondary: #f472b6;
	--accent: #f6c177;
	--dark: #080812;
	--darker: #04050b;
	--light: #ffffff;
	--gray: #b7b4c7;
	--success: #00ff88;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: radial-gradient(circle at 20% 0%, rgba(103, 232, 249, 0.08), transparent 36%),
		radial-gradient(circle at 80% 12%, rgba(244, 114, 182, 0.09), transparent 34%),
		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 */
.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	background: linear-gradient(45deg, var(--dark) 0%, var(--darker) 50%, var(--dark) 100%);
}

.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.9);
	backdrop-filter: blur(20px);
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 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-mark {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(244, 114, 182, 0.2);
	box-shadow: 0 0 24px rgba(244, 114, 182, 0.14);
}

.logo-icon {
	width: 38px;
	height: 38px;
	object-fit: contain;
	display: block;
}

.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 {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
	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 p {
	font-size: 1.2rem;
	color: var(--gray);
	margin-bottom: 2rem;
}

.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;
	line-height: 1.2;
	text-align: center;
}

.btn-primary {
	background: linear-gradient(45deg, var(--primary), var(--accent));
	color: var(--dark) !important;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--light) !important;
	border: 2px solid var(--primary);
}

.btn-secondary:hover {
	background: var(--primary);
	color: var(--dark) !important;
}

/* Countdown */
.countdown {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin: 3rem 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 Styles */
.section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 3rem;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Enhanced About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	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(2, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.about-stat {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 1.5rem;
	border-radius: 15px;
	text-align: center;
	border: 1px solid rgba(0, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.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: 2rem;
	font-weight: bold;
	color: var(--primary);
	display: block;
	margin-bottom: 0.5rem;
}

.about-stat-label {
	color: var(--gray);
	font-size: 0.9rem;
}

.about-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);
	}
}

/* Speakers Section */
.speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.speaker-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 255, 255, 0.1);
}

.speaker-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
	border-color: var(--primary);
}

.speaker-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--dark);
}

.speaker-name {
	font-size: 1.3rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.speaker-title {
	color: var(--primary);
	margin-bottom: 1rem;
}

.speaker-bio {
	color: var(--gray);
	font-size: 0.9rem;
}

/* Compact Schedule Section */
.schedule-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 0.8rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	color: var(--gray);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	backdrop-filter: blur(10px);
}

.tab-btn.active {
	background: linear-gradient(45deg, var(--primary), var(--accent));
	color: var(--dark);
	border-color: transparent;
	transform: scale(1.05);
}

.schedule-content {
	display: none;
}

.schedule-content.active {
	display: block;
	animation: slideIn 0.4s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.timeline {
	display: grid;
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.timeline-item {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	border: 1px solid rgba(0, 255, 255, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.timeline-item:hover {
	border-color: var(--primary);
	box-shadow: 0 5px 20px rgba(0, 255, 255, 0.15);
}

.timeline-header {
	padding: 1.2rem;
	cursor: pointer;
	display: grid;
	grid-template-columns: 120px 1fr auto;
	gap: 1rem;
	align-items: center;
	background: rgba(255, 255, 255, 0.02);
	transition: background 0.3s ease;
}

.timeline-header:hover {
	background: rgba(0, 255, 255, 0.05);
}

.timeline-time {
	color: var(--primary);
	font-weight: bold;
	font-size: 0.9rem;
	text-align: center;
	background: rgba(0, 255, 255, 0.1);
	padding: 0.5rem;
	border-radius: 8px;
	border: 1px solid rgba(0, 255, 255, 0.2);
}

.timeline-info {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.timeline-title {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--light);
	margin: 0;
}

.timeline-speaker {
	color: var(--primary);
	font-size: 0.9rem;
	font-weight: 500;
}

.timeline-collapse-icon {
	font-size: 1rem;
	transition: transform 0.3s ease;
	color: var(--primary);
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 255, 0.1);
	border-radius: 50%;
}

.timeline-item.expanded .timeline-collapse-icon {
	transform: rotate(180deg);
	background: var(--primary);
	color: var(--dark);
}

.timeline-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 1.2rem;
}

.timeline-item.expanded .timeline-details {
	max-height: 150px;
	padding: 0 1.2rem 1.2rem;
}

.timeline-desc {
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.6;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Sponsors Section - New Design */
.sponsors-section {
	background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
	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;
	background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1), transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.1), transparent 50%);
	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.08);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.4s ease;
	border: 2px solid rgba(255, 255, 255, 0.1);
	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: #e5e7eb;
	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 */
.contact-info-section {
	margin-top: 3rem;
	padding: 3rem 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1000px;
	margin: 0 auto;
	align-items: start;
}

.contact-form-column {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	border-radius: 15px;
	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-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: 100px;
}

.contact-submit-btn {
	padding: 0.8rem 2rem;
	background: linear-gradient(45deg, var(--primary), var(--accent));
	border: none;
	border-radius: 25px;
	color: var(--dark);
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
}

.contact-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.contact-info-column {
	padding: 2rem;
}

.contact-info-title {
	font-size: 1.5rem;
	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;
}

.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 {
		padding: 1.5rem;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 15px;
		border: 1px solid rgba(0, 255, 255, 0.1);
	}
}

/* Footer */
footer {
	background: var(--darker);
	padding: 3rem 2rem 1rem;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
	margin-top: 2rem; 
	color: var(--gray); 
	font-size: 0.85rem;
}

footer p a {
	color: var(--gray); 
	text-decoration: none; 
	transition: color 0.3s ease;
}
footer p a:hover {
	color: var(--secondary); 
	text-decoration: none; 
	transition: color 0.3s ease;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 2rem 0;
}

.social-link {
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, var(--primary), var(--accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--dark);
	font-weight: bold;
	transition: all 0.3s ease;
}

.social-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* Particles */
.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 {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.about-text::before {
		display: none;
	}

	.about-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;
	}
}

/* Soulmate article landing page */
.soulmate-hero {
	min-height: 100vh;
	height: auto;
	padding: 8rem 1rem 5rem;
	background:
		linear-gradient(rgba(8, 8, 18, 0.52), rgba(8, 8, 18, 0.9)),
		url('https://chipjourney.com/wp-content/uploads/2023/10/What-is-The-Best-Lover-Zodiac-Sign-1.jpg') center / cover;
}

.soulmate-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 28%, rgba(246, 193, 119, 0.2), transparent 28%),
		linear-gradient(180deg, transparent 0%, rgba(8, 8, 18, 0.92) 100%);
	pointer-events: none;
}

.soulmate-hero .hero-content {
	max-width: 920px;
}

.hero-kicker {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(246, 193, 119, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	color: #ffe0ad;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.soulmate-hero h1 {
	font-size: clamp(2.6rem, 7vw, 5.9rem);
	line-height: 0.95;
	margin-bottom: 1.2rem;
}

.soulmate-hero p {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1rem, 2vw, 1.28rem);
}

.soulmate-hero .stat {
	min-width: 130px;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: rgba(8, 8, 18, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
}

.soulmate-hero .stat-number {
	color: #ffe0ad;
}

.inline-buttons {
	justify-content: flex-start;
	margin-top: 1.5rem;
}

.method-cta {
	justify-content: center;
	margin-top: 2rem;
}

.section-intro {
	max-width: 900px;
	margin: -1.65rem auto 3rem;
	color: rgba(255, 255, 255, 0.76);
	text-align: center;
	font-size: clamp(1rem, 1.7vw, 1.16rem);
	line-height: 1.8;
}

.article-panel {
	max-width: 980px;
	margin: 0 auto;
	padding: 2rem;
	border: 1px solid rgba(103, 232, 249, 0.16);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.article-prose {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.06rem;
	line-height: 1.85;
}

.article-prose p {
	margin-bottom: 1.1rem;
}

.article-prose a {
	color: #ffe0ad;
	text-decoration: none;
	font-weight: 800;
	border-bottom: 1px solid rgba(246, 193, 119, 0.35);
}

.article-prose a:hover {
	color: var(--primary);
	border-color: rgba(103, 232, 249, 0.45);
}

.article-prose .cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-top: 1.4rem;
}

.article-prose a.btn,
.article-prose .btn {
	border-bottom: 0;
	text-decoration: none;
	font-weight: 900;
	min-width: 250px;
	max-width: 100%;
	padding: 1rem 1.6rem;
}

.article-prose a.btn-primary,
.quiz-result a.btn-primary {
	color: #070812 !important;
	background: linear-gradient(45deg, #7ee7f0, #f2cf79);
	box-shadow: 0 14px 34px rgba(126, 231, 240, 0.16);
}

.article-prose a.btn-secondary {
	color: #fff1d8 !important;
	border: 2px solid rgba(103, 232, 249, 0.88);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 0 0 1px rgba(246, 193, 119, 0.18);
}

.article-prose a.btn-secondary:hover {
	color: #070812 !important;
	background: linear-gradient(45deg, #7ee7f0, #f2cf79);
	border-color: transparent;
}

.takeaway-list {
	display: grid;
	gap: 0.9rem;
	list-style: none;
}

.takeaway-list li {
	position: relative;
	padding: 1rem 1rem 1rem 3rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.65;
}

.takeaway-list li::before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 1.35rem;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
	box-shadow: 0 0 18px rgba(103, 232, 249, 0.35);
}

.quick-answer {
	margin-top: 1.5rem;
	padding: 1.25rem;
	border-radius: 18px;
	border: 1px solid rgba(246, 193, 119, 0.28);
	background: linear-gradient(135deg, rgba(246, 193, 119, 0.12), rgba(244, 114, 182, 0.08));
}

.quick-answer h3 {
	margin-bottom: 0.6rem;
	color: #ffe0ad;
}

.article-nav-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1rem;
	max-width: 980px;
	margin: 0 auto;
}

.article-nav-grid a {
	display: flex;
	align-items: center;
	min-height: 72px;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
	font-weight: 800;
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.article-nav-grid a:hover {
	transform: translateY(-3px);
	border-color: rgba(246, 193, 119, 0.4);
	background: rgba(246, 193, 119, 0.1);
	color: #ffe0ad;
}

.comparison-table {
	max-width: 1000px;
	margin: 0 auto;
	overflow-x: auto;
	border-radius: 20px;
	border: 1px solid rgba(103, 232, 249, 0.16);
	background: rgba(255, 255, 255, 0.055);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
	-webkit-overflow-scrolling: touch;
}

.comparison-table table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	text-align: left;
	vertical-align: top;
	color: rgba(255, 255, 255, 0.78);
}

.comparison-table th {
	color: #ffe0ad;
	background: rgba(246, 193, 119, 0.08);
	font-weight: 900;
}

.comparison-table tr:last-child td {
	border-bottom: 0;
}

.article-image {
	width: min(100%, 500px);
	margin: 0 auto;
	padding: 0.7rem;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, rgba(103, 232, 249, 0.18), rgba(244, 114, 182, 0.14));
}

.article-image img {
	display: block;
	width: 100%;
	border-radius: 18px;
}

.quiz-extra {
	max-width: 760px;
	margin: 1.25rem auto 0;
	text-align: center;
	font-size: 0.98rem;
}

.soulmate-frame {
	position: relative;
	width: min(100%, 430px);
	margin: 0 auto;
	padding: 0.7rem;
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(103, 232, 249, 0.24), rgba(244, 114, 182, 0.2), rgba(246, 193, 119, 0.24));
	box-shadow: 0 25px 80px rgba(244, 114, 182, 0.18);
}

.soulmate-frame::before {
	content: '';
	position: absolute;
	inset: -16px;
	border-radius: 34px;
	background: radial-gradient(circle, rgba(246, 193, 119, 0.2), transparent 65%);
	z-index: -1;
}

.soulmate-frame img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.speaker-avatar {
	width: 92px;
	height: 92px;
	font-size: 1rem;
	font-weight: 900;
}

.speaker-card,
.timeline-item,
.contact-info-section,
.faq-grid details {
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.timeline-time {
	color: #ffe0ad;
	border-color: rgba(246, 193, 119, 0.28);
	background: rgba(246, 193, 119, 0.1);
}

.timeline-speaker {
	color: var(--accent);
}

.timeline-collapse-icon {
	color: var(--accent);
	background: rgba(246, 193, 119, 0.12);
}

.timeline-item.expanded .timeline-collapse-icon {
	background: var(--accent);
	color: #120b14;
}

.quiz-panel {
	max-width: 980px;
	padding: 3rem;
}

.quiz-progress {
	display: grid;
	gap: 0.6rem;
	margin: 0 auto 2rem;
	max-width: 720px;
	text-align: left;
	color: rgba(255, 255, 255, 0.82);
}

.quiz-progress div {
	height: 12px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.quiz-progress i {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	transition: width 0.25s ease;
}

.soulmate-quiz {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	text-align: left;
}

.soulmate-quiz fieldset {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.055);
}

.soulmate-quiz legend {
	padding: 0 0.35rem;
	color: #ffe0ad;
	font-weight: 800;
}

.soulmate-quiz label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0.7rem 0;
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.86);
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.soulmate-quiz label:hover,
.soulmate-quiz label.is-selected {
	transform: translateY(-1px);
	border-color: rgba(246, 193, 119, 0.55);
	background: rgba(246, 193, 119, 0.1);
}

.soulmate-quiz input {
	margin-top: 0.2rem;
	accent-color: var(--accent);
}

.soulmate-quiz label span {
	display: block;
}

.soulmate-quiz label strong {
	display: block;
	color: #fff;
	margin-bottom: 0.16rem;
}

.soulmate-quiz label small {
	display: block;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.45;
}

.quiz-action {
	border: 0;
	font-family: inherit;
}

.quiz-helper {
	color: #ffe0ad;
	font-weight: 800;
	margin-top: 1rem;
}

.quiz-result {
	margin-top: 1.5rem;
	padding: 1.3rem;
	border-radius: 18px;
	border: 1px solid rgba(246, 193, 119, 0.35);
	background: linear-gradient(135deg, rgba(246, 193, 119, 0.13), rgba(244, 114, 182, 0.1));
	text-align: left;
}

.quiz-result[hidden] {
	display: none;
}

.quiz-result h3 {
	margin: 0.4rem 0 0.8rem;
	color: #fff;
}

.quiz-result p {
	color: rgba(255, 255, 255, 0.84);
	margin-bottom: 0.7rem;
}

.result-label {
	display: inline-flex;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: rgba(103, 232, 249, 0.13);
	border: 1px solid rgba(103, 232, 249, 0.25);
	color: var(--primary);
	font-size: 0.85rem;
	font-weight: 800;
}

.result-note {
	color: #ffe0ad !important;
	font-weight: 700;
}

.result-cta {
	justify-content: center;
	margin-top: 1.1rem;
}

.result-cta .btn {
	width: auto;
	min-width: 240px;
	text-align: center;
}

.faq-grid {
	display: grid;
	gap: 1rem;
	max-width: 920px;
	margin: 0 auto;
}

.faq-grid details {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 1.1rem 1.2rem;
	background: rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(10px);
}

.faq-grid summary {
	cursor: pointer;
	color: #fff;
	font-weight: 800;
}

.faq-grid p {
	margin-top: 0.8rem;
	color: var(--gray);
}

.source-section {
	padding-top: 3rem;
}

.source-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.source-links a {
	display: block;
	padding: 1rem;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.84);
	text-decoration: none;
	transition: all 0.25s ease;
}

.source-links a:hover {
	color: #ffe0ad;
	border-color: rgba(246, 193, 119, 0.35);
	transform: translateY(-2px);
}

.disclosure {
	max-width: 860px;
	margin: 2rem auto 0;
	color: var(--gray);
	text-align: center;
	font-size: 0.95rem;
}

.final-cta {
	max-width: 860px;
}

.final-cta .inline-buttons {
	justify-content: center;
}

footer h2 {
	background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Astrology compatibility landing page */
.astrology-page .soulmate-hero {
	background:
		linear-gradient(rgba(8, 8, 18, 0.42), rgba(8, 8, 18, 0.92)),
		url('https://chipjourney.com/wp-content/uploads/2024/08/Astrological-Compatibility-in-Love.jpg') center / cover;
}

.astrology-page .soulmate-hero::after {
	background:
		radial-gradient(circle at 44% 22%, rgba(246, 193, 119, 0.24), transparent 26%),
		radial-gradient(circle at 78% 42%, rgba(244, 114, 182, 0.16), transparent 30%),
		linear-gradient(180deg, transparent 0%, rgba(8, 8, 18, 0.94) 100%);
}

.astrology-page .logo-text {
	white-space: nowrap;
}

.astrology-page .compact-grid {
	max-width: 980px;
	margin: 1.5rem auto 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.astrology-page .zodiac-style-grid {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 1.1rem;
}

.astrology-page .zodiac-style-grid .speaker-card {
	padding: 1.6rem 1.2rem;
}

.astrology-page .zodiac-style-grid .speaker-avatar {
	width: 86px;
	height: 86px;
	font-size: 0.88rem;
}

.zodiac-board {
	position: relative;
}

.zodiac-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.2rem;
	max-width: 1060px;
	margin: 0 auto;
}

.zodiac-card {
	position: relative;
	display: grid;
	place-items: center;
	gap: 0.85rem;
	min-height: 190px;
	padding: 1.25rem;
	border-radius: 20px;
	border: 1px solid rgba(246, 193, 119, 0.28);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		rgba(8, 8, 18, 0.62);
	color: #ffe0ad;
	text-decoration: none;
	font-weight: 900;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.zodiac-card::before {
	content: '';
	position: absolute;
	inset: -35% 10% auto;
	height: 120px;
	background: radial-gradient(circle, rgba(103, 232, 249, 0.22), transparent 68%);
	pointer-events: none;
}

.zodiac-card:hover {
	transform: translateY(-5px);
	border-color: rgba(103, 232, 249, 0.62);
	box-shadow: 0 24px 60px rgba(103, 232, 249, 0.14);
}

.zodiac-card img {
	position: relative;
	z-index: 1;
	display: block;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 224, 173, 0.78);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.zodiac-card span {
	position: relative;
	z-index: 1;
	font-size: 1.08rem;
	color: #fff;
}

.astrology-page .article-image {
	width: min(100%, 560px);
}

.astrology-page .article-image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.video-shell {
	max-width: 980px;
	margin: 0 auto;
	padding: 0.75rem;
	border-radius: 24px;
	border: 1px solid rgba(103, 232, 249, 0.18);
	background: linear-gradient(135deg, rgba(103, 232, 249, 0.16), rgba(244, 114, 182, 0.12));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.video-shell iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 18px;
	background: #050712;
}

.astrology-page .register-section.final-cta {
	border-color: rgba(246, 193, 119, 0.2);
	background:
		linear-gradient(135deg, rgba(103, 232, 249, 0.1), rgba(244, 114, 182, 0.11), rgba(246, 193, 119, 0.09)),
		rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
	.soulmate-quiz,
	.source-links {
		grid-template-columns: 1fr;
	}

	.quiz-panel {
		padding: 2rem 1.2rem;
	}

	.astrology-page .compact-grid,
	.zodiac-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.soulmate-hero {
		padding-top: 7rem;
	}

	.soulmate-hero .hero-stats {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.8rem;
	}

	.soulmate-hero .stat {
		min-width: 0;
		padding: 0.9rem 0.65rem;
	}

	.inline-buttons {
		justify-content: center;
	}

	.about-text {
		text-align: left;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.sponsors-grid.platinum,
	.sponsors-grid.gold,
	.sponsors-grid.silver {
		grid-template-columns: 1fr;
	}

	.astrology-page .logo-text {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.section {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.soulmate-hero .hero-stats {
		grid-template-columns: 1fr;
	}

	.soulmate-quiz fieldset {
		padding: 0.85rem;
	}

	.soulmate-quiz label {
		padding: 0.7rem;
	}

	.astrology-page .compact-grid,
	.zodiac-grid {
		grid-template-columns: 1fr;
	}

	.zodiac-card {
		min-height: 170px;
	}
}

/* Astrology compatibility refinements requested */
.astrology-page .zodiac-style-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 1.35rem;
	max-width: 1280px;
	margin: 0 auto;
}

.astrology-page .zodiac-style-grid .speaker-card {
	flex: 0 1 250px;
	max-width: 260px;
	min-height: 295px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.astrology-page .zodiac-style-grid .speaker-bio {
	margin-top: auto;
}

.astrology-page #beyond-sun-signs .article-panel + .comparison-table,
.astrology-page #beyond-sun-signs .comparison-table + .article-panel,
.astrology-page .article-panel + .comparison-table,
.astrology-page .comparison-table + .article-panel {
	margin-top: 2rem;
}

.astrology-page .comparison-table {
	margin-bottom: 2rem;
}

.astrology-page #emotional-connection .inline-buttons {
	gap: 1.2rem;
}

.astrology-page #relationship-checklist .sponsors-grid.silver {
	grid-template-columns: repeat(4, minmax(220px, 1fr));
	gap: 2rem;
	align-items: stretch;
}

.astrology-page #relationship-checklist .sponsor-card.silver {
	max-width: none;
	min-height: 295px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.astrology-page #relationship-checklist .sponsor-description {
	margin-top: auto;
}

@media (max-width: 1180px) {
	.astrology-page #relationship-checklist .sponsors-grid.silver {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}
}

@media (max-width: 768px) {
	.astrology-page .zodiac-style-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.astrology-page .zodiac-style-grid .speaker-card {
		max-width: none;
		min-height: auto;
	}

	.astrology-page #relationship-checklist .sponsors-grid.silver {
		grid-template-columns: 1fr;
	}
}


/* ===== Boyan requested desktop layout fixes - July 10 ===== */
@media (min-width: 1025px) {
  .astrology-page #zodiac-love-styles .zodiac-style-grid,
  .astrology-page .zodiac-style-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(230px, 1fr)) !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 2rem !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
  }

  .astrology-page #zodiac-love-styles .zodiac-style-grid .speaker-card {
    width: 100% !important;
    max-width: none !important;
    min-height: 315px !important;
    margin: 0 !important;
  }

  .astrology-page #relationship-checklist .sponsors-grid.silver {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
    gap: 2.25rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .astrology-page #zodiac-love-styles .zodiac-style-grid,
  .astrology-page .zodiac-style-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
    gap: 1.5rem !important;
    max-width: 920px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 768px) {
  .astrology-page #zodiac-love-styles .zodiac-style-grid,
  .astrology-page .zodiac-style-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 520px) {
  .astrology-page #zodiac-love-styles .zodiac-style-grid,
  .astrology-page .zodiac-style-grid {
    grid-template-columns: 1fr !important;
  }
}

.astrology-page #beyond-sun-signs .article-panel,
.astrology-page #elements .article-panel,
.astrology-page .article-panel {
  margin-top: 0 !important;
  margin-bottom: 2.4rem !important;
}

.astrology-page #beyond-sun-signs .article-panel + .comparison-table,
.astrology-page #elements .article-panel + .comparison-table,
.astrology-page .article-panel + .comparison-table {
  margin-top: 2.4rem !important;
}

.astrology-page #beyond-sun-signs .comparison-table,
.astrology-page #elements .comparison-table,
.astrology-page .comparison-table {
  margin-top: 2.4rem !important;
  margin-bottom: 2.8rem !important;
}

.astrology-page #beyond-sun-signs .comparison-table + .article-panel,
.astrology-page #elements .comparison-table + .article-panel,
.astrology-page .comparison-table + .article-panel {
  margin-top: 2.8rem !important;
}

.astrology-page #emotional-connection .inline-buttons .btn[href*="263a0twix6t3pa8d1jtlffg1p5"],
.astrology-page a[href*="263a0twix6t3pa8d1jtlffg1p5"] {
  display: none !important;
}
