/* NightAccess.org - Polski Portal Wydarzeń Kasynowych */
:root {
	--nightaccess-emerald: #10b981;
	--nightaccess-emerald-dark: #059669;
	--nightaccess-emerald-light: #34d399;
	--nightaccess-teal: #14b8a6;
	--nightaccess-amber: #f59e0b;
	--nightaccess-amber-dark: #d97706;
	--nightaccess-rose: #f43f5e;
	--nightaccess-slate-900: #0f172a;
	--nightaccess-slate-800: #1e293b;
	--nightaccess-slate-700: #334155;
	--nightaccess-slate-600: #475569;
	--nightaccess-slate-400: #94a3b8;
	--nightaccess-slate-300: #cbd5e1;
	--nightaccess-slate-100: #f1f5f9;
	--nightaccess-white: #ffffff;
	--nightaccess-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
	--nightaccess-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
	--nightaccess-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
	--nightaccess-shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);
	--nightaccess-gradient-main: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
	--nightaccess-gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	--nightaccess-gradient-card: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--nightaccess-slate-300);
	background: var(--nightaccess-slate-900);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

.nightaccess-app-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.nightaccess-main-area {
	flex: 1;
	padding-top: 72px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	color: var(--nightaccess-white);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1rem;
}

h1, .nightaccess-hero-title {
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	letter-spacing: -0.03em;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

h2, .nightaccess-section-title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
	margin: 0 0 1.25rem;
	color: var(--nightaccess-slate-400);
}

a {
	color: var(--nightaccess-emerald);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--nightaccess-emerald-light);
	text-decoration: underline;
}

/* Utilities */
.nightaccess-hidden {
	display: none !important;
}

.nightaccess-visible {
	display: block !important;
}

.nightaccess-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header & Navigation */
.nightaccess-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(51, 65, 85, 0.5);
	transition: all 0.3s ease;
}

.nightaccess-header-scrolled {
	box-shadow: var(--nightaccess-shadow-md);
}

.nightaccess-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.nightaccess-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--nightaccess-white);
	text-decoration: none;
	transition: transform 0.25s ease;
}

.nightaccess-logo:hover {
	transform: scale(1.02);
	color: var(--nightaccess-white);
	text-decoration: none;
}

.nightaccess-logo-icon {
	width: 46px;
	height: 46px;
	object-fit: contain;
	border-radius: 10px;
}

.nightaccess-logo-text {
	background: var(--nightaccess-gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nightaccess-nav-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nightaccess-nav-item {
	margin: 0;
}

.nightaccess-nav-link {
	display: inline-block;
	padding: 10px 18px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--nightaccess-slate-300);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.nightaccess-nav-link:hover,
.nightaccess-nav-link.active {
	color: var(--nightaccess-emerald);
	background: rgba(16, 185, 129, 0.1);
	text-decoration: none;
}

.nightaccess-nav-cta {
	background: var(--nightaccess-gradient-main);
	color: var(--nightaccess-slate-900) !important;
	font-weight: 600;
	padding: 10px 24px;
}

.nightaccess-nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--nightaccess-shadow-glow);
	background: var(--nightaccess-gradient-main);
	color: var(--nightaccess-slate-900) !important;
}

/* Mobile Menu Toggle */
.nightaccess-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: var(--nightaccess-slate-700);
	border: 2px solid var(--nightaccess-emerald);
	border-radius: 8px;
	cursor: pointer;
	gap: 5px;
	padding: 0;
}

.nightaccess-burger-line {
	width: 22px;
	height: 2px;
	background: var(--nightaccess-emerald);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nightaccess-burger.open .nightaccess-burger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nightaccess-burger.open .nightaccess-burger-line:nth-child(2) {
	opacity: 0;
}

.nightaccess-burger.open .nightaccess-burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.nightaccess-hero {
	position: relative;
	padding: 100px 24px 80px;
	background: var(--nightaccess-gradient-dark);
	overflow: hidden;
}

.nightaccess-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	right: -15%;
	width: 70%;
	height: 140%;
	background: radial-gradient(ellipse, rgba(16, 185, 129, 0.15) 0%, transparent 65%);
	pointer-events: none;
}

