/* LL25 Theme - Futuristic Gaming Experience */

/* CSS Variables */
:root {
	--primary-color: #00ffff;
	--secondary-color: #ff00ff;
	--accent-color: #ffff00;
	--dark-bg: #0a0a0a;
	--darker-bg: #050505;
	--card-bg: rgba(20, 20, 20, 0.9);
	--text-primary: #ffffff;
	--text-secondary: #cccccc;
	--neon-glow: 0 0 10px var(--primary-color);
	--neon-glow-strong: 0 0 20px var(--primary-color);
	--gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	--gradient-secondary: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

/* Base Styles */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.legacylan {
	margin: 0;
	padding: 0;
	background: var(--dark-bg);
	font-family: 'Rajdhani', sans-serif;
	color: var(--text-primary);
	overflow-x: hidden;
	position: relative;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 0.8rem; }
h3 { font-size: 2rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.5rem; margin-bottom: 0.4rem; }
h5 { font-size: 1.2rem; margin-bottom: 0.3rem; }
h6 { font-size: 1rem; margin-bottom: 0.2rem; }

/* Animated Background */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 20s linear infinite;
}

.floating-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 2px;
	background: var(--primary-color);
	border-radius: 50%;
	box-shadow: var(--neon-glow);
	animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
	top: 20%;
	left: 20%;
	animation-delay: 0s;
}

.floating-particles::after {
	top: 60%;
	right: 20%;
	animation-delay: 3s;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

@keyframes float {
	0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
	50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

/* Navigation */
.navbar {
	background: rgba(10, 10, 10, 0.95) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--primary-color);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.navbar-brand {
	padding: 0;
}

.logo-container {
	position: relative;
	display: inline-block;
}

.logo-text {
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	letter-spacing: 3px;
}

.logo-accent {
	font-family: 'Orbitron', monospace;
	font-size: 1rem;
	font-weight: 400;
	color: var(--secondary-color);
	text-shadow: 0 0 10px var(--secondary-color);
	letter-spacing: 2px;
}

.logo-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	filter: blur(20px);
	opacity: 0.3;
	z-index: -1;
}

.navbar-nav .nav-link {
	color: var(--text-primary) !important;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
	text-shadow: var(--neon-glow);
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

.dropdown-menu {
	background: rgba(20, 20, 20, 0.95);
	border: 1px solid var(--primary-color);
	box-shadow: var(--neon-glow);
	backdrop-filter: blur(10px);
}

.dropdown-item {
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background: rgba(0, 255, 255, 0.1);
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
}

/* Navbar Profile Picture - Keep Small */
.navbar .circle-picture,
.navbar .circle-initials {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: inline-block;
	float: left;
	margin-top: -2px;
	margin-right: 8px;
	background-size: cover !important;
	border: 2px solid var(--primary-color);
	box-shadow: var(--neon-glow);
}

.navbar .circle-initials {
	background: var(--gradient-primary);
	color: var(--dark-bg);
	text-align: center;
	line-height: 21px;
	font-weight: bold;
	font-size: 10px;
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.hero-content {
	text-align: center;
	z-index: 2;
	position: relative;
}

.hero-title {
	margin-bottom: 3rem;
}

.glitch-text {
	position: relative;
	font-size: 4rem;
	font-weight: 900;
	color: var(--primary-color);
	text-shadow: var(--neon-glow-strong);
	animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.glitch-text::before {
	animation: glitch-1 0.5s infinite;
	color: var(--secondary-color);
	z-index: -1;
}

.glitch-text::after {
	animation: glitch-2 0.5s infinite;
	color: var(--accent-color);
	z-index: -2;
}

@keyframes glitch {
	0%, 100% { transform: translate(0); }
	20% { transform: translate(-2px, 2px); }
	40% { transform: translate(-2px, -2px); }
	60% { transform: translate(2px, 2px); }
	80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
	0%, 100% { transform: translate(0); }
	20% { transform: translate(2px, -2px); }
	40% { transform: translate(2px, 2px); }
	60% { transform: translate(-2px, -2px); }
	80% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
	0%, 100% { transform: translate(0); }
	20% { transform: translate(-2px, 2px); }
	40% { transform: translate(-2px, -2px); }
	60% { transform: translate(2px, 2px); }
	80% { transform: translate(2px, -2px); }
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	letter-spacing: 3px;
	margin-top: 1rem;
}

.hero-countdown {
	margin: 3rem 0;
}

.countdown-label {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.countdown-timer {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	margin: 2rem 0;
}

.countdown-item {
	text-align: center;
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2.5rem 2.5rem;
	min-width: 140px;
	min-height: 120px;
	box-shadow: var(--neon-glow);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.countdown-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-glow-strong);
}

.countdown-number {
	display: block;
	font-family: 'Orbitron', monospace;
	font-size: 3.2rem;
	font-weight: 900;
	color: var(--primary-color);
	text-shadow: 0 0 16px var(--primary-color);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.countdown-item .countdown-label {
	font-size: 0.8rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.hero-actions {
	margin-top: 3rem;
}

.btn {
	font-family: 'Orbitron', monospace;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 5px;
	padding: 1rem 2rem;
	margin: 0 1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--gradient-primary);
	border: none;
	color: var(--text-primary);
	box-shadow: var(--neon-glow);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--neon-glow-strong);
	color: var(--text-primary);
}

.btn-outline-primary {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	box-shadow: var(--neon-glow);
}

.btn-outline-primary:hover {
	background: var(--primary-color);
	color: var(--dark-bg);
	box-shadow: var(--neon-glow-strong);
}

.btn-glow {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: var(--neon-glow); }
	50% { box-shadow: var(--neon-glow-strong); }
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 30px;
	height: 30px;
	border-right: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	transform: rotate(45deg);
	box-shadow: var(--neon-glow);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}

/* Features Section */
.features-section {
	padding: 5rem 0;
	background: rgba(10, 10, 10, 0.8);
}

.feature-card {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::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;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--neon-glow-strong);
}

.feature-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	text-shadow: var(--neon-glow);
}

.feature-card h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.1;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.8rem;
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: none;
}

