/* ============================== */
/* ============================== */
/* ============================== */

/* === CORE CSS START === */
/* === CORE CSS START === */
/* === CORE CSS START === */

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

*::selection, *::-moz-selection, *::-webkit-selection {
	color: black;
	background: white;
}

::-webkit-scrollbar {
	width: 16px;
	padding-left: 25px;
}

::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.25); /* Scrollbar thumb */
	border-radius: 16px;
	border: 4px solid transparent;
	background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255,255,255,0.5); /* Scrollbar thumb hovered */
	background-clip: content-box;
}

::-webkit-scrollbar-track {
	background-color: transparent; /* Scrollbar background */
}

:root {
	font-size: 1rem;
	--color-accent: rgb(255 100 50);
	--color-text-main: white;
	--color-text-muted: rgba(255, 255, 255, 0.7);
	--color-text-faint: rgba(255, 255, 255, 0.5);
	--color-bg-dark: #000;
	--color-border-light: rgba(255, 255, 255, 0.1);
	--font-primary: 'Archivo', 'Inter', Helvetica, system-ui;
	--radius-full: 100px;
	--radius-card: 12px;
	--radius-lg: 24px;
	--shadow-glow: 0 0 20px white;
	--transition-function: cubic-bezier(0.25, 0.1, 0.25, 1.0);
	--transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	
	--bg-card: #111111;
	--bg-card-hover: #1a1a1a;
	--gold-dark: #8B6914;
	--gold-main: #D4A853;
	--gold-light: #F0D890;
	--gold-bright: #FFE4A0;
	--gold-glow: rgba(212, 168, 83, 0.5);
	
	--green-gem: #4ade80;
	--green-glow: rgba(74, 222, 128, 0.5);

	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-gold: rgba(212, 168, 83, 0.3);

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 100px;
}

@view-transition {
	navigation: auto;
}

body, html, main {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	line-height: 1.6;
	overflow-x: hidden;
	background: black;
	color: white;
}

body, html, main, button {
	font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
}

p {
	font-family: var(--font-primary);
}

h1 { font-size: 4rem; font-weight: 600; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1rem; }

button {
	outline: none;
	border: none;
	cursor: pointer;
	touch-action: manipulation;
	transition: all 0.2s (--transition-function);
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s var(--transition-function);
	text-decoration: none;
}

.noselect, img, svg, br, button {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

pre {
	margin: 0;
	background: transparent !important;
}

/* === CORE CSS END === */
/* === CORE CSS END === */
/* === CORE CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === SCENE CSS START === */
/* === SCENE CSS START === */
/* === SCENE CSS START === */

#scene {
	height: 100%;
	width: 100%;
	position: absolute;
	overflow: hidden;
}

#scene:after {
	content: '';
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-image: url(noise-overlay.gif);
	opacity: .09;
	pointer-events: none;
	filter: brightness(0.3) grayscale(1);
}

#vfx-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.5s var(--transition-function);
	pointer-events: none;
}

#transition {
	translate: none;
	rotate: none;
	scale: none;
	transform: translate(150%, 0px);
	visibility: hidden;
}

#watermark {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: baseline;
	mix-blend-mode: overlay;
	padding: 5vh;
	pointer-events: none;
}

#watermark .wrapper {
	max-width: 1280px;
	display: flex;
	justify-content: end;
}

#watermark .wrapper img {
	filter: contrast(0) brightness(10) drop-shadow(0px 0px 1px black) drop-shadow(0px 0px 0px rgb(0 0 0 / 50%));
	width: clamp(100px, 25vh, calc(255px + 4rem)); height: fit-content;
}

#choices {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 1rem;
	counter-reset: choice-number;
}

#choices p {
	counter-increment: choice-number;
	position: relative;
	padding-left: 3rem; 
}

#choices p::before {
	content: counter(choice-number) ". ";
	position: absolute;
	left: 1.5rem;
	top: 0; 
}

#choices p::after {
	content:'';
	position: absolute;
	left: 0;
	top: 0.5em;
	opacity: 0;
	transition: all 0.2s var(--transition-function);
}

#choices p:hover::after {
	opacity: 1;
}

#transition {
	position: fixed;
	left: 0;
	width: 200%;
	height: calc(100% + 200px);
	top: -100px;
	background-image: url('https://cdn.forevle.com/vfx/gui_transition.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transform-origin: 0% 100%;
	visibility: hidden;
	transform: translateX(-2748px); 
}

.scenery {
	width: 100%; height: 100%; background: black; position: absolute;
}

.scenery .container {
	width: 100%;height: 100%;position: absolute;padding: 6vh 0;max-width:100%;
}

.scenery .wrapper {
	width: 100%; height: 100%; position: relative; transition: all 0.2s var(--transition-function);
}

.black-triangle,
.scenery .container p,
.scenery .container .dialogue-options .freeform {
	font-family: 'Archivo Narrow'; font-size: 1.5rem; text-align: center; text-shadow: 0 0 3px black, 0 0 3px black, 0 0 3px black, 0 0 3px black; filter: drop-shadow(0px 0px 2.5px black); -webkit-text-stroke: 0.25px black;
}

.scenery .container .timer {
	display: flex; justify-content: center; padding: 4vh 0; transition: all 0.2s var(--transition-function);
}

.scenery .container .timer .progress-track {
	width: 50vw; max-width: 600px; height: 6px; background: rgba(0,0,0,0.5); border-radius: 3px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}

.scenery .container .timer .progress-fill {
	width: 0%; height: 100%; background: #ffb322; box-shadow: 0 0 5px #ffb322; border-radius: 3px;
}

.scenery .container .dialogue {
    width: 100%; height: 100%; display: flex; padding: 10vh; flex-direction: column-reverse; justify-content: end; align-items: center; gap: 5vh;
}

.scenery .container .dialogue-line {
	display: flex; justify-content: center; align-items: end; transition: all 0.2s var(--transition-function);
}

.scenery .container .dialogue-options {
	display: flex; flex-direction: column; gap: 1rem; justify-content: end; align-items: end; transition: all 0.2s var(--transition-function);
}

.scenery .container .dialogue-line,
.scenery .container .dialogue-options {
	width: 100%; max-width: 1280px;
}

.black-triangle,
.scenery .container .dialogue-options p,
.scenery .container .dialogue-options .freeform {
	color: #ffb322; padding: 0 1rem; cursor: pointer; transition: all 0.2s var(--transition-function);
}

.scenery .container .dialogue-options p:hover {
	background: linear-gradient(90deg, transparent, rgb(145 100 0 / 50%), transparent); letter-spacing: 0.00625rem;
}

.scenery .container .dialogue-options .freeform {
	display: flex; align-items: center; justify-content: flex-end;
}

.scenery .container .dialogue-options .freeform input {
	background: transparent; border: none; outline: none; font-family: inherit; font-size: inherit; color: inherit; text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black;
	filter: drop-shadow(0px 0px 2.5px black); -webkit-text-stroke: 0.25px black; text-align: left; padding: 0 1rem; font-family: system-ui; width: 100%;
	-webkit-mask-image: linear-gradient(to right, black 75%, transparent); mask-image: linear-gradient(to right, black 75%, transparent);
	position: relative; top: -2px;
}

.scenery .container .dialogue-options .freeform input::placeholder {
	color: #ffb322; opacity: 0.9; font-style: italic; text-shadow: 0 0 2px black, 0 0 2px black; -webkit-text-stroke: 0.25px black;
}

.scenery .container .dialogue-options .freeform input:focus {
	background: rgba(255, 179, 34, 0.1); border-radius: 3px;
}

.scenery .container .dialogue-options .freeform button {
	font-family: inherit; font-size: 1.5rem; cursor: pointer; padding-left: 0.75rem; line-height: 1; text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black;
	filter: drop-shadow(0px 0px 2.5px black); -webkit-text-stroke: 0.25px black; color: #ffb322; background: none; border: none; padding-right: 0;
}

.scenery .container .dialogue-options .freeform button:hover {
	filter: drop-shadow(0px 0px 4px #ffb322);
}

#choices p::after,
.black-triangle {
	display: inline-block;
	width: 0; height: 0;
	border-top: 7.5px solid transparent !important;
	border-bottom: 7.5px solid transparent !important;
	border-left: 12.5px solid #ffb322 !important;
}

.container-left {
	bottom: 12vh !important;
}

@keyframes countdown {
	from {
		width: 100%;
	}

	to {
		width: 0%;
	}
}

@media screen and (max-width: 800px) {
	#choices p::after,
	.black-triangle {
		border-top: 5px solid transparent !important;
		border-bottom: 5px solid transparent !important;
		border-left: 10px solid #ffb322 !important;
	}
	
	#choices p::after {
		transform: translateX(5px) translateY(-0.11rem);
	}
	
	.container-left {
		bottom: 0 !important;
	}
	
	.scenery .container {
		padding: 0;
	}
	
	.scenery .container .dialogue {
		padding: 10vh 2rem;
	}
	
	.black-triangle,
	.scenery .container p,
	.scenery .container .dialogue-options .freeform {
		font-size: 1rem;
	}
	
	.scenery .container .dialogue-options .freeform input {
		padding: 0 0.5rem;
	}
}

/* === SCENE CSS END === */
/* === SCENE CSS END === */
/* === SCENE CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === MAIN CSS START === */
/* === MAIN CSS START === */
/* === MAIN CSS START === */

#unsupported-device {
	text-align: center; width: 100vw; height: 100vh; pointer-events: all; position: fixed; z-index: 10000; background: black; align-items: center; justify-content: center; padding: 2rem; display: none;
}

/* Layout & Containers */
.app-root {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	position: relative;
}

.layout-layer {
	width: 100%;
	height: 0;
	position: relative;
}