.nightaccess-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 50%;
	height: 100%;
	background: radial-gradient(ellipse, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.nightaccess-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 60px;
	align-items: center;
}

.nightaccess-hero-content h1 {
	margin-bottom: 1.5rem;
}

.nightaccess-hero-highlight {
	background: var(--nightaccess-gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nightaccess-hero-desc {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--nightaccess-slate-400);
	margin-bottom: 2rem;
	max-width: 540px;
}

.nightaccess-hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.nightaccess-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.nightaccess-btn-primary {
	background: var(--nightaccess-gradient-main);
	color: var(--nightaccess-slate-900);
	box-shadow: var(--nightaccess-shadow-sm);
}

.nightaccess-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--nightaccess-shadow-glow);
	color: var(--nightaccess-slate-900);
	text-decoration: none;
}

.nightaccess-btn-outline {
	background: transparent;
	color: var(--nightaccess-emerald);
	border: 2px solid var(--nightaccess-emerald);
}

.nightaccess-btn-outline:hover {
	background: rgba(16, 185, 129, 0.1);
	color: var(--nightaccess-emerald-light);
	text-decoration: none;
}

.nightaccess-hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.nightaccess-hero-badge {
	width: 320px;
	height: 320px;
	background: var(--nightaccess-gradient-card);
	border: 3px solid var(--nightaccess-slate-700);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: var(--nightaccess-shadow-lg), inset 0 0 60px rgba(16, 185, 129, 0.1);
	animation: floatBadge 5s ease-in-out infinite;
}

.nightaccess-hero-badge img {
	width: 70%;
	height: 70%;
	object-fit: contain;
	filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
}

@keyframes floatBadge {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* Events Section */
.nightaccess-events {
	padding: 90px 24px;
	background: var(--nightaccess-slate-800);
}

.nightaccess-events-header {
	text-align: center;
	margin-bottom: 60px;
}

.nightaccess-events-header h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--nightaccess-gradient-main);
	margin: 20px auto 0;
	border-radius: 2px;
}

.nightaccess-events-intro {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	font-size: 1.1rem;
}

.nightaccess-events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	max-width: 1280px;
	margin: 0 auto;
}

.nightaccess-event-card {
	background: var(--nightaccess-gradient-card);
	border: 1px solid var(--nightaccess-slate-700);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nightaccess-event-card:hover {
	transform: translateY(-8px);
	border-color: var(--nightaccess-emerald);
	box-shadow: var(--nightaccess-shadow-lg), 0 0 40px rgba(16, 185, 129, 0.15);
}

.nightaccess-card-header {
	padding: 24px 24px 0;
	border-bottom: 1px solid var(--nightaccess-slate-700);
}

.nightaccess-card-header h3 {
	color: var(--nightaccess-emerald);
	margin-bottom: 16px;
	font-size: 1.35rem;
}

.nightaccess-card-body {
	padding: 24px;
}

.nightaccess-event-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.nightaccess-event-list li {
	padding: 12px 0 12px 24px;
	color: var(--nightaccess-slate-300);
	border-bottom: 1px solid rgba(51, 65, 85, 0.5);
	position: relative;
	font-size: 0.95rem;
}

.nightaccess-event-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--nightaccess-emerald);
	font-size: 1.4rem;
	line-height: 1;
	top: 50%;
	transform: translateY(-50%);
}

.nightaccess-event-list li:last-child {
	border-bottom: none;
}

.nightaccess-card-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nightaccess-ticket-btn {
	display: block;
	padding: 12px 20px;
	text-align: center;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--nightaccess-slate-900);
	background: var(--nightaccess-gradient-main);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.nightaccess-ticket-btn:hover {
	transform: translateX(4px);
	box-shadow: var(--nightaccess-shadow-glow);
	color: var(--nightaccess-slate-900);
	text-decoration: none;
}