/* Games Section */
.games-section {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	font-size: 1.5rem;
	line-height: 1.1;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 0.8rem;
	letter-spacing: 2px;
	margin-top: 1rem;
	line-height: 1.2;
}

.game-card {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	position: relative;
}

.game-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--neon-glow-strong);
}

.game-image {
	height: 200px;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
	overflow: hidden;
}

.game-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
	opacity: 1;
}

.game-info {
	padding: 1.5rem;
	text-align: center;
}

.game-info h3 {
	color: var(--primary-color);
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.1;
}

/* Location Section */
.location-section {
	padding: 5rem 0;
	background: rgba(10, 10, 10, 0.8);
}

.location-info h2 {
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	font-size: 1.5rem;
	line-height: 1.1;
}

.location-info h3 {
	color: var(--secondary-color);
	margin-bottom: 1rem;
	font-size: 1.2rem;
	line-height: 1.1;
}

.location-info p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: none;
}

.location-links {
	margin-top: 2rem;
}

.location-links .btn {
	margin: 0.5rem;
}

.location-image img {
	border-radius: 15px;
	border: 2px solid var(--primary-color);
	box-shadow: var(--neon-glow);
}

/* Sponsors Section */
.sponsors-section {
	padding: 5rem 0;
}

.sponsors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.sponsor-item {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sponsor-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-glow-strong);
}