.full-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.container {
	width: 100%;
	position: relative;
	max-width: calc(1200px + 30px + 4rem);
	padding: 0 2rem;
}

.container-hero {
	width: 100%;
	position: relative;
	max-width: calc(1200px + 30px + 4rem);
	padding: 0 2rem;
	margin-bottom: 4rem;
}

.container-footer {
	width: 100%;
	position: relative;
	max-width: calc(1200px + 30px + 4rem);
	padding: 8rem 2rem 3rem;
}

.spacer-section {
	margin-top: 6rem;
}

/* Typography */
.text-accent-subtitle {
	font-size: 1.7rem;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-accent);
}

.text-lead {
    font-size: 1.3rem;
    color: var(--color-text-muted);
	display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	transform: translate3d(0, 0, 0);
	will-change: transform; 
}

.text-meta {
	opacity: 0.5;
	font-weight: 300;
	text-align: center;
}

.text-disclaimer {
	margin-top: 2rem;
	opacity: 0.25;
	font-size: 1rem;
}

.section-heading {
	font-size: 1.7rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	width: 100%;
	text-transform: capitalize;
}

.heading-lg {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.heading-xl {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.text-body-lg {
	font-size: 1.2rem;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: 2rem;
}

/* Buttons */
.btn-glass {
	font-size: 1.3rem;
	padding: 0.8rem 2rem;
	border-radius: var(--radius-full);
	box-shadow: inset 0px 0px 0px 2px rgb(255 255 255 / 10%);
	background: transparent;
	color: white;
	backdrop-filter: blur(10px) contrast(0.5) saturate(2);
	filter: drop-shadow(0px 0px 20px rgb(255 255 255 / 25%));
}

.btn-base {
	font-size: 1.3rem;
	padding: 0.8rem 4rem;
	border-radius: var(--radius-full);
	cursor: pointer;
}

.btn-filled {
	/* Assumed default background from context */
	background: white;
	color: black;
	border: none;
}

.btn-outline {
	background: transparent;
	color: white;
	box-shadow: 0px 0px 0px 2px white inset;
}

.btn-sm-outline {
	margin-left: auto;
	padding: 0.5rem 1.5rem;
	border-radius: var(--radius-full);
	border: 1px solid white;
	background: transparent;
	color: white;
}

.btn-block-soft {
	margin-top: 2rem;
	width: 100%;
	padding: 0.8rem;
	background: rgb(255 255 255 / 10%);
	color: white;
	border: none;
	border-radius: 8px;
}

.btn-pill-outline {
	font-size: 1.1rem;
	padding: 0.8rem 2rem;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: var(--radius-full);
	cursor: pointer;
}

.btn-white-cta {
	font-size: 1.2rem;
	padding: 1rem 3rem;
	background: white;
	color: black;
	border-radius: var(--radius-full);
	border: none;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s var(--transition-function);
}

/* Header & Hero */
.header-padding {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: end;
	padding: 2rem 10vw;
}

.navbar-fixed {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 10;
    height: 130px;
    margin: 2rem 0;
    padding-top: 1.5rem;
	gap: 1rem;
}

.navbar-avatar {
	width: 48px;
	height: 48px;
	background: red;
	border-radius: 100px;
	background-size: contain;
	background: white;
	cursor: pointer;
	filter: drop-shadow(0px 2px 4px rgb(0 0 0 / 50%));
}

.navbar-avatar:hover,
.navbar-avatar:active {
	filter: drop-shadow(0px 2px 4px rgb(0 0 0 / 80%));
}

.avatar-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 90; /* High, but below the menu */
    display: none;
    cursor: default;
}

#avatar-toggle:checked ~ .avatar-backdrop {
    display: block;
}

.navbar-avatar-contextmenu {
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem;
    height: fit-content;
    border-radius: 20px;
    min-width: 200px;
    gap: 0.5rem;
    font-size: 18px;
    box-shadow: inset 0px 0px 0px 2px rgb(255 255 255 / 10%);
    background: linear-gradient(45deg, rgb(0 0 0 / 25%), transparent, rgb(0 0 0 / 30%));
    color: white;
    backdrop-filter: blur(10px) contrast(0.5) saturate(2);
    filter: drop-shadow(0px 0px 20px rgb(255 255 255 / 25%));
	opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top right;
    pointer-events: none;
	z-index: 100;
	transition: 
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.3s var(--transition-bounce);
}

.navbar-avatar-contextmenu a {
	display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    filter: drop-shadow(0px 0px 4px rgb(0 0 0 / 50%));
}

.navbar-avatar-contextmenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateX(4px); /* Little nudge */
}

.navbar-avatar-contextmenu a i {
    width: 20px;
    text-align: center;
    opacity: 0.7;
}

#avatar-toggle:checked ~ .layout-layer .navbar-avatar-contextmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.bg-hero {
	background: radial-gradient(transparent, transparent, rgb(0 0 0 / 50%)), linear-gradient(0deg, rgb(0 0 0 / 100%), rgb(0 0 0 / 75%), transparent, transparent), var(--hero-poster-image);
	height: 100vh;
	align-content: center;
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
}

.hero-layout {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	max-width: 1000px;
}

.hero-top {
	height: 100%;
	width: 100%;
	padding: 2rem 0;
}