/* Features Section */
.nightaccess-features {
	padding: 90px 24px;
	background: var(--nightaccess-slate-900);
}

.nightaccess-features-header {
	text-align: center;
	margin-bottom: 60px;
}

.nightaccess-features-header h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--nightaccess-gradient-main);
	margin: 20px auto 0;
	border-radius: 2px;
}

.nightaccess-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	max-width: 1280px;
	margin: 0 auto;
}

.nightaccess-feature-box {
	background: var(--nightaccess-slate-800);
	border: 1px solid var(--nightaccess-slate-700);
	border-radius: 16px;
	padding: 36px 28px;
	text-align: center;
	transition: all 0.3s ease;
}

.nightaccess-feature-box:hover {
	border-color: var(--nightaccess-amber);
	transform: translateY(-6px);
	box-shadow: var(--nightaccess-shadow-md);
}

.nightaccess-feature-box h3 {
	color: var(--nightaccess-amber);
	margin-bottom: 14px;
}

.nightaccess-feature-box p {
	line-height: 1.75;
	margin: 0;
}

/* Footer */
.nightaccess-footer {
	background: var(--nightaccess-slate-900);
	border-top: 1px solid var(--nightaccess-slate-700);
	padding: 60px 24px 32px;
}

.nightaccess-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
	max-width: 1280px;
	margin: 0 auto 40px;
}

.nightaccess-footer-col h4 {
	color: var(--nightaccess-white);
	margin-bottom: 20px;
	font-size: 1.15rem;
}

.nightaccess-footer-col p {
	color: var(--nightaccess-slate-400);
	line-height: 1.7;
	margin-bottom: 16px;
}

.nightaccess-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nightaccess-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--nightaccess-slate-400);
}

.nightaccess-footer-contact-item i {
	color: var(--nightaccess-emerald);
	margin-top: 3px;
	width: 16px;
}

.nightaccess-footer-contact-item a {
	color: var(--nightaccess-slate-400);
}

.nightaccess-footer-contact-item a:hover {
	color: var(--nightaccess-emerald);
}

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

.nightaccess-footer-links li {
	margin-bottom: 12px;
}

.nightaccess-footer-links a {
	color: var(--nightaccess-slate-400);
	transition: color 0.25s ease;
}

.nightaccess-footer-links a:hover {
	color: var(--nightaccess-emerald);
}

.nightaccess-footer-divider {
	border: 0;
	height: 1px;
	background: var(--nightaccess-slate-700);
	margin: 0 0 32px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.nightaccess-footer-bottom {
	max-width: 1280px;
	margin: 0 auto;
}

.nightaccess-disclaimer {
	background: rgba(16, 185, 129, 0.05);
	border: 1px solid var(--nightaccess-slate-700);
	border-left: 4px solid var(--nightaccess-emerald);
	border-radius: 8px;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.nightaccess-disclaimer p {
	margin-bottom: 10px;
	font-size: 0.9rem;
	color: var(--nightaccess-slate-400);
}

.nightaccess-disclaimer p:last-child {
	margin-bottom: 0;
}

.nightaccess-copyright {
	text-align: center;
	color: var(--nightaccess-slate-400);
	font-size: 0.875rem;
}

.nightaccess-copyright a {
	color: var(--nightaccess-slate-400);
}

.nightaccess-copyright a:hover {
	color: var(--nightaccess-emerald);
}

/* Cookie Consent */
.nightaccess-cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 600px;
	background: var(--nightaccess-slate-800);
	border: 1px solid var(--nightaccess-emerald);
	border-radius: 14px;
	padding: 24px;
	box-shadow: var(--nightaccess-shadow-lg);
	z-index: 9999;
	animation: slideUpCookie 0.4s ease;
}

@keyframes slideUpCookie {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nightaccess-cookie-content h5 {
	color: var(--nightaccess-white);
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.nightaccess-cookie-content p {
	color: var(--nightaccess-slate-400);
	font-size: 0.9rem;
	margin-bottom: 16px;
}

.nightaccess-cookie-content a {
	color: var(--nightaccess-emerald);
}

.nightaccess-cookie-btn {
	padding: 10px 28px;
	background: var(--nightaccess-gradient-main);
	color: var(--nightaccess-slate-900);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nightaccess-cookie-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--nightaccess-shadow-glow);
}

/* Page Content */
.nightaccess-page {
	padding: 50px 24px;
}

.nightaccess-page-panel {
	max-width: 1000px;
	margin: 0 auto;
	background: var(--nightaccess-slate-800);
	border: 1px solid var(--nightaccess-slate-700);
	border-radius: 16px;
	padding: 48px;
}

.nightaccess-page-title {
	text-align: center;
	margin-bottom: 2rem;
}

.nightaccess-page-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--nightaccess-gradient-main);
	margin: 16px auto 0;
	border-radius: 2px;
}