.sponsor-item img {
	max-width: 100%;
	max-height: 80px;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.sponsor-item:hover img {
	filter: grayscale(0%);
}

/* Footer */
.footer {
	background: var(--darker-bg);
	border-top: 1px solid var(--primary-color);
	padding: 3rem 0;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.footer h3 {
	color: var(--primary-color);
	font-size: 1.2rem;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.footer p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.4;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: none;
}

.footer a {
	color: var(--text-secondary);
	transition: all 0.3s ease;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: none;
}

.footer a:hover {
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	text-decoration: none;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer ul li {
	margin-bottom: 0.5rem;
}

.footer ul li a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.footer ul li a i {
	font-size: 1rem;
	color: var(--primary-color);
}

.footer .social-icons {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.footer .social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer .social-icons a:hover {
	transform: translateY(-2px);
	box-shadow: var(--neon-glow);
	background: rgba(0, 255, 255, 0.1);
}

.footer .social-icons a i {
	font-size: 0.9rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.footer .social-icons a:hover i {
	color: var(--primary-color);
}

/* Modal Styles */
.modal-content {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	box-shadow: var(--neon-glow);
	position: relative;
	z-index: 10000;
}

.modal {
	z-index: 10000;
}

.modal-backdrop {
	z-index: 9999;
}

.modal-header {
	border-bottom: 1px solid var(--primary-color);
}

.modal-title {
	color: var(--primary-color);
	font-family: 'Orbitron', monospace;
}

.modal-footer {
	border-top: 1px solid var(--primary-color);
}

/* Form Styles */
.form-control {
	background: rgba(20, 20, 20, 0.8);
	border: 1px solid var(--primary-color);
	color: var(--text-primary);
	border-radius: 5px;
	position: relative;
	z-index: 1;
}

.form-control:focus {
	background: rgba(20, 20, 20, 0.9);
	border-color: var(--secondary-color);
	box-shadow: 0 0 10px var(--secondary-color);
	color: var(--text-primary);
}

.input-group {
	position: relative;
	z-index: 1;
}

.input-group-text {
	background: rgba(20, 20, 20, 0.8);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 5px 0 0 5px;
}

.modal-body {
	position: relative;
	z-index: 1;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

.bg-dark { background: var(--dark-bg) !important; }
.bg-darker { background: var(--darker-bg) !important; }
.bg-card { background: var(--card-bg) !important; }

/* Responsive Design */
@media (max-width: 768px) {
	.glitch-text {
		font-size: 2.5rem;
	}
	
	.countdown-timer {
		flex-wrap: wrap;
		gap: 1rem;
	}
	
	.countdown-item {
		min-width: 80px;
		padding: 0.8rem;
	}
	
	.countdown-number {
		font-size: 2rem;
	}
	
	.hero-actions .btn {
		margin: 0.5rem;
		display: block;
		width: 100%;
	}
	
	.feature-card {
		margin-bottom: 1.5rem;
	}
	
	.feature-card h3 {
		font-size: 0.8rem;
	}
	
	.feature-card p {
		font-size: 0.7rem;
	}
	
	.section-header h2 {
		font-size: 1.3rem;
	}
	
	.section-subtitle {
		font-size: 0.7rem;
	}
	
	.location-info h2 {
		font-size: 1.3rem;
	}
	
	.location-info h3 {
		font-size: 1rem;
	}
	
	.game-info h3 {
		font-size: 0.8rem;
	}
	
	.sponsors-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 1rem;
	}
	
	.footer h3 {
		font-size: 1rem;
	}
	
	.footer p {
		font-size: 0.8rem;
	}
	
	.footer ul li a {
		font-size: 0.8rem;
	}
	
	.footer .social-icons {
		gap: 0.5rem;
	}
	
	.footer .social-icons a {
		width: 35px;
		height: 35px;
	}
	
	.footer .social-icons a i {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.8rem; }
	h3 { font-size: 1.5rem; }
	
	.glitch-text {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.countdown-timer {
		flex-direction: column;
		align-items: center;
	}
	
	.countdown-item {
		width: 100%;
		max-width: 200px;
	}
	
	.feature-card h3 {
		font-size: 0.7rem;
	}
	
	.feature-card p {
		font-size: 0.65rem;
	}
	
	.section-header h2 {
		font-size: 1.1rem;
	}
	
	.section-subtitle {
		font-size: 0.6rem;
	}
	
	.location-info h2 {
		font-size: 1.1rem;
	}
	
	.location-info h3 {
		font-size: 0.9rem;
	}
	
	.game-info h3 {
		font-size: 0.7rem;
	}
	
	.location-info p {
		font-size: 1rem;
	}
	
	.footer h3 {
		font-size: 0.9rem;
	}
	
	.footer p {
		font-size: 0.75rem;
	}
	
	.footer ul li a {
		font-size: 0.75rem;
	}
	
	.footer .social-icons {
		gap: 0.3rem;
	}
	
	.footer .social-icons a {
		width: 30px;
		height: 30px;
	}
	
	.footer .social-icons a i {
		font-size: 0.9rem;
	}
}

/* Page Content Styles */
.page-content-wrap {
	margin-top: 100px;
	padding: 2rem 0;
}

.page-message {
	margin-top: 6%;
	text-align: center;
}

.page-message-icon {
	font-size: 100px;
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
}

.page-message-title {
	font-size: 30px;
	color: var(--text-primary);
	margin: 1rem 0;
}

.page-message-subtitle {
	font-size: 20px;
	color: var(--text-secondary);
}

.page-message-links {
	margin-top: 25px;
}

.page-message-info { color: var(--primary-color); }
.page-message-danger { color: #ff4444; }
.page-message-warning { color: var(--accent-color); }

/* Box Styles */
/* Event Select Box Styles (for tickets_select_event page) */
.event-select-box {
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2rem;
	margin: 2rem 0;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
	text-decoration: none;
	display: block;
	cursor: pointer;
}

.event-select-box:hover {
	background: rgba(0, 255, 255, 0.05);
	box-shadow: var(--neon-glow-strong);
	transform: translateY(-5px);
	text-decoration: none;
}

.event-select-box > div:first-child {
	display: inline-block;
	width: 15%;
	text-align: center;
	vertical-align: top;
	padding-top: 5px;
}

.event-select-box > div:first-child img {
	width: 80%;
	border-radius: 8px;
	border: 1px solid var(--primary-color);
	box-shadow: var(--neon-glow);
}

.event-select-box > div:last-child {
	display: inline-block;
	width: 80%;
	padding-left: 1rem;
}

.event-select-box > div:last-child > div:first-child {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	margin-bottom: 1rem;
}

.event-select-box > div:last-child > div:nth-child(2) {
	padding: 0.5rem 0;
	margin-bottom: 0.5rem;
	color: var(--secondary-color);
	font-size: 1rem;
}

.event-select-box > div:last-child > div:nth-child(2) svg {
	margin-right: 0.5rem;
	color: var(--secondary-color);
}

.event-select-box > div:last-child > div:last-child {
	margin-top: 0.5rem;
	padding: 0.5rem 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.event-select-box > div:last-child > div:last-child strong {
	color: var(--accent-color);
	font-weight: 600;
}

/* Ticket Box Styles (for tickets page) */
.ticket-box,
.ticket-info-box {
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
}

/* Specific styles for tickets page boxes */
.ticket-info-box.box.box-1 {
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
}

.ticket-info-box.box.box-1:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-glow-strong);
}

.ticket-box:hover,
.ticket-info-box:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-glow-strong);
}

.ticket-box .ticket-title,
.ticket-info-box .ticket-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-shadow: var(--neon-glow);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ticket-box .ticket-title svg,
.ticket-info-box .ticket-title svg {
	margin-right: 0.5rem;
	color: var(--primary-color);
}

.ticket-box .ticket-info,
.ticket-info-box .ticket-info {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	padding: 0.3rem 0;
}

.ticket-box .ticket-info span,
.ticket-info-box .ticket-info span {
	display: block;
	margin-bottom: 0.2rem;
}

.ticket-box .ticket-info b,
.ticket-info-box .ticket-info b {
	color: var(--accent-color);
	font-weight: 600;
}

.ticket-box .ticket-price,
.ticket-info-box .ticket-price {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: right;
	color: var(--accent-color);
	text-shadow: 0 0 10px var(--accent-color);
	margin-top: 0.5rem;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.ticket-box .input-group,
.ticket-info-box .input-group {
	margin-top: 0.5rem;
}

.ticket-box .input-group .btn,
.ticket-info-box .input-group .btn {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	transition: all 0.3s ease;
	height: 45px;
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ticket-box .input-group .btn:hover,
.ticket-info-box .input-group .btn:hover {
	background: rgba(0, 255, 255, 0.1);
	box-shadow: var(--neon-glow);
}

.ticket-box .input-group .btn svg,
.ticket-info-box .input-group .btn svg {
	width: 16px;
	height: 16px;
}

.ticket-box .input-group .form-control,
.ticket-info-box .input-group .form-control {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	color: var(--text-primary);
	text-align: center;
	font-weight: 600;
	height: 45px;
	line-height: 1.2;
	vertical-align: middle;
}

.ticket-box .input-group .form-control:focus,
.ticket-info-box .input-group .form-control:focus {
	background: rgba(20, 20, 20, 0.9);
	border-color: var(--secondary-color);
	box-shadow: 0 0 10px var(--secondary-color);
	color: var(--text-primary);
}

.ticket-box div[style*="border-bottom"],
.ticket-info-box div[style*="border-bottom"] {
	border-bottom: 1px solid var(--primary-color) !important;
	margin-bottom: 1rem !important;
	padding: 1rem 0 !important;
}

/* Fix for ticket row alignment */
.ticket-box .row,
.ticket-info-box .row {
	align-items: center;
}

.ticket-box .col-xs-4,
.ticket-info-box .col-xs-4 {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.ticket-box .col-xs-12,
.ticket-info-box .col-xs-12 {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* Event Summary Box Styles */
.event-summary-box {
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
}

.event-summary-box div[style*="font-size:20px"] {
	font-size: 1.5rem !important;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1rem;
	text-shadow: var(--neon-glow);
}

.ticket-info-box.box.box-1 div[style*="font-size:20px"] {
	font-size: 1.5rem !important;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1rem;
	text-shadow: var(--neon-glow);
}

.event-summary-box .event-info {
	margin-top: 1rem;
}

.ticket-info-box.box.box-1 .event-info {
	margin-top: 1rem;
}

.event-summary-box .element {
	margin-bottom: 1rem;
}

.ticket-info-box.box.box-1 .element {
	margin-bottom: 1rem;
}

.event-summary-box .title-label {
	color: var(--text-secondary);
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 0.3rem;
}

.ticket-info-box.box.box-1 .title-label {
	color: var(--text-secondary);
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 0.3rem;
}

.event-summary-box .event-info-value {
	font-size: 1.1rem;
	color: var(--text-primary);
}

.ticket-info-box.box.box-1 .event-info-value {
	font-size: 1.1rem;
	color: var(--text-primary);
}

.event-summary-box div[style*="border-top"] {
	border-top: 1px solid var(--primary-color) !important;
	margin-top: 2rem !important;
	padding: 1rem 0 !important;
	font-size: 1.2rem !important;
	font-weight: 600 !important;
	color: var(--text-primary) !important;
}

.ticket-info-box.box.box-1 div[style*="border-top"] {
	border-top: 1px solid var(--primary-color) !important;
	margin-top: 2rem !important;
	padding: 1rem 0 !important;
	font-size: 1.2rem !important;
	font-weight: 600 !important;
	color: var(--text-primary) !important;
}

.event-summary-box #ticket-sum {
	color: var(--accent-color);
	font-weight: 700;
	text-shadow: 0 0 10px var(--accent-color);
}

.ticket-info-box.box.box-1 #ticket-sum {
	color: var(--accent-color);
	font-weight: 700;
	text-shadow: 0 0 10px var(--accent-color);
}

/* Fix for Total section text color */
.ticket-info-box.box.box-1 div[style*="color:#000"] {
	color: var(--text-primary) !important;
}

.ticket-info-box.box.box-1 div[style*="color:#000"] .col-md-6:first-child {
	color: var(--text-primary) !important;
}

.ticket-info-box.box.box-1 div[style*="color:#000"] .col-md-6:last-child {
	color: var(--accent-color) !important;
}

/* Payment Button Styles */
.btn-success {
	background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
	border: 2px solid var(--accent-color);
	color: var(--text-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
}

.btn-success:hover {
	background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
	transform: translateY(-2px);
	box-shadow: var(--neon-glow-strong);
	color: var(--text-primary);
}

.btn-success svg {
	margin-left: 0.5rem;
}

@media (max-width: 768px) {
	.event-select-box > div:first-child,
	.box.box-1 > div:first-child {
		width: 20%;
	}
	
	.event-select-box > div:last-child,
	.box.box-1 > div:last-child {
		width: 75%;
		padding-left: 0.5rem;
	}
	
	.event-select-box > div:last-child > div:first-child,
	.box.box-1 > div:last-child > div:first-child {
		font-size: 1.2rem;
	}
	
	.ticket-box .ticket-title,
	.ticket-info-box .ticket-title {
		font-size: 1.1rem;
	}
	
	.ticket-box .ticket-price,
	.ticket-info-box .ticket-price {
		font-size: 1.3rem;
	}
	
	.event-summary-box div[style*="font-size:20px"] {
		font-size: 1.3rem !important;
	}
}

@media (max-width: 576px) {
	.event-select-box,
	.box.box-1 {
		padding: 1.5rem;
	}
	
	.event-select-box > div:first-child,
	.box.box-1 > div:first-child {
		width: 25%;
	}
	
	.event-select-box > div:last-child,
	.box.box-1 > div:last-child {
		width: 70%;
		padding-left: 0.5rem;
	}
	
	.event-select-box > div:last-child > div:first-child,
	.box.box-1 > div:last-child > div:first-child {
		font-size: 1.1rem;
	}
	
	.ticket-box,
	.ticket-info-box {
		padding: 1.5rem;
	}
	
	.ticket-box .ticket-title,
	.ticket-info-box .ticket-title {
		font-size: 1rem;
	}
	
	.ticket-box .ticket-price,
	.ticket-info-box .ticket-price {
		font-size: 1.2rem;
	}
	
	.event-summary-box {
		padding: 1.5rem;
	}
	
	.event-summary-box div[style*="font-size:20px"] {
		font-size: 1.2rem !important;
	}
}

/* News Styles */
.news-story-main,
.news-story,
.news-article {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.news-story-main:hover,
.news-story:hover,
.news-article:hover {
	box-shadow: var(--neon-glow);
	transform: translateY(-5px);
}

.news-story-main h1 a,
.news-story h1 a,
.news-article h1 a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-story-main h1 a:hover,
.news-story h1 a:hover,
.news-article h1 a:hover {
	color: var(--secondary-color);
	text-shadow: var(--neon-glow);
}

.news-story-main .published,
.news-story .published,
.news-article .published {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.news-story-main .ingress,
.news-story .ingress,
.news-article .ingress {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.6;
}

/* User Profile Styles - Large for Profile Menu */
.circle-picture {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: block;
	margin: 0 auto 1rem auto;
	background-size: cover !important;
	border: 3px solid var(--primary-color);
	box-shadow: var(--neon-glow);
}

.circle-initials {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: block;
	margin: 0 auto 1rem auto;
	background: var(--gradient-primary);
	color: var(--dark-bg);
	text-align: center;
	line-height: 80px;
	font-weight: bold;
	font-size: 24px;
	border: 3px solid var(--primary-color);
	box-shadow: var(--neon-glow);
}

/* Profile Menu Links */
.up-sidebar-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.up-sidebar-links a {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.8rem 1rem;
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 8px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.up-sidebar-links a:hover {
	background: rgba(0, 255, 255, 0.1);
	color: var(--primary-color);
	box-shadow: var(--neon-glow);
	transform: translateX(5px);
}

.up-sidebar-links a svg,
.up-sidebar-links a i {
	font-size: 1rem;
	color: var(--primary-color);
	flex-shrink: 0;
}

.up-sidebar-links a:hover svg,
.up-sidebar-links a:hover i {
	color: var(--primary-color);
}

@media (max-width: 768px) {
	.circle-picture,
	.circle-initials {
		width: 60px;
		height: 60px;
	}
	
	.circle-initials {
		line-height: 60px;
		font-size: 18px;
	}
	
	.up-sidebar-links a {
		font-size: 0.8rem;
		padding: 0.6rem 0.8rem;
	}
}

@media (max-width: 576px) {
	.circle-picture,
	.circle-initials {
		width: 50px;
		height: 50px;
	}
	
	.circle-initials {
		line-height: 50px;
		font-size: 16px;
	}
	
	.up-sidebar-links a {
		font-size: 0.75rem;
		padding: 0.5rem 0.6rem;
	}
}

/* Loading Animation */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(0, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: var(--primary-color);
	animation: spin 1s ease-in-out infinite;
}

/* Prevent navbar from being affected by body loading class */
body.loading .navbar,
body.loading .navbar *,
body.loading .navbar-brand,
body.loading .navbar-nav,
body.loading .navbar-nav *,
body.loading .logo-container,
body.loading .logo-text,
body.loading .logo-accent {
	animation: none !important;
	transform: none !important;
	transition: none !important;
}

/* Modal trigger glow effect */
.modal-trigger-glow {
	box-shadow: var(--neon-glow) !important;
	text-shadow: var(--neon-glow) !important;
}

/* Modal slide-in animation */
.modal-slide-in {
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes spin {
	to { transform: rotate(360deg); }
} 

/* Modal Footer Buttons Fix */
.modal-footer .row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin: 0;
}

.modal-footer .row > div {
	flex: 1 1 0;
	min-width: 120px;
	max-width: 48%;
	padding: 0;
	box-sizing: border-box;
}

.modal-footer .btn {
	width: 100%;
	margin: 0;
}

@media (max-width: 576px) {
	.modal-footer .row {
		flex-direction: column;
		gap: 0.5rem;
	}
	.modal-footer .row > div {
		max-width: 100%;
	}
} 

/* Modal Button Sizing Fix */
.modal-body,
.modal-footer {
	overflow: visible;
}

.modal-body .btn,
.modal-footer .btn {
	max-width: 100%;
	font-size: 0.95rem;
	padding: 0.7rem 1rem;
	white-space: normal;
	word-break: break-word;
}

.modal-footer .btn {
	font-size: 0.95rem;
	padding: 0.7rem 0.5rem;
	margin: 0;
}

@media (max-width: 576px) {
	.modal-body .btn,
	.modal-footer .btn {
		font-size: 0.85rem;
		padding: 0.6rem 0.5rem;
	}
} 

/* Footer Kontakt Fix */
.footer .contact {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.footer .contact a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.2rem;
	font-size: 0.95rem;
	color: var(--text-secondary);
	transition: color 0.2s;
	text-decoration: none;
}
.footer .contact a:hover {
	color: var(--primary-color);
}
.footer .contact a i {
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-right: 0.5rem;
}

/* Footer Social Icons Fix */
.footer .social {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.footer .social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
}
.footer .social a:hover {
	background: rgba(0,255,255,0.1);
	box-shadow: var(--neon-glow);
}
.footer .social a i {
	font-size: 1.2rem;
	color: var(--text-secondary);
	transition: color 0.2s;
}
.footer .social a:hover i {
	color: var(--primary-color);
}

/* Ticket Styles for tickets_select_event */
.ticket-info-box {
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
}

.ticket-info-box:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-glow-strong);
}

.ticket-info-box .ticket-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-shadow: var(--neon-glow);
}

.ticket-info-box .ticket-title svg {
	margin-right: 0.5rem;
	color: var(--primary-color);
}

.ticket-info-box .ticket-info {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	padding: 0.3rem 0;
}

.ticket-info-box .ticket-info span {
	display: block;
	margin-bottom: 0.2rem;
}

.ticket-info-box .ticket-info b {
	color: var(--accent-color);
	font-weight: 600;
}

.ticket-info-box .ticket-price {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: right;
	color: var(--accent-color);
	text-shadow: 0 0 10px var(--accent-color);
	margin-top: 0.5rem;
}

.ticket-info-box .input-group {
	margin-top: 0.5rem;
}

.ticket-info-box .input-group .btn {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.ticket-info-box .input-group .btn:hover {
	background: rgba(0, 255, 255, 0.1);
	box-shadow: var(--neon-glow);
}

.ticket-info-box .input-group .form-control {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	color: var(--text-primary);
	text-align: center;
	font-weight: 600;
}

.ticket-info-box .input-group .form-control:focus {
	background: rgba(20, 20, 20, 0.9);
	border-color: var(--secondary-color);
	box-shadow: 0 0 10px var(--secondary-color);
	color: var(--text-primary);
}

.ticket-info-box div[style*="border-bottom"] {
	border-bottom: 1px solid var(--primary-color) !important;
	margin-bottom: 1rem !important;
	padding: 1rem 0 !important;
}

/* Specific styles for ticket items in tickets page */
.ticket-info-box.box.box-1 div[style*="border-bottom"] {
	border-bottom: 1px solid var(--primary-color) !important;
	margin-bottom: 1rem !important;
	padding: 1rem 0 !important;
}

/* Ticket item specific styles */
.ticket-info-box.box.box-1 .ticket-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-shadow: var(--neon-glow);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ticket-info-box.box.box-1 .ticket-title svg {
	margin-right: 0.5rem;
	color: var(--primary-color);
}

.ticket-info-box.box.box-1 .ticket-info {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	padding: 0.3rem 0;
}

.ticket-info-box.box.box-1 .ticket-info span {
	display: block;
	margin-bottom: 0.2rem;
}

.ticket-info-box.box.box-1 .ticket-info b {
	color: var(--accent-color);
	font-weight: 600;
}

.ticket-info-box.box.box-1 .ticket-price {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: right;
	color: var(--accent-color);
	text-shadow: 0 0 10px var(--accent-color);
	margin-top: 0.5rem;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.ticket-info-box.box.box-1 .input-group {
	margin-top: 0.5rem;
}

.ticket-info-box.box.box-1 .input-group .btn {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	transition: all 0.3s ease;
	height: 45px;
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ticket-info-box.box.box-1 .input-group .btn:hover {
	background: rgba(0, 255, 255, 0.1);
	box-shadow: var(--neon-glow);
}

.ticket-info-box.box.box-1 .input-group .btn svg {
	width: 16px;
	height: 16px;
}

.ticket-info-box.box.box-1 .input-group .form-control {
	background: var(--card-bg);
	border: 1px solid var(--primary-color);
	color: var(--text-primary);
	text-align: center;
	font-weight: 600;
	height: 45px;
	line-height: 1.2;
	vertical-align: middle;
}

.ticket-info-box.box.box-1 .input-group .form-control:focus {
	background: rgba(20, 20, 20, 0.9);
	border-color: var(--secondary-color);
	box-shadow: 0 0 10px var(--secondary-color);
	color: var(--text-primary);
}

.title-label {
	color: var(--text-secondary);
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1px;
}

.event-info-value {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.no-tickets {
	text-align: center;
	font-size: 1.5rem;
	color: var(--text-secondary);
	padding: 3rem 0;
}

/* Event Select Styles */
.event-select-container {
	background: var(--card-bg);
	border: 2px solid var(--primary-color);
	border-radius: 16px;
	padding: 2rem;
	margin: 2rem 0;
	transition: all 0.3s ease;
	box-shadow: var(--neon-glow);
	min-height: 200px;
}

.event-select-container:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-glow-strong);
}

.event-item {
	background: rgba(20, 20, 20, 0.8);
	border: 1px solid var(--primary-color);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.event-item:hover {
	background: rgba(0, 255, 255, 0.1);
	box-shadow: var(--neon-glow);
	transform: translateX(5px);
}

.event-item h3 {
	color: var(--primary-color);
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	text-shadow: var(--neon-glow);
}

.event-item p {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.event-item .event-location {
	color: var(--secondary-color);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.event-item .event-dates {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.event-item .event-dates strong {
	color: var(--accent-color);
}

/* Breadcrumb Styles */
.breadcrumb {
	background: transparent;
	padding: 1rem 0;
	margin-bottom: 2rem;
}

.breadcrumb-item {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.breadcrumb-item.active {
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
}

.breadcrumb-item + .breadcrumb-item::before {
	color: var(--text-secondary);
	content: ">";
}

/* Page Title Styles */
.page-title {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	text-shadow: var(--neon-glow-strong);
	letter-spacing: 3px;
}

@media (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}
	
	.event-select-container {
		padding: 1.5rem;
	}
	
	.event-item {
		padding: 1rem;
	}
	
	.event-item h3 {
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.page-title {
		font-size: 1.5rem;
	}
	
	.event-select-container {
		padding: 1rem;
	}
	
	.event-item {
		padding: 0.8rem;
	}
	
	.event-item h3 {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.footer .contact a {
		font-size: 0.85rem;
	}
	.footer .social a {
		width: 28px;
		height: 28px;
	}
	.footer .social a i {
		font-size: 1rem;
	}
	
	.ticket-info-box {
		padding: 1.5rem;
	}
	
	.ticket-title {
		font-size: 1.2rem;
	}
	
	.ticket-price {
		font-size: 1.5rem;
	}
} 

/* --- FEATURE CARD EQUAL SIZING FIX --- */
.features-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.feature-card {
    min-width: 260px;
    max-width: 300px;
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-sizing: border-box;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: var(--neon-glow);
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 1200px) {
    .feature-card {
        min-width: 200px;
        max-width: 100%;
        height: 200px;
    }
}

@media (max-width: 900px) {
    .feature-card {
        min-width: 160px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .features-section .row {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        min-width: 90vw;
        height: auto;
        margin-bottom: 1.2rem;
    }
} 