.nav-row {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.logo-hero {
	height: 130px;
	filter: contrast(0) brightness(10) drop-shadow(2px 2px 3px rgb(0 0 0 / 50%));
}

.nav-menu {
	display: flex;
	gap: 2.5rem;
	margin-top: 1.5rem;
	font-weight: 450;
	font-size: 1.3rem;
	padding-left: 1rem;
	align-items: center;
	filter: drop-shadow(2px 2px 3px rgb(0 0 0));
	flex-shrink: 0;
}

.hero-bottom {
	height: 100%;
	width: 100%;
	padding: 2rem 0 4rem;
	display: flex;
	flex-direction: column;
	justify-content: end;
	filter: drop-shadow(0px 0px 4px rgb(0 0 0 / 50%));
}

.flex-align-center {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.grid-dual-rows {
	display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.grid-dual-rows .scroll-row {
	grid-template-columns: 1fr 1fr !important;
}

.icon-badge {
	height: 40px;
}

.action-group {
	display: grid;
    grid-template-columns: 2fr 1fr;
	align-items: center;
	margin-top: 2rem;
	gap: 1rem;
}

.action-group .buttons-group {
	display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%;
}

.action-group .stats-group {
	display: flex;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

.stars-row {
	display: flex;
	filter: contrast(0) brightness(10);
	gap: 8px;
	transform: translateY(-2px);
}

.icon-star {
	height: 28px;
}

.pegi-row {
	display: none;
	gap: 4px;
	width: 100%;
	justify-content: end;
}

.icon-rating {
	height: 48px;
}

/* Tags & Cards */
.tags-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
}

.tag-pill {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 2rem;
	border: 1px solid rgb(255 255 255 / 10%);
	border-radius: var(--radius-full);
	cursor: pointer;
	background: rgb(255 255 255 / 3%);
	transition: all 0.2s var(--transition-function);
}

.tag-icon {
	font-size: 1.2rem;
}

.tag-label {
	font-weight: 500;
}

.tag-more {
	font-weight: 500;
	opacity: 0.7;
}

.scroll-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1.5rem;
	padding-bottom: 1rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	margin-top: 2rem;
}

.card-root {
	cursor: pointer;
	transition: all 0.3s var(--transition-function);
}

.poster {
	aspect-ratio: 2/3;
	border-radius: var(--radius-card);
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--color-border-light);
}

.poster-default {
	background: linear-gradient(180deg, rgba(50, 50, 50, 1) 0%, rgba(20, 20, 20, 1) 100%);
}

.poster-blue {
	background: linear-gradient(180deg, rgba(40, 40, 60, 1) 0%, rgba(10, 10, 20, 1) 100%);
}

.poster-brown {
	background: linear-gradient(180deg, rgba(60, 50, 40, 1) 0%, rgba(20, 15, 10, 1) 100%);
}

.poster-green {
	background: linear-gradient(180deg, rgba(30, 50, 30, 1) 0%, rgba(10, 20, 10, 1) 100%);
}

.poster-purple {
	background: linear-gradient(180deg, rgba(50, 30, 50, 1) 0%, rgba(20, 10, 20, 1) 100%);
}

.overlay {
	width: 100%;
	height: 100%;
}

.overlay-default {
	background: radial-gradient(circle at top right, #4a3b3b, transparent);
}

.overlay-blue {
	background: radial-gradient(circle at top left, #2b3a55, transparent);
}

.overlay-brown {
	background: radial-gradient(circle at bottom, #554433, transparent);
}

.overlay-green {
	background: radial-gradient(circle at center, #2e462e, transparent);
}

.overlay-purple {
	background: radial-gradient(circle at bottom right, #50304f, transparent);
}

.rating-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.6);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	backdrop-filter: blur(4px);
}

.card-title {
	font-weight: 500;
	font-size: 1.1rem;
	margin: 0;
}

.card-meta {
	opacity: 0.5;
	font-size: 0.9rem;
}

/* Lists & Grids */
.grid-cols-layout {
	margin-top: 6rem;
	display: flex;
	gap: 4rem;
	flex-wrap: wrap;
}

.col-main {
	flex: 2;
	min-width: 300px;
}

.col-sidebar {
	flex: 1;
	min-width: 300px;
}

.flex-col-gap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.list-card {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: rgb(255 255 255 / 2%);
	padding: 1rem;
	border-radius: var(--radius-card);
	border: 1px solid rgb(255 255 255 / 5%);
	transition: all 0.2s var(--transition-function);
	cursor: pointer;
}

.rank-num {
	font-size: 1.5rem;
	font-weight: 700;
	color: #555;
	width: 30px;
}

.thumb-placeholder {
	width: 80px;
	height: 110px;
	background: #222;
	border-radius: 8px;
}

.flex-col-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.list-title {
	margin: 0;
	font-size: 1.2rem;
}

.list-subtitle {
	margin: 0.2rem 0 0;
	opacity: 0.5;
	font-size: 0.9rem;
}

.list-simple-col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.list-item-simple {
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	padding-bottom: 1rem;
	cursor: pointer;
}

/* Features Section */
.features-layout {
	margin-top: 10rem;
	display: flex;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.icon-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

.feature-text {
	font-size: 1.1rem;
	font-weight: 400;
}

.illustration-stage {
	flex: 1;
	min-width: 300px;
	height: 400px;
	position: relative;
}

.abs-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}

.ui-desktop {
	position: absolute;
	top: 10%;
	right: 0;
	width: 70%;
	height: 60%;
	background: linear-gradient(135deg, rgb(40, 40, 45), rgb(20, 20, 25));
	border: 1px solid rgb(255 255 255 / 15%);
	border-radius: 12px;
	z-index: 1;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ui-header {
	padding: 1rem;
	display: flex;
	gap: 0.5rem;
	border-bottom: 1px solid rgb(255 255 255 / 5%);
}

.ui-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgb(255 255 255 / 20%);
}

.ui-content {
	padding: 2rem;
}

.ui-mobile {
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 160px;
	height: 280px;
	background: linear-gradient(180deg, rgb(30, 30, 35), rgb(10, 10, 15));
	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: 24px;
	z-index: 2;
	box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6);
	overflow: hidden;
}

.skel-bar {
	background: rgb(255 255 255 / 10%);
	border-radius: 100px;
	margin-bottom: 0.5rem;
}

.skel-60 {
	width: 60%;
	height: 10px;
	margin-bottom: 1rem;
}

.skel-80 {
	width: 80%;
	height: 8px;
	background: rgb(255 255 255 / 5%);
}

.skel-75 {
	width: 75%;
	height: 8px;
	background: rgb(255 255 255 / 5%);
}

/* Creator Section */
.creator-section {
	margin-top: 8rem;
}

.text-center-limit {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.grid-features {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.feature-card {
	flex: 1;
	min-width: 300px;
	padding: 2.5rem;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	filter: blur(40px);
	pointer-events: none;
}

.glow-orange {
	background: radial-gradient(circle, rgba(255, 100, 50, 0.15) 0%, transparent 70%);
}

.glow-blue {
	background: radial-gradient(circle, rgba(100, 200, 255, 0.15) 0%, transparent 70%);
}

.glow-purple {
	background: radial-gradient(circle, rgba(200, 100, 255, 0.15) 0%, transparent 70%);
}

.icon-box {
	margin-bottom: 2rem;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.icon-orange {
	background: rgba(255, 100, 50, 0.1);
	border: 1px solid rgba(255, 100, 50, 0.2);
}

.icon-blue {
	background: rgba(100, 200, 255, 0.1);
	border: 1px solid rgba(100, 200, 255, 0.2);
}

.icon-purple {
	background: rgba(200, 100, 255, 0.1);
	border: 1px solid rgba(200, 100, 255, 0.2);
}

/* FAQ */
.faq-section {
	margin-top: 8rem;
	padding-bottom: 4rem;
}

.faq-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
}

.label-overline {
	text-transform: uppercase;
	color: var(--color-accent);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 1rem;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
}

.faq-details {
	cursor: pointer;
}

.faq-summary {
	font-size: 1.3rem;
	font-weight: 500;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s var(--transition-function);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-content-wrapper {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--transition-function), opacity 0.3s var(--transition-function);
}

.faq-toggle-icon {
	opacity: 0.5;
	font-size: 1.5rem;
	display: inline-block;
    transition: all 0.3s var(--transition-function);
}

details[data-expanded="true"] .faq-toggle-icon {
    transform: scale(0);
}

.faq-answer {
	margin-top: 1rem;
	opacity: 0.7;
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 90%;
}

/* CTA */
.cta-card {
	margin-top: 8rem;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	text-align: center;
	padding: 6rem 2rem;
}

.bg-cover-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
    height: 140px;
    background: linear-gradient(180deg, rgba(255, 100, 50, 0.2), transparent);
}

.bg-img {
	background: url('https://images.unsplash.com/photo-1519608487953-e999c86e7455?q=80&w=2000&auto=format&fit=crop') center/cover;
	filter: brightness(0.4);
	height: 100%;
}

.bg-grad {
	background: radial-gradient(circle, transparent 0%, #000000 100%); height: 100%;
}

.relative-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

/* Footer */
.footer-root {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4rem;
	border-top: 1px solid rgb(35 35 35);
	background: rgb(255 255 255 / 5%);
}

.footer-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
}

.footer-brand-col {
	flex: 2;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-logo-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	filter: contrast(0) brightness(10);
}

.footer-logo-img {
	opacity: 0.9;
	width: 80%;
}

.footer-col {
	flex: 1;
	min-width: 160px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-title {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	color: white;
	opacity: 0.4;
	letter-spacing: 1px;
}

.footer-link-list {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer-link {
	cursor: pointer;
	opacity: 0.7;
	text-decoration: none;
	color: white;
	transition: all 0.2s var(--transition-function);
}

.footer-bottom {
	margin-top: 6rem;
	padding-top: 2rem;
	border-top: 1px solid rgb(255 255 255 / 10%);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}

.text-copyright {
	opacity: 0.4;
	font-size: 0.9rem;
}

.eclipse-btn {
	position: relative;
	font-size: 1.3rem;
	padding: 0.8rem 2rem;
	background: transparent;
	color: white;
	border-radius: 100px;
	border: none;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.0);
	transition: all 0.3s var(--transition-function);
}

.eclipse-glow-wrapper {
	position: absolute;
	inset: 0;
	border-radius: 100px;
	pointer-events: none;
	filter: drop-shadow(0 0 5px white);
}

.eclipse-mask {
	position: absolute;
	inset: 0;
	border-radius: 100px;
	padding: 2px;
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.eclipse-beam {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, white, transparent);
	transform: translateX(-100%) skewX(-45deg);
	animation: eclipse-move 3s linear infinite;
}

.btn-text {
	position: relative;
	z-index: 2;
}

.feature-row {
	gap: 4rem;
	align-items: center;
	margin-bottom: 8rem;
	display: flex;
}

.feature-row .feature-text {
	width: 60%;
	z-index: 2;
	flex-shrink: 0;
	filter: drop-shadow(0px 0px 2px black) drop-shadow(0px 0px 0px black) drop-shadow(0px 0px 0px rgb(0 0 0 / 100%));
}

.feature-row .feature-text .text-body-lg {
	margin-top: 1rem;
	max-width: 600px;
}

.feature-visual {
	background: #1a1a1a;
	border-radius: 16px;
	aspect-ratio: 16/9;
	position: relative;
	width: 50%;
	z-index: 1;
}

.feature-visual .placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-visual .placeholder img {
	height: 320px;
	mix-blend-mode: exclusion;
	filter: drop-shadow(0px 0px 80px var(--feature-color));
}

@keyframes eclipse-move {
	0% {
		transform: translateX(110%) skewX(-45deg);
	}

	100% {
		transform: translateX(-110%) skewX(-45deg);
	}
}

@media screen and (max-width: 1300px) {
	.container, 
    .container-hero {
        padding: 0 1.5rem;
        max-width: 100%;
    }
}

@media screen and (max-width: 1080px) {
	h1 { font-size: 3.5rem; }
	
	.text-lead {
		font-size: 1.15rem;
	}
	
	.text-accent-subtitle {
		font-size: 1.5rem;
		filter: drop-shadow(0px 2px 2px rgb(0 0 0 / 50%));
	}
	
	.icon-badge {
		display: none;
	}
	
	.feature-row {
		margin-bottom: 4rem;
	}
	
	.feature-row .feature-text {
		width: 75%;
	}
	
	.feature-visual {
		background: transparent;
	}
	
	.feature-visual .placeholder img {
		transform: scale(0.75);
		-webkit-mask-image: -webkit-gradient(linear, right 90%, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	}
	
	.feature-row.reverse .feature-visual .placeholder img {
		-webkit-mask-image: -webkit-gradient(linear, right 90%, left bottom, from(rgba(0,0,0,0.0)), to(rgba(0,0,0,0.5)));
	}
	
	.nav-menu {
		gap: 1.5rem;
	}
}

@media screen and (max-width: 900px) {

    /* --- Typography Scaling --- */
    :root {
        font-size: 0.9rem; /* Slightly smaller base size */
    }

    h1, .heading-xl { font-size: 2.25rem; }
    h2, .heading-lg { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .text-body-lg { font-size: 1rem; }
    .text-accent-subtitle {
		font-size: 1rem;
		filter: drop-shadow(0px 1px 0px rgb(0 0 0 / 75%));
        font-weight: 700;
	}

    /* --- Global Layout --- */
    .spacer-section {
        margin-top: 4rem;
    }

    /* --- Navigation & Hero --- */
    .navbar-fixed {
        height: 80px;
        padding: 0;
    }

    .header-padding {
        padding: 2rem 1rem;
    }

    .logo-hero {
        height: 80px; /* Smaller logo */
    }

    .nav-row {
        flex-direction: column;
        align-items: baseline;
		width: 100%;
		gap: 1rem;
    }

    .container-hero {
        padding-right: 1.5rem; /* Remove the massive 260px desktop padding */
        text-align: center;
    }

    .hero-layout {
        gap: 2rem;
        padding-top: 0;
    }

    .hero-bottom {
        padding-bottom: 2rem;
        justify-content: flex-start;
		text-align: left;
    }

    .bg-hero {
        height: auto;
        min-height: 100vh;
	}

    /* --- Actions & Buttons --- */
    .action-group {
		grid-template-columns: unset;
        width: 100%;
        gap: 2rem;
		margin-top: 1rem;
    }
	
	.action-group .stats-group {
		justify-content: space-around;
	}
	
    .btn-base, .btn-white-cta, .btn-glass, .btn-pill-outline {
        width: 100%; /* Full width buttons for touch */
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pegi-row {
        justify-content: center;
        margin-top: 1rem;
    }

    /* --- Lists, Grids & Layouts --- */
    .grid-cols-layout,
    .features-layout,
    .grid-features,
    .faq-layout,
    .footer-grid {
        gap: 3rem;
        margin-top: 4rem;
    }

    .col-main, .col-sidebar, .footer-brand-col, .footer-col {
        width: 100%;
        min-width: unset;
		text-align: left;
    }

    .col-sidebar {
        order: 2; /* Push sidebar to bottom on mobile */
    }

    /* --- Tags & Scrolling --- */
    .tags-row {
        justify-content: left;
		gap: 0.5rem;
    }
	
	.tag-pill {
		padding: 0.75rem 1.25rem;
	}

    .scroll-row {
		grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        margin: 2rem -1.5rem; /* Negative margin to allow full-width edge scrolling */
        padding: 0 1.5rem 1.5rem 1.5rem; /* Restore padding for visual alignment */
		gap: 1rem;
	}

    /* --- Features & Creator --- */
    .illustration-stage {
        height: 300px; /* Reduced height */
        width: 100%;
    }

    .ui-desktop {
        width: 90%;
        right: 5%;
    }

    .ui-mobile {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .feature-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .text-center-limit {
        margin-bottom: 2rem;
		text-align: left;
    }

    /* --- FAQ & CTA --- */
    .faq-summary {
        font-size: 1.1rem;
        align-items: flex-start;
        gap: 1rem;
    }

    .faq-toggle-icon {
        margin-top: 5px; 
    }

    .cta-card {
        padding: 3rem 1.5rem;
        margin-top: 4rem;
    }

    /* --- Footer --- */
    .footer-root {
        margin-top: 2rem;
    }

    .footer-grid {
        text-align: center;
        align-items: center;
    }

    .footer-brand-col {
		grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 2rem;
        margin: 3rem 0;
        text-align: center;
    }
	
	.text-lead {
		font-size: 1.1rem;
		z-index: 1;
	}
	
	.icon-star {
		height: 18px;
	}
	
	.footer-logo-img {
		width: 100%;
		opacity: 1;
	}
	
	.faq-layout {
		flex-direction: column-reverse;
	}
	
	.card-root {
		width: 100%;
	}
	
	.tags-row {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}
	
	.container-footer {
		padding: 3rem 2rem;
	}
	
	.nav-menu,
	.btn-sm-outline,
	.mobile-hide {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.tag-pill:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
}

@media screen and (max-width: 325px) {
	#unsupported-device {
		display: flex !important;
	}
}

@media screen and (max-height: 800px), screen and (max-width: 900px) {
	.bg-hero {
		background: radial-gradient(transparent, transparent, rgb(0 0 0 / 50%)), linear-gradient(0deg, rgb(0 0 0 / 100%), rgb(0 0 0 / 90%), rgb(0 0 0 / 80%), rgb(0 0 0 / 60%), transparent, transparent), var(--hero-poster-image);
		background-size: cover;
		background-position: center;
		background-attachment: scroll;
	}
}

/* === MAIN CSS END === */
/* === MAIN CSS END === */
/* === MAIN CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === ANIMATION CSS START === */
/* === ANIMATION CSS START === */
/* === ANIMATION CSS START === */

:root {
    /* A slightly bouncier easing for interactions */
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- 1. GLOBAL BUTTON PHYSICS (The Dopamine Hit) --- */

/* All buttons get a press effect */
button, 
.btn-base, 
.btn-glass, 
.btn-white-cta,
.tag-pill, 
.card-root {
    transition: all 0.2s var(--transition-function);
	will-change: transform;
}

.nav-menu a {
	transition: all 0.3s var(--transition-function);
}

.btn-base:hover,
.btn-glass:not(.static):hover,
.nav-menu a:hover,
.eclipse-btn:hover,
.footer-link:hover,
.faq-details:hover .faq-summary {
	filter: drop-shadow(0px 0px 4px rgb(255 255 255 / 75%));
}

.card-root:hover {
	transform: translateY(-1%) !important; /* Override hover lift */
}

/* The "Click" - slightly shrinks the element to mimic pressure */
button:active, 
.btn-base:active, 
.btn-glass:active, 
.btn-white-cta:active,
.tag-pill:active,
.card-root:active {
    transform: scale(0.96) translateY(0) !important; /* Override hover lift */
}

/* --- 2. SPECIFIC COMPONENT ANIMATIONS --- */

/* Glass Button Hover */
.btn-glass:not(.static):hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

/* White CTA (Hero) Hover - Needs to pop */
.btn-white-cta:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Outline Buttons */
.btn-pill-outline:hover, 
.btn-sm-outline:hover {
    background: rgba(255, 255, 255, 1);
    color: black;
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Tags Hover */
.tag-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* --- 3. CARD & LIST HOVERS --- */

/* Game/Movie Posters */
.card-root:hover .poster {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* List Items (Rankings) */
.list-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
	transform: translateX(1%);
}

/* Feature Cards (The big grid items) */
.feature-card {
    transition: all 0.3s var(--transition-function);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* --- 4. SHINE EFFECT (Bonus) --- */
/* Adds a subtle sheen passing over the poster cards on hover */

.poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.card-root:hover .poster::before {
    animation: shine-pass 0.75s;
}

@keyframes shine-pass {
    100% {
        left: 150%;
    }
}

/* === ANIMATION CSS END === */
/* === ANIMATION CSS END === */
/* === ANIMATION CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === LEGAL CSS START === */
/* === LEGAL CSS START === */
/* === LEGAL CSS START === */

.legal-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    margin-top: 6rem;
}

.bg-glow-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.legal-layout {
    display: flex;
    gap: 4rem;
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Sidebar & TOC */
.toc-sidebar {
    flex: 1;
    min-width: 250px;
    position: sticky;
    top: 2rem;
    display: none;
}

.toc-card {
    background: rgb(255 255 255 / 2%);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 1.5rem;
}

.toc-link {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgb(255 255 255 / 5%);
    color: white;
    opacity: 0.6;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s var(--transition-function);
}

.toc-link:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.toc-link.active {
    opacity: 1;
    font-weight: 500;
    color: white;
}

.active-dot {
    width: 6px; 
    height: 6px; 
    background: var(--color-accent); 
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
}

.btn-toc-download {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s var(--transition-function);
}

.btn-toc-download:hover {
    background: white;
    color: black;
}

/* Legal Content Area */
.legal-content {
    flex: 3;
    min-width: 300px;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-divider {
    width: 100%;
    height: 1px;
    background: var(--color-border-light);
    margin-bottom: 4rem;
}

.legal-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-list li {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.bullet-accent {
    color: var(--color-accent);
    font-weight: bold;
}

/* Info Box (The "Short Version" box) */
.info-box {
    background: rgb(255 255 255 / 3%);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-card);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.info-box p {
    opacity: 0.7;
    font-size: 1rem;
    margin: 0;
}

/* Prohibited Grid */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.prohibited-card {
    background: rgb(255 255 255 / 2%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
}

.prohibited-card h4 {
    margin: 0 0 0.5rem 0; 
    font-weight: 500;
}

.prohibited-card p {
    margin: 0; 
    font-size: 0.95rem; 
    opacity: 0.6;
}

/* Support Bottom CTA */
.support-cta {
    margin-top: 6rem;
    background: radial-gradient(circle at top right, rgb(40, 40, 50), rgb(20, 20, 22));
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 20px;
    padding: 3rem;
}

.support-cta h3 {
    font-size: 1.8rem; 
    font-weight: 500; 
    margin: 0 0 1rem 0;
}

.support-cta p {
    font-size: 1.1rem; 
    opacity: 0.7; 
    margin-bottom: 2rem; 
    max-width: 600px;
}

.support-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Specific button tweaks for this page */
.btn-legal-action {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

@media (min-width: 900px) {
    .toc-sidebar {
        display: block;
    }
}

/* === LEGAL CSS END === */
/* === LEGAL CSS END === */
/* === LEGAL CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === BROWSE CSS START === */
/* === BROWSE CSS START === */
/* === BROWSE CSS START === */

.browse-root {
	min-height: 100vh;
	padding-top: 2rem;
}

/* === BROWSE HEADER === */
.browse-header {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.browse-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.browse-title {
	font-size: 2.5rem;
	font-weight: 600;
	background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.browse-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

/* === SEARCH BAR === */
.search-container {
	position: relative;
	flex: 1;
	max-width: 500px;
	min-width: 280px;
}

.search-input {
	width: 100%;
	padding: 1rem 1.5rem 1rem 3.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-full);
	color: white;
	font-family: var(--font-primary);
	font-size: 1rem;
	transition: all 0.3s var(--transition-function);
	outline: none;
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.search-icon {
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.4;
	pointer-events: none;
	font-size: 1.1rem;
}

/* === VIEW TOGGLE === */
.view-toggle {
	display: flex;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-btn {
	padding: 0.6rem 1rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	border-radius: 6px;
	font-size: 1.1rem;
	transition: all 0.2s var(--transition-function);
}

.view-btn.active {
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

.view-btn:hover:not(.active) {
	color: rgba(255, 255, 255, 0.8);
}

/* === TAB NAVIGATION === */
.browse-tabs {
	display: flex;
	gap: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.browse-tabs::-webkit-scrollbar {
	display: none;
}

.browse-tab {
	padding: 1rem 1.5rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1rem;
	font-weight: 500;
	border-radius: 8px 8px 0 0;
	position: relative;
	transition: all 0.2s var(--transition-function);
	white-space: nowrap;
}

.browse-tab::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--color-accent);
	opacity: 0;
	transition: opacity 0.2s var(--transition-function);
}

.browse-tab:hover {
	color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.03);
}

.browse-tab.active {
	color: white;
	background: rgba(255, 255, 255, 0.05);
}

.browse-tab.active::after {
	opacity: 1;
}

.tab-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 0.8rem;
	margin-left: 0.5rem;
}

/* === FILTERS BAR === */
.filters-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.filter-chip {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.2rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-full);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s var(--transition-function);
}

.filter-chip:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	color: white;
}

.filter-chip.active {
	background: rgba(255, 100, 50, 0.15);
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.filter-chip .icon {
	font-size: 1rem;
}

.filter-dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 180px;
	background: rgb(25, 25, 28);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.2s var(--transition-function);
	z-index: 100;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.filter-dropdown:hover .dropdown-menu,
.filter-dropdown:focus-within .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: 0.8rem 1rem;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	text-align: left;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.15s var(--transition-function);
}

.dropdown-item:hover {
	background: rgba(255, 255, 255, 0.08);
	color: white;
}

.dropdown-item.selected {
	background: rgba(255, 100, 50, 0.1);
	color: var(--color-accent);
}

.sort-select {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
}

.sort-select select {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0.5rem 2rem 0.5rem 1rem;
	color: white;
	font-family: var(--font-primary);
	font-size: 0.9rem;
	cursor: pointer;
	outline: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
}

/* === MY STORIES SECTION === */
.my-stories-section {
	margin-bottom: 4rem;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 500;
}

.my-stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

/* === MY STORY CARD === */
.my-story-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s var(--transition-function);
}

.my-story-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.my-story-cover {
	position: relative;
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, rgba(40, 40, 45) 0%, rgba(20, 20, 25) 100%);
	overflow: hidden;
}

.my-story-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-status {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-draft {
	background: rgba(255, 200, 50, 0.2);
	color: #ffcc33;
	border: 1px solid rgba(255, 200, 50, 0.3);
}

.status-published {
	background: rgba(50, 200, 100, 0.2);
	color: #44dd77;
	border: 1px solid rgba(50, 200, 100, 0.3);
}

.status-review {
	background: rgba(100, 150, 255, 0.2);
	color: #88aaff;
	border: 1px solid rgba(100, 150, 255, 0.3);
}

.story-quick-actions {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 0.2s var(--transition-function);
}

.my-story-card:hover .story-quick-actions {
	opacity: 1;
}

.quick-action-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	color: white;
	font-size: 1rem;
	transition: all 0.2s var(--transition-function);
}

.quick-action-btn:hover {
	background: white;
	color: black;
	transform: scale(1.1);
}

.quick-action-btn.delete:hover {
	background: #ff4444;
	color: white;
}

.my-story-info {
	padding: 1.25rem;
}

.my-story-title {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.my-story-meta {
	display: flex;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

.my-story-meta span {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.my-story-stats {
	display: flex;
	gap: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.stat-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
}

.stat-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* === CREATE NEW CARD === */
.create-story-card {
	background: transparent;
	border: 2px dashed rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem;
	cursor: pointer;
	transition: all 0.3s var(--transition-function);
	min-height: 280px;
}

.create-story-card:hover {
	border-color: var(--color-accent);
	background: rgba(255, 100, 50, 0.05);
}

.create-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 1rem;
	transition: all 0.3s var(--transition-function);
}

.create-story-card:hover .create-icon {
	background: var(--color-accent);
	color: white;
	transform: scale(1.1);
	box-shadow: 0 0 30px rgba(255, 100, 50, 0.4);
}

.create-story-card h4 {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.create-story-card p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.9rem;
}

/* === CATEGORY GRID === */
.categories-section {
	margin-bottom: 4rem;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
}

.category-card {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s var(--transition-function);
}

.category-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
	z-index: 1;
}

.category-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.category-bg {
	position: absolute;
	inset: 0;
	transition: transform 0.5s var(--transition-function);
}

.category-card:hover .category-bg {
	transform: scale(1.1);
}

.category-fantasy {
	background: linear-gradient(135deg, #4a2c7d 0%, #1a1030 100%);
}

.category-scifi {
	background: linear-gradient(135deg, #1a4a6d 0%, #0a1525 100%);
}

.category-mystery {
	background: linear-gradient(135deg, #3d3d3d 0%, #151515 100%);
}

.category-romance {
	background: linear-gradient(135deg, #6d2a4a 0%, #250a15 100%);
}

.category-horror {
	background: linear-gradient(135deg, #4a1a1a 0%, #150808 100%);
}

.category-drama {
	background: linear-gradient(135deg, #4a4a2a 0%, #15150a 100%);
}

.category-comedy {
	background: linear-gradient(135deg, #4a6a2a 0%, #15200a 100%);
}

.category-action {
	background: linear-gradient(135deg, #6a3a1a 0%, #20100a 100%);
}

.category-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.25rem;
	z-index: 2;
}

.category-icon {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.category-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.category-count {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

/* === BROWSE GRID === */
.browse-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.browse-grid.list-view {
	grid-template-columns: 1fr;
	gap: 1rem;
}

/* === STORY CARD (BROWSE) === */
.story-card {
	cursor: pointer;
	transition: all 0.3s var(--transition-function);
}

.story-card:hover {
	transform: translateY(-4px);
}

.story-poster {
	position: relative;
	aspect-ratio: 2/3;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.3s var(--transition-function);
}

.story-card:hover .story-poster {
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.story-poster-bg {
	position: absolute;
	inset: 0;
}

.story-poster-overlay {
	position: absolute;
	inset: 0;
}

.story-rating {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 500;
}

.story-genre-badge {
	position: absolute;
	bottom: 0.75rem;
	left: 0.75rem;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
}

.story-title {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.story-author {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0.5rem;
}

.story-info {
	display: flex;
	gap: 1rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.4);
}

/* === LIST VIEW CARD === */
.browse-grid.list-view .story-card {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 1.5rem;
	align-items: center;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1rem;
}

.browse-grid.list-view .story-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateX(4px);
}

.browse-grid.list-view .story-poster {
	aspect-ratio: 2/3;
	margin-bottom: 0;
	width: 80px;
	flex-shrink: 0;
}

.browse-grid.list-view .story-content {
	flex: 1;
}

.browse-grid.list-view .story-actions {
	display: flex;
	gap: 0.75rem;
}

.browse-grid.list-view .story-info {
	margin-top: 0.5rem;
}

.list-action-btn {
	padding: 0.6rem 1.2rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: white;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s var(--transition-function);
}

.list-action-btn:hover {
	background: white;
	color: black;
}

.list-action-btn.primary {
	background: var(--color-accent);
	border-color: var(--color-accent);
}

.list-action-btn.primary:hover {
	background: white;
	border-color: white;
	color: black;
}

/* === PAGINATION === */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin: 3rem 0;
}

.page-btn {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s var(--transition-function);
}

.page-btn:hover:not(.active):not(:disabled) {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	color: white;
}

.page-btn.active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: white;
}

.page-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.page-ellipsis {
	color: rgba(255, 255, 255, 0.3);
	padding: 0 0.5rem;
}

/* === EMPTY STATE === */
.empty-state {
	text-align: center;
	padding: 6rem 2rem;
}

.empty-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	opacity: 0.3;
}

.empty-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.empty-description {
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 2rem;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

/* === LOAD MORE === */
.load-more-container {
	display: flex;
	justify-content: center;
	padding: 2rem 0;
}

.load-more-btn {
	padding: 1rem 3rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-full);
	color: white;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s var(--transition-function);
}

.load-more-btn:hover {
	background: white;
	color: black;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* === RESPONSIVE === */
@media screen and (max-width: 900px) {
	.browse-header-top {
		flex-direction: column;
		align-items: stretch;
	}

	.browse-title {
		font-size: 2rem;
	}

	.search-container {
		max-width: none;
		order: -1;
	}

	.browse-actions {
		flex-wrap: wrap;
	}

	.filters-bar {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-group {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 0.5rem;
		margin: 0 -1.5rem;
		padding: 0 1.5rem 0.5rem;
	}

	.filter-chip {
		flex-shrink: 0;
	}

	.sort-select {
		justify-content: space-between;
	}

	.my-stories-grid {
		grid-template-columns: 1fr;
	}

	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.browse-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.browse-grid.list-view .story-card {
		grid-template-columns: 60px 1fr;
	}

	.browse-grid.list-view .story-actions {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	.browse-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.categories-grid {
		grid-template-columns: 1fr 1fr;
	}

	.view-toggle {
		display: none;
	}
}

/* === BROWSE CSS END === */
/* === BROWSE CSS END === */
/* === BROWSE CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === GEMS-GOLDEN CSS START === */
/* === GEMS-GOLDEN CSS START === */
/* === GEMS-GOLDEN CSS START === */

/* Divine golden overlay for hover */
#divine-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.4s var(--transition-function);
	background: radial-gradient(ellipse at center,
			rgba(255, 215, 0, 0.15) 0%,
			rgba(255, 180, 0, 0.08) 30%,
			transparent 70%);
}

#divine-overlay.active {
	opacity: 1;
}

/* God rays container */
#god-rays {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 99;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s var(--transition-function);
	filter: blur(75px);
}

#god-rays.active {
	opacity: 1;
}

.god-ray {
	position: absolute;
	top: -50%;
	width: 50px;
	height: 200%;
	background: linear-gradient(to bottom,
			transparent 0%,
			rgba(255, 215, 0, 0.1) 20%,
			rgba(255, 215, 0, 0.3) 50%,
			rgba(255, 215, 0, 0.1) 80%,
			transparent 100%);
	transform-origin: top center;
	animation: ray-sway 4s ease-in-out infinite;
}

@keyframes ray-sway {

	0%,
	100% {
		transform: rotate(-5deg) scaleX(1);
	}

	50% {
		transform: rotate(5deg) scaleX(1.5);
	}
}

/* Ascension overlay - for clicking golden */
#ascension-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10000;
	opacity: 0;
	background: radial-gradient(ellipse at center,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 230, 150, 1) 30%,
			rgba(255, 200, 50, 1) 60%,
			rgba(255, 150, 0, 1) 100%);
}

#ascension-overlay.active {
	animation: ascension 2.5s ease-in forwards;
}

@keyframes ascension {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 0.3;
	}

	60% {
		opacity: 0.7;
	}

	100% {
		opacity: 1;
	}
}

/* Screen effects */
body.shake-light {
	animation: shake-light 0.3s ease-out;
}

body.shake-heavy {
	animation: shake-heavy 0.5s ease-out;
}

body.shake-divine {
	animation: shake-divine 0.8s ease-out;
}

@keyframes shake-light {

	0%,
	100% {
		transform: translateX(0);
	}

	20% {
		transform: translateX(-2px) rotate(-0.5deg);
	}

	40% {
		transform: translateX(2px) rotate(0.5deg);
	}

	60% {
		transform: translateX(-1px);
	}

	80% {
		transform: translateX(1px);
	}
}

@keyframes shake-heavy {

	0%,
	100% {
		transform: translateX(0);
	}

	10% {
		transform: translateX(-4px) rotate(-1deg);
	}

	20% {
		transform: translateX(4px) rotate(1deg);
	}

	30% {
		transform: translateX(-4px) rotate(-0.5deg);
	}

	40% {
		transform: translateX(4px) rotate(0.5deg);
	}

	50% {
		transform: translateX(-2px);
	}

	60% {
		transform: translateX(2px);
	}
}

@keyframes shake-divine {

	0%,
	100% {
		transform: translateX(0) scale(1);
	}

	10% {
		transform: translateX(-5px) rotate(-1deg) scale(1.01);
	}

	20% {
		transform: translateX(5px) rotate(1deg) scale(1.02);
	}

	30% {
		transform: translateX(-5px) rotate(-1deg) scale(1.01);
	}

	40% {
		transform: translateX(5px) rotate(1deg) scale(1.02);
	}

	50% {
		transform: translateX(-3px) scale(1.01);
	}

	60% {
		transform: translateX(3px) scale(1);
	}

	70% {
		transform: translateX(-2px);
	}

	80% {
		transform: translateX(2px);
	}
}

#flash-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(74, 222, 128, 0.4), transparent 70%);
	pointer-events: none;
	opacity: 0;
	z-index: 9998;
	transition: opacity 0.1s var(--transition-function);
}

#flash-overlay.flash {
	opacity: 1;
}

#flash-overlay.flash-gold {
	background: radial-gradient(circle at center, rgba(255, 215, 0, 0.5), transparent 70%);
	opacity: 1;
}

/* Green hue overlay during gem adding */
#green-hue-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(74, 222, 128, 0.08) 0%,
			rgba(34, 197, 94, 0.12) 50%,
			rgba(74, 222, 128, 0.08) 100%);
	pointer-events: none;
	opacity: 0;
	z-index: 98;
	transition: opacity 0.4s var(--transition-function);
	mix-blend-mode: screen;
}

#green-hue-overlay.active {
	opacity: 1;
}

#particle-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
}

.btn-golden {
    color: #fff8e0;
    text-shadow: 0 0 20px rgba(255, 200, 0, 1);
    transition: all 0.3s var(--transition-function);
    background: linear-gradient(0deg, rgb(140 93 0 / 50%), transparent);
    filter: drop-shadow(0px 0px 20px rgb(255 150 0 / 50%)) saturate(2.5) contrast(1.1) hue-rotate(5deg) saturate(1.25);
}

.btn-golden:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow:
		0 0 60px rgba(255, 200, 0, 0.7),
		0 0 120px rgba(255, 150, 0, 0.5),
		0 0 180px rgba(255, 100, 0, 0.3),
		0 10px 40px rgba(0, 0, 0, 0.3),
		inset 0 2px 0 rgba(255, 255, 200, 0.6),
		inset 0 -3px 15px rgba(150, 100, 0, 0.3);
	border-color: rgba(255, 240, 150, 0.8);
}

.btn-golden:active {
	transform: scale(0.95);
}

.btn-golden i {
	font-size: 20px;
	filter: drop-shadow(0 0 10px rgba(255, 200, 0, 1));
	animation: crown-float 2s ease-in-out infinite;
}

@keyframes crown-float {

	0%,
	100% {
		transform: translateY(0) rotate(-5deg);
	}

	50% {
		transform: translateY(-3px) rotate(5deg);
	}
}

.btn-golden span {
    font-size: 20px;
    font-weight: 500;
}

/* Golden button inner shine */
.btn-golden::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(255, 255, 255, 0.4) 50%,
			transparent 100%);
	transition: left 0.5s var(--transition-function);
	pointer-events: none;
	z-index: 1;
}

.btn-golden {
	overflow: hidden;
}

.btn-golden:hover::before {
	left: 100%;
}

.btn-gem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.5rem;
    filter: drop-shadow(0px 0px 20px rgba(100, 255, 150, 1.0));
    background: linear-gradient(0deg, rgb(10 90 10 / 50%), transparent);
}

.btn-gem:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow:
		0 0 40px rgba(74, 222, 128, 0.6),
		0 0 80px rgba(0, 255, 100, 0.3),
		inset 0 2px 0 rgba(150, 255, 180, 0.5);
}

.btn-gem img {
	height: 26px;
	filter: drop-shadow(0 0 12px rgba(74, 222, 128, 1));
	animation: gem-pulse 2s ease-in-out infinite;
}

@keyframes gem-pulse {

	0%,
	100% {
		transform: scale(1) rotate(0deg);
		filter: drop-shadow(0 0 12px rgba(74, 222, 128, 1));
	}

	50% {
		transform: scale(1.1) rotate(5deg);
		filter: drop-shadow(0 0 20px rgba(74, 222, 128, 1));
	}
}

.gem-count-wrapper {
	position: relative;
	text-align: left;
}

.gem-count {
	font-family: 'Inter';
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    transform-origin: center center;
    will-change: transform;
    letter-spacing: 1.5px;
    filter: drop-shadow(0px 0px 4px rgb(0 50 0 / 100%));
	font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.increase-indicator {
	position: absolute;
	left: 50%;
	top: -35px;
	transform: translateX(-50%);
	color: #4ade80;
	font-size: 24px;
	font-weight: 900;
	opacity: 0;
	pointer-events: none;
	text-shadow: 0 0 25px rgba(74, 222, 128, 1), 0 0 50px rgba(74, 222, 128, 0.5);
	white-space: nowrap;
}

.spend-indicator {
	position: absolute;
	left: 50%;
	top: -35px;
	transform: translateX(-50%);
	color: #fbbf24;
	font-size: 20px;
	font-weight: 800;
	opacity: 0;
	pointer-events: none;
	text-shadow: 0 0 20px rgba(251, 191, 36, 1);
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	backdrop-filter: blur(0px);
	z-index: 20000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s var(--transition-function);
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: all;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}

.modal-container {
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	background: linear-gradient(180deg,
			rgba(20, 30, 20, 0.98) 0%,
			rgba(10, 20, 15, 0.99) 50%,
			rgba(5, 15, 10, 1) 100%);
	border-radius: 24px;
	border: 2px solid rgba(74, 222, 128, 0.3);
	box-shadow:
		0 0 60px rgba(74, 222, 128, 0.3),
		0 0 120px rgba(0, 100, 50, 0.2),
		inset 0 1px 0 rgba(100, 255, 150, 0.2);
	transform: scale(0.8) translateY(50px);
	transition: transform 0.4s var(--transition-function);
	position: relative;
	overflow: hidden;
}

.modal-overlay.active .modal-container {
	transform: scale(1) translateY(0);
}

/* Modal decorative elements */
.modal-glow {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.modal-header {
	padding: 2rem 2rem 1rem;
	text-align: center;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	font-size: 20px;
	cursor: pointer;
	transition: all 0.2s var(--transition-function);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	transform: rotate(90deg);
}

.modal-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	position: relative;
}

.modal-icon img {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.8));
	animation: modal-gem-float 3s ease-in-out infinite;
}

@keyframes modal-gem-float {

	0%,
	100% {
		transform: translateY(0) rotate(-5deg) scale(1);
	}

	50% {
		transform: translateY(-10px) rotate(5deg) scale(1.05);
	}
}

.modal-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--gem-green);
	text-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
	margin-bottom: 0.5rem;
}