/* Alerts */
.nightaccess-alert {
	padding: 18px 22px;
	border-radius: 10px;
	margin-bottom: 24px;
	border-left: 4px solid;
}

.nightaccess-alert-info {
	background: rgba(16, 185, 129, 0.08);
	border-left-color: var(--nightaccess-emerald);
}

.nightaccess-alert-success {
	background: rgba(52, 211, 153, 0.08);
	border-left-color: var(--nightaccess-emerald-light);
}

.nightaccess-alert-error {
	background: rgba(244, 63, 94, 0.08);
	border-left-color: var(--nightaccess-rose);
}

.nightaccess-alert p {
	margin: 0;
	color: var(--nightaccess-slate-300);
}

.nightaccess-alert strong {
	color: var(--nightaccess-white);
}

.nightaccess-alert h4 {
	margin-bottom: 8px;
	color: var(--nightaccess-white);
}

/* Contact Page */
.nightaccess-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	gap: 48px;
	margin-top: 32px;
}

.nightaccess-contact-info h3 {
	color: var(--nightaccess-white);
	margin-bottom: 20px;
}

.nightaccess-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nightaccess-info-list li {
	padding: 16px 0;
	border-bottom: 1px solid var(--nightaccess-slate-700);
	color: var(--nightaccess-slate-400);
}

.nightaccess-info-list li:last-child {
	border-bottom: none;
}

.nightaccess-info-list strong {
	display: block;
	color: var(--nightaccess-white);
	margin-bottom: 6px;
}

.nightaccess-info-list i {
	color: var(--nightaccess-emerald);
	margin-right: 8px;
}

.nightaccess-form-section h3 {
	color: var(--nightaccess-white);
	margin-bottom: 24px;
}

.nightaccess-form-group {
	margin-bottom: 22px;
}

.nightaccess-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--nightaccess-slate-300);
	font-size: 0.95rem;
}

.nightaccess-form-label i {
	color: var(--nightaccess-emerald);
	margin-right: 6px;
}

.nightaccess-form-input {
	width: 100%;
	padding: 14px 18px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--nightaccess-white);
	background: var(--nightaccess-slate-900);
	border: 2px solid var(--nightaccess-slate-700);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.nightaccess-form-input:focus {
	outline: none;
	border-color: var(--nightaccess-emerald);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.nightaccess-form-input::placeholder {
	color: var(--nightaccess-slate-600);
}

textarea.nightaccess-form-input {
	resize: vertical;
	min-height: 140px;
}

.nightaccess-submit-btn {
	padding: 14px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--nightaccess-slate-900);
	background: var(--nightaccess-gradient-main);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nightaccess-submit-btn:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: var(--nightaccess-shadow-glow);
}

.nightaccess-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.nightaccess-btn-center {
	text-align: center;
}

/* FAQ Section */
.nightaccess-faq {
	margin-top: 60px;
}

.nightaccess-faq h2 {
	text-align: center;
	margin-bottom: 40px;
}

.nightaccess-faq h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--nightaccess-gradient-main);
	margin: 14px auto 0;
	border-radius: 2px;
}

.nightaccess-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 24px;
}