.modal-subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	font-style: italic;
}

/* Lore section */
.lore-section {
	padding: 1.5rem 2rem;
	border-top: 1px solid rgba(74, 222, 128, 0.15);
	border-bottom: 1px solid rgba(74, 222, 128, 0.15);
	background: rgba(0, 0, 0, 0.3);
}

.lore-text {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
}

.lore-text .highlight {
	color: var(--gem-green);
	font-weight: 600;
}

.lore-text .gold {
	color: var(--gold);
	font-weight: 600;
}

/* Daily reward */
.daily-reward {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(90deg, rgba(74, 222, 128, 0.1) 0%, transparent 100%);
	border-radius: 12px;
	margin-top: 1rem;
	border: 1px solid rgba(74, 222, 128, 0.2);
}

.daily-icon {
	font-size: 24px;
}

.daily-info {
	flex: 1;
}

.daily-title {
	font-weight: 700;
	color: var(--gem-green);
	font-size: 14px;
}

.daily-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.daily-gems {
	font-weight: 800;
	color: var(--gem-green);
	font-size: 18px;
	text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* Gem packages */
.packages-section {
	padding: 1.5rem 2rem 2rem;
}

.packages-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 1rem;
	text-align: center;
}

.package-grid {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.package-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0.03) 0%,
			rgba(255, 255, 255, 0.06) 50%,
			rgba(255, 255, 255, 0.03) 100%);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	transition: all 0.2s var(--transition-function);
	position: relative;
	overflow: hidden;
}

.package-card:hover {
	transform: translateX(5px);
	border-color: rgba(74, 222, 128, 0.3);
	background: linear-gradient(90deg,
			rgba(74, 222, 128, 0.05) 0%,
			rgba(74, 222, 128, 0.1) 50%,
			rgba(74, 222, 128, 0.05) 100%);
}

.package-card.featured {
	border: 2px solid rgba(74, 222, 128, 0.4);
	background: linear-gradient(90deg,
			rgba(74, 222, 128, 0.08) 0%,
			rgba(74, 222, 128, 0.15) 50%,
			rgba(74, 222, 128, 0.08) 100%);
}

.package-card.featured::before {
	content: 'BEST VALUE';
	position: absolute;
	top: 0;
	right: 0;
	background: linear-gradient(90deg, var(--gem-green), #22c55e);
	color: black;
	font-size: 9px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 0 14px 0 8px;
	letter-spacing: 1px;
}

.package-gems-icon {
	width: 50px;
	height: 50px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.package-gems-icon img {
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.6));
}

.package-gems-icon .multi {
	position: absolute;
	font-size: 10px;
	font-weight: 800;
	color: white;
	background: var(--gem-green);
	padding: 2px 5px;
	border-radius: 4px;
	bottom: -2px;
	right: -5px;
}