.nightaccess-faq-item {
	background: var(--nightaccess-slate-900);
	border: 1px solid var(--nightaccess-slate-700);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.nightaccess-faq-item:hover {
	border-color: var(--nightaccess-emerald);
	transform: translateY(-4px);
}

.nightaccess-faq-item h4 {
	color: var(--nightaccess-white);
	margin-bottom: 12px;
	font-size: 1.05rem;
}

.nightaccess-faq-item h4 i {
	color: var(--nightaccess-emerald);
	margin-right: 8px;
}

.nightaccess-faq-item p {
	margin: 0;
	line-height: 1.7;
}

/* Legal Pages */
.nightaccess-legal-section {
	margin-bottom: 36px;
}

.nightaccess-legal-section h2 {
	text-align: left;
	font-size: 1.6rem;
	margin-bottom: 18px;
	color: var(--nightaccess-white);
}

.nightaccess-legal-section h2::after {
	display: none;
}

.nightaccess-legal-section h3 {
	font-size: 1.2rem;
	margin-top: 24px;
	margin-bottom: 12px;
	color: var(--nightaccess-emerald);
}

.nightaccess-legal-section p {
	margin-bottom: 14px;
	line-height: 1.75;
}

.nightaccess-legal-section ul,
.nightaccess-legal-section ol {
	margin-bottom: 18px;
	padding-left: 24px;
	color: var(--nightaccess-slate-400);
}

.nightaccess-legal-section li {
	margin-bottom: 10px;
	line-height: 1.7;
}

/* Spacing */
.nightaccess-mt-sm {
	margin-top: 20px;
}

.nightaccess-mt-md {
	margin-top: 32px;
}

.nightaccess-mt-lg {
	margin-top: 48px;
}

/* Responsive Design */
@media (max-width: 992px) {
	.nightaccess-hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 48px;
	}

	.nightaccess-hero-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.nightaccess-hero-actions {
		justify-content: center;
	}

	.nightaccess-hero-badge {
		width: 260px;
		height: 260px;
	}

	.nightaccess-contact-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.nightaccess-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.nightaccess-burger {
		display: flex;
	}

	.nightaccess-nav-menu {
		position: fixed;
		top: 72px;
		left: -100%;
		width: 280px;
		height: calc(100vh - 72px);
		background: var(--nightaccess-slate-800);
		flex-direction: column;
		align-items: stretch;
		padding: 28px 20px;
		gap: 8px;
		transition: left 0.35s ease;
		border-right: 1px solid var(--nightaccess-slate-700);
		overflow-y: auto;
	}

	.nightaccess-nav-menu.open {
		left: 0;
	}

	.nightaccess-nav-link {
		width: 100%;
		padding: 14px 18px;
		font-size: 1rem;
	}

	h1, .nightaccess-hero-title {
		font-size: 2rem;
	}

	h2, .nightaccess-section-title {
		font-size: 1.5rem;
	}

	.nightaccess-events-grid {
		grid-template-columns: 1fr;
	}

	.nightaccess-features-grid {
		grid-template-columns: 1fr;
	}

	.nightaccess-footer-grid {
		grid-template-columns: 1fr;
	}

	.nightaccess-page-panel {
		padding: 32px 24px;
	}

	.nightaccess-cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	.nightaccess-nav {
		padding: 0 16px;
		height: 66px;
	}

	.nightaccess-logo {
		font-size: 1.25rem;
	}

	.nightaccess-logo-icon {
		width: 38px;
		height: 38px;
	}

	.nightaccess-hero {
		padding: 80px 16px 60px;
	}

	.nightaccess-hero-badge {
		width: 200px;
		height: 200px;
	}

	.nightaccess-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}

	.nightaccess-events,
	.nightaccess-features {
		padding: 60px 16px;
	}

	.nightaccess-event-card {
		border-radius: 12px;
	}

	.nightaccess-page {
		padding: 32px 16px;
	}

	.nightaccess-page-panel {
		padding: 24px 18px;
		border-radius: 12px;
	}

	.nightaccess-faq-grid {
		grid-template-columns: 1fr;
	}

	.nightaccess-faq-item {
		padding: 20px;
	}
}