.package-info {
	flex: 1;
}

.package-amount {
	font-size: 20px;
	font-weight: 800;
	color: white;
}

.package-amount span {
	color: var(--gem-green);
}

.package-bonus {
	font-size: 11px;
	color: var(--gold);
	font-weight: 600;
}

.package-value {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
}

.package-price {
	text-align: right;
}

.package-price-amount {
	font-size: 22px;
	font-weight: 800;
	color: white;
}

.package-price-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
}

/* Value comparison */
.value-comparison {
	margin-top: 1.5rem;
	padding: 1.25rem;
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(200, 150, 50, 0.05) 100%);
	border-radius: 12px;
	border: 1px solid rgba(251, 191, 36, 0.2);
}

.value-title {
	font-size: 12px;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.value-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.5rem;
}

.value-row:last-child {
	margin-bottom: 0;
}

.value-row .vs {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 600;
}

.value-row .win {
	color: var(--gem-green);
	font-weight: 700;
}

/* Scrollbar styling for modal */
.modal-container::-webkit-scrollbar {
	width: 6px;
}

.modal-container::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
}

.modal-container::-webkit-scrollbar-thumb {
	background: rgba(74, 222, 128, 0.3);
	border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
	background: rgba(74, 222, 128, 0.5);
}

/* === GEMS-GOLDEN CSS END === */
/* === GEMS-GOLDEN CSS END === */
/* === GEMS-GOLDEN CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */

/* === GOLDEN PAGE CSS START === */
/* === GOLDEN PAGE CSS START === */
/* === GOLDEN PAGE CSS START === */

.ambient-glow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
		radial-gradient(circle at 20% 80%, rgba(255, 100, 50, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 80% 60%, rgba(212, 168, 83, 0.04) 0%, transparent 40%);
}

.floating-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--gold-main);
	border-radius: 50%;
	opacity: 0;
	animation: float-up 8s infinite;
}

@keyframes float-up {
	0% {
		opacity: 0;
		transform: translateY(100vh) scale(0);
	}

	10% {
		opacity: 0.6;
	}

	90% {
		opacity: 0.6;
	}

	100% {
		opacity: 0;
		transform: translateY(-20vh) scale(1);
	}
}

.urgency-banner {
	background: linear-gradient(90deg,
			var(--gold-dark) 0%,
			var(--gold-main) 50%,
			var(--gold-dark) 100%);
	background: linear-gradient(0deg, rgb(255 170 0 / 75%), rgb(255 200 101 / 50%));
	padding: 14px 20px;
	text-align: center;
	position: fixed;
	z-index: 100;
	overflow: hidden;
	backdrop-filter: blur(5px);
	border-radius: 0 0 30px 30px;
	filter: drop-shadow(0px 10px 10px var(--gold-dark));
	min-width: 680px;
	cursor: pointer;
}

.urgency-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(255, 255, 255, 0.3) 50%,
			transparent 100%);
	animation: shimmer-banner 3s infinite;
}

@keyframes shimmer-banner {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(50%);
	}
}

.urgency-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.urgency-badge {
	background: rgba(0, 0, 0, 0.25);
	padding: 6px 14px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 700;
	color: white;
	display: flex;
	align-items: center;
	gap: 8px;
	filter: drop-shadow(0px 0px 2px rgb(0 0 0 / 75%));
}

.urgency-timer {
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: white;
	display: flex;
	align-items: center;
	gap: 6px;
	filter: drop-shadow(0px 0px 2px rgb(0 0 0 / 75%));
}

.timer-unit {
	background: rgba(0, 0, 0, 0.2);
	padding: 4px 8px;
	border-radius: 4px;
	min-width: 32px;
	text-align: center;
	font-variant-numeric: tabular-nums;
}

.urgency-text {
	font-size: 14px;
	font-weight: 600;
	color: white;
	filter: drop-shadow(0px 0px 2px rgb(0 0 0 / 75%));
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.live-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(74, 222, 128, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.3);
	padding: 8px 16px;
	border-radius: var(--radius-full);
	font-size: 13px;
	color: var(--green-gem);
}

.live-dot {
	width: 8px;
	height: 8px;
	background: var(--green-gem);
	border-radius: 50%;
	animation: live-pulse 1.5s infinite;
	box-shadow: 0 0 10px var(--green-gem);
}

@keyframes live-pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.3);
		opacity: 0.7;
	}
}

.hero {
	text-align: center;
	padding: 80px 40px 60px;
	position: relative;
}

.hero h1 {
	font-family: 'Archivo Narrow', sans-serif;
	font-size: clamp(48px, 8vw, 80px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	background: linear-gradient(0deg,
			var(--gold-bright) 0%,
			var(--gold-main) 30%,
			var(--gold-light) 60%,
			var(--gold-main) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
	text-shadow: 0 0 60px var(--gold-glow);
	animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
	0% {
		filter: drop-shadow(0 0 20px var(--gold-glow));
	}

	100% {
		filter: drop-shadow(0 0 40px var(--gold-glow));
	}
}

.hero-subtitle {
	font-size: 20px;
	color: var(--color-text-muted);
	max-width: 600px;
	margin: 0 auto 30px;
}

.hero-subtitle strong {
	color: var(--gold-light);
}

/* Social Proof Strip */
.social-proof-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.proof-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-full);
	font-size: 14px;
	color: var(--color-text-muted);
	backdrop-filter: blur(10px) saturate(2);
	background: linear-gradient(0deg, rgb(255 255 255 / 15%), rgb(255 255 255 / 10%));
}

.proof-item .icon {
	font-size: 18px;
}

.proof-item .number {
	font-weight: 700;
	color: var(--gold-light);
}

.pricing-hero-card {
	background: linear-gradient(180deg,
			rgba(20, 20, 20, 0.9) 0%,
			rgba(10, 10, 10, 0.95) 100%);
	border: 2px solid var(--border-gold);
	border-radius: var(--radius-xl);
	overflow: hidden;
	position: relative;
	box-shadow:
		0 0 60px rgba(212, 168, 83, 0.15),
		0 40px 80px rgba(0, 0, 0, 0.5);
	max-width: 1080px;
	margin: auto;
	backdrop-filter: blur(50px) saturate(50) hue-rotate(60deg);
}

.pricing-hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg,
			transparent,
			var(--gold-main),
			var(--gold-light),
			var(--gold-main),
			transparent);
}

/* Scarcity Banner */
.scarcity-banner {
	background: linear-gradient(90deg,
			rgba(220, 38, 38, 0.15) 0%,
			rgba(220, 38, 38, 0.25) 50%,
			rgba(220, 38, 38, 0.15) 100%);
	border-bottom: 1px solid rgba(220, 38, 38, 0.3);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
}

.scarcity-count {
	color: #ef4444;
	font-weight: 800;
	font-size: 16px;
}

.scarcity-text {
	color: rgba(255, 255, 255, 0.8);
}

/* Pricing Grid */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

@media (max-width: 800px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

/* Left Side - Offer Details */
.offer-side {
	padding: 40px;
	border-right: 1px solid var(--border-subtle);
}

@media (max-width: 800px) {
	.offer-side {
		border-right: none;
		border-bottom: 1px solid var(--border-subtle);
	}
}

.tier-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg,
			rgba(212, 168, 83, 0.2) 0%,
			rgba(212, 168, 83, 0.1) 100%);
	border: 1px solid var(--border-gold);
	padding: 8px 16px;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--gold-light);
	margin-bottom: 20px;
}

.offer-title {
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--gold-light);
	margin-bottom: 24px;
}

/* Price Display - Anchoring */
.price-display {
	margin-bottom: 24px;
}

.price-comparison {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.price-original {
	font-size: 28px;
	color: var(--color-text-faint);
	text-decoration: line-through;
	text-decoration-color: #ef4444;
	text-decoration-thickness: 2px;
}

.price-tag {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	padding: 4px 12px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 800;
	color: white;
	text-transform: uppercase;
}

.price-current {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.price-currency {
	font-size: 28px;
	font-weight: 600;
	color: var(--gold-main);
}

.price-amount {
	font-size: 64px;
	font-weight: 900;
	color: var(--gold-light);
	line-height: 1;
	text-shadow: 0 0 40px var(--gold-glow);
}

.price-period {
	font-size: 18px;
	color: var(--color-text-faint);
	margin-left: 8px;
}

.price-breakdown {
	font-size: 14px;
	color: var(--color-text-faint);
	margin-top: 8px;
}

.price-breakdown strong {
	color: var(--green-gem);
}

/* Value Propositions */
.value-props {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.value-prop {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	transition: all 0.3s var(--transition-function);
}

.value-prop:hover {
	background: rgba(212, 168, 83, 0.05);
	border-color: var(--border-gold);
	transform: translateX(4px);
}

.value-prop .emoji {
	font-size: 24px;
	width: 40px;
	text-align: center;
}

.value-prop .text {
	flex: 1;
}

.value-prop .title {
	font-weight: 700;
	font-size: 15px;
	color: var(--color-text-main);
	margin-bottom: 2px;
}

.value-prop .desc {
	font-size: 13px;
	color: var(--color-text-faint);
}

/* Right Side - CTA Area */
.cta-side {
	padding: 40px;
	background: linear-gradient(180deg,
			rgba(212, 168, 83, 0.05) 0%,
			rgba(212, 168, 83, 0.02) 100%);
	display: flex;
	flex-direction: column;
}

.cta-header {
	text-align: center;
	margin-bottom: 24px;
}

.cta-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--gold-light);
	margin-bottom: 4px;
}

.cta-subtitle {
	font-size: 14px;
	color: var(--color-text-faint);
}

/* Features Checklist */
.features-checklist {
	list-style: none;
	flex: 1;
	margin-bottom: 24px;
}

.features-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 14px;
	color: var(--color-text-muted);
}

.features-checklist li:last-child {
	border-bottom: none;
}

.feature-highlight {
	font-weight: 700;
	color: var(--gold-light);
}

.feature-new {
	display: inline-block;
	background: var(--color-accent);
	color: white;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 6px;
	text-transform: uppercase;
	vertical-align: middle;
}

/* CTA Button */
.cta-button-container {
	position: relative;
}

.cta-button {
	width: 100%;
	padding: 20px 32px;
	border-radius: var(--radius-lg);
	border: none;
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg,
			var(--gold-dark) 0%,
			var(--gold-main) 30%,
			var(--gold-light) 60%,
			var(--gold-main) 100%);
	color: #000;
	box-shadow:
		0 4px 20px var(--gold-glow),
		0 0 60px rgba(212, 168, 83, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.3);
	transition: all 0.3s var(--transition-function);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-decoration: none;
}

.cta-button::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: button-shimmer 2s infinite;
}

@keyframes button-shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.cta-button:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 8px 40px var(--gold-glow),
		0 0 100px rgba(212, 168, 83, 0.4);
}

.cta-button:active {
	transform: translateY(0) scale(0.98);
}

.cta-button .arrow {
	font-size: 24px;
	animation: arrow-bounce 1s infinite;
}

@keyframes arrow-bounce {

	0%,
	100% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(5px);
	}
}

/* Trust Badges */
.trust-badges {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--color-text-faint);
}

.trust-badge .icon {
	font-size: 14px;
}

/* Viewers Indicator */
.viewers-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	padding: 12px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: var(--radius-md);
}

.viewer-avatars {
	display: flex;
}

.viewer-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-dark), var(--gold-main));
	border: 2px solid var(--bg-card);
	margin-left: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: #000;
}

.viewer-avatar:first-child {
	margin-left: 0;
}

.viewers-text {
	font-size: 12px;
	color: var(--color-text-faint);
}

.viewers-count {
	color: var(--gold-light);
	font-weight: 700;
}

.features-section {
	margin-top: 80px;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
}

.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--color-accent);
	margin-bottom: 12px;
}

.section-title {
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 12px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--color-text-faint);
}

/* Feature Cards */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 28px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s var(--transition-function);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-main), var(--gold-dark));
	opacity: 0;
	transition: opacity 0.3s var(--transition-function);
}

.feature-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card .icon {
	font-size: 36px;
	margin-bottom: 24px;
	display: block;
}

.feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--gold-light);
}

.feature-card p {
	font-size: 14px;
	color: var(--color-text-faint);
	line-height: 1.6;
}

.comparison-section {
	margin-top: 80px;
}

.comparison-table-wrapper {
	overflow-x: auto;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-subtle);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg-card);
}

.comparison-table th,
.comparison-table td {
	padding: 18px 24px;
	text-align: center;
	border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
	background: rgba(255, 255, 255, 0.02);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
	text-align: left;
	font-weight: 500;
}

.comparison-table .golden-col {
	background: rgba(255, 215, 0, 0.03);
}

.comparison-table .golden-header {
	background: linear-gradient(180deg,
			rgba(212, 168, 83, 0.2) 0%,
			rgba(212, 168, 83, 0.1) 100%);
	color: var(--gold-light);
}

.comparison-table .check {
	color: var(--green-gem);
	font-size: 20px;
}

.comparison-table .cross {
	color: var(--color-text-faint);
	font-size: 18px;
}

.comparison-table .golden-value {
	color: var(--gold-light);
	font-weight: 600;
}

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

.guarantee-section {
	margin-top: 50px;
	background: linear-gradient(135deg,
			rgba(74, 222, 128, 0.08) 0%,
			rgba(74, 222, 128, 0.03) 100%);
	border: 1px solid rgba(74, 222, 128, 0.2);
	border-radius: var(--radius-xl);
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 30px;
}

@media (max-width: 600px) {
	.guarantee-section {
		flex-direction: column;
		text-align: center;
	}
}

.guarantee-icon {
	font-size: 60px;
	flex-shrink: 0;
}

.guarantee-content h3 {
	font-size: 24px;
	color: var(--green-gem);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.guarantee-content p {
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.final-cta {
	margin-top: 100px;
	text-align: center;
	padding: 80px 40px;
	position: relative;
	background:
		radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 168, 83, 0.1) 0%, transparent 60%),
		linear-gradient(180deg, transparent 0%, var(--color-bg-dark) 100%);
	border-radius: var(--radius-xl);
}

.final-cta h2 {
	font-family: 'Archivo Narrow', sans-serif;
	font-size: 44px;
	font-weight: 700;
	margin-bottom: 12px;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-main));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.final-cta p {
	font-size: 18px;
	color: var(--color-text-muted);
	margin-bottom: 40px;
}

.final-cta .cta-button {
	display: inline-flex;
	width: auto;
	padding: 20px 60px;
}

.final-trust {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.notification-popup {
	position: fixed;
	bottom: 30px;
	left: 30px;
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(212, 168, 83, 0.1);
	z-index: 1000;
	max-width: 320px;
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.4s var(--transition-bounce);
	pointer-events: none;
}

.notification-popup.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.notification-icon {
	width: 44px !important;
	height: 44px;
	background: linear-gradient(135deg, var(--gold-dark), var(--gold-main));
	border-radius: var(--radius-md);
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.notification-content h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2px;
}

.notification-content p {
	font-size: 12px;
	color: var(--color-text-faint);
}

.crown-container {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
	animation: crown-float-2 3s ease-in-out infinite;
}

@keyframes crown-float-2 {

	0%,
	100% {
		transform: translateY(0) rotate(-0deg);
	}

	50% {
		transform: translateY(-15px) rotate(0deg);
	}
}

.crown {
	font-size: 6rem;
	filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.6)) drop-shadow(0 0 60px rgba(217, 119, 6, 0.4));
	animation: crown-glow 2s ease-in-out infinite alternate;
}

@keyframes crown-glow {
	0% {
		filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.6)) drop-shadow(0 0 60px rgba(217, 119, 6, 0.4));
	}

	100% {
		filter: drop-shadow(0 0 50px rgba(251, 191, 36, 0.9)) drop-shadow(0 0 100px rgba(217, 119, 6, 0.6));
	}
}

.crown-rays {
	position: absolute;
	inset: -100px;
	background: conic-gradient(from 0deg, transparent, rgba(251, 191, 36, 0.5), transparent, rgba(251, 191, 36, 0.5), transparent);
	animation: rotate 20s linear infinite;
	pointer-events: none;
	mask-image: radial-gradient(black 0%, transparent 60%);
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 900px) {
	nav {
		padding: 16px 20px;
	}

	.logo {
		height: 50px;
	}

	.hero {
		padding: 60px 20px 40px;
	}

	.offer-side,
	.cta-side {
		padding: 30px 24px;
	}

	.price-amount {
		font-size: 52px;
	}
}

@media (max-width: 600px) {
	.urgency-content {
		gap: 10px;
	}

	.social-proof-strip {
		gap: 12px;
	}

	.proof-item {
		padding: 8px 14px;
		font-size: 12px;
	}

	.section-title {
		font-size: 32px;
	}

	.final-cta h2 {
		font-size: 32px;
	}

	.final-cta .cta-button {
		padding: 18px 40px;
	}
}

.hero-title::after {
	content: 'GO GOLDEN\00AE';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #ffffff, rgba(255, 215, 0, 0.4), transparent);
	-webkit-background-clip: text;
	background-clip: text;
	background-size: 200% 100%;
}

#particle-canvas-legacy {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1000;
}

.cross-icon {
	color: rgba(255, 255, 255, 0.2);
	font-size: 1rem;
}

.check-icon {
	color: var(--gold-light);
	font-size: 1.1rem;
}

/* === GOLDEN PAGE CSS END === */
/* === GOLDEN PAGE CSS END === */
/* === GOLDEN PAGE CSS END === */

/* ============================== */
/* ============================== */
/* ============================== */