/* -----------------------------------------------------------
   ATOMIC GAMES LIMITED - CORE STYLES
   Theme: Minimalist, Story-driven, Western Female Audience
   Palette: White, Black, Dark Grey, Magenta (#E5007A)
   Location: Hong Kong
----------------------------------------------------------- */

:root {
    /* Color Palette Variables */
    --color-bg: #FFFFFF;
    --color-text: #2D3436;
    --color-headline: #000000;

    /* Premium Brand Colors */
    --color-accent: #E5007A;
    /* The "Fun" Magenta */
    --color-accent-hover: #c40068;
    --color-accent-soft: rgba(229, 0, 122, 0.05);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E5007A 0%, #FF5E62 100%);
    --gradient-hover: linear-gradient(135deg, #c40068 0%, #e04448 100%);
    --gradient-soft: linear-gradient(180deg, #FFF5FA 0%, #FFFFFF 100%);

    /* Backgrounds */
    --color-bg-alt: #F8F9FA;
    --color-bg-pink: #FFF5FA;

    /* Spacing & Layout */
    --container-width: 1100px;
    --header-height: 80px;
    /* SLightly taller for elegance */
    --spacing-lg: 5rem;
    --spacing-md: 3rem;
    --spacing-sm: 1.5rem;

    /* Animation & Transitions */
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Smoother bounce */
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 10px 30px rgba(229, 0, 122, 0.3);

    --color-danger: #ff4d4d;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-md);
}

.glass-button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(229, 0, 122, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* 1. RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-headline);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utility Class to keep content centered */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-pink {
    background-color: var(--color-bg-pink);
}

.bg-grey {
    background-color: var(--color-bg-alt);
}

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

/* 2. NAVIGATION BAR */
header {
    height: var(--header-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 0, 122, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            transparent 30%,
            rgba(229, 0, 122, 0.2) 45%,
            rgba(229, 0, 122, 0.4) 50%,
            rgba(229, 0, 122, 0.2) 55%,
            transparent 70%,
            transparent 100%);
    background-size: 400% 100%;
    animation: shimmer 15s ease-in-out infinite;
    z-index: 1;
}

#scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--color-accent), #ff69b4);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    height: 35px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 5px;
    border-radius: 8px;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(229, 0, 122, 0.1), rgba(229, 0, 122, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover::before {
    opacity: 1;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 35px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(229, 0, 122, 0.1), rgba(229, 0, 122, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 24px);
}

.nav-links a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--color-accent);
}

.nav-links a.active::before {
    opacity: 1;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-headline);
    transition: var(--transition);
}

/* 3. HERO SECTION */
.hero-wrapper {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 0;
}

.stories-section-wrapper,
.about-section,
.contact-section-wrapper {
    padding: var(--spacing-lg) 0;
}

.stories-section-wrapper {
    padding-top: 0;
}

.hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    /* Reduced from 4.5rem */
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    color: var(--color-headline);
    /* Removed fixed gradient so JS can control span color */
    display: flex;
    flex-direction: column;
}

.hero-line-1 {
    display: block;
    min-height: 1.2em;
}

.hero-line-2 {
    display: block;
}

.hero.visible .hero-content {
    animation: slide-up 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero.visible .hero-image {
    animation: slide-up 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #444;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-width: 85px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 129, 0.15);
}

.stat-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent, #ff6b81);
    margin-bottom: 2px;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.65rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
}

.hero-cta {
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.download-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-link:hover {
    transform: translateY(-3px);
}

.download-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 8px;
}

.download-badge {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 6px;
    transition: filter 0.3s ease;
}

.download-link:hover .download-badge {
    filter: brightness(1.1);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 0, 122, 0.05);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(var(--color-accent) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    transform: rotate(15deg);
}

.image-placeholder::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.2;
    filter: drop-shadow(0 0 10px rgba(229, 0, 122, 0.3));
}

.hero-image {
    position: relative;
    transition: transform 0.1s ease-out;
}

.hero-image-layer {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-content {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float-vertical 6s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

@keyframes float-vertical {

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

    50% {
        transform: translateY(-20px);
    }
}

/* CHAPTER DIVIDERS - Storybook Style */
.chapter-divider {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.chapter-divider.visible {
    opacity: 1;
    transform: translateY(0);
}

.chapter-divider-1 {
    background: linear-gradient(180deg,
            var(--color-bg-pink) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.95) 100%);
}

.chapter-divider-2 {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 249, 250, 0.5) 50%,
            var(--color-bg-alt) 100%);
}

.chapter-divider-3 {
    background: linear-gradient(180deg,
            var(--color-bg-alt) 0%,
            rgba(255, 245, 250, 0.5) 50%,
            var(--color-bg-pink) 100%);
}

.divider-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.divider-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
    position: relative;
    padding: 0 2rem;
}

.divider-text::before,
.divider-text::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.4;
    animation: sparkle 3s ease-in-out infinite;
}

.divider-text::before {
    left: 0;
    animation-delay: 0s;
}

.divider-text::after {
    right: 0;
    animation-delay: 1.5s;
}

.divider-flourish {
    flex: 1;
    max-width: 150px;
    height: 2px;
    position: relative;
    background: linear-gradient(to right,
            transparent,
            rgba(229, 0, 122, 0.2),
            rgba(229, 0, 122, 0.4),
            rgba(229, 0, 122, 0.2),
            transparent);
}

.divider-flourish.left {
    background: linear-gradient(to right,
            transparent,
            rgba(229, 0, 122, 0.1),
            rgba(229, 0, 122, 0.3));
}

.divider-flourish.right {
    background: linear-gradient(to left,
            transparent,
            rgba(229, 0, 122, 0.1),
            rgba(229, 0, 122, 0.3));
}

.divider-flourish::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.3;
    top: 50%;
    transform: translateY(-50%);
}

.divider-flourish.left::before {
    right: -4px;
}

.divider-flourish.right::before {
    left: -4px;
}

.divider-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(229, 0, 122, 0.03) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Floating decorative elements */
.chapter-divider::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(229, 0, 122, 0.05) 0%,
            transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.chapter-divider::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
            rgba(229, 0, 122, 0.04) 0%,
            transparent 70%);
    border-radius: 50%;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    animation: float 8s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Animations */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0.2;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes float {

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

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

@keyframes shimmer {
    0% {
        background-position: -150% 0;
    }

    50% {
        background-position: 250% 0;
    }

    100% {
        background-position: -150% 0;
    }
}

/* FULL-WIDTH BANNER SECTION */
.banner-section {
    width: 100%;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.banner-image-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive Banner */
@media (max-width: 768px) {
    .banner-image-wrapper {
        height: 50vh;
        min-height: 400px;
    }

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

    .banner-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .banner-image-wrapper {
        height: 40vh;
        min-height: 300px;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .stat-item {
        min-width: 160px;
        width: 100%;
        max-width: 200px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 0, 122, 0.4);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* 4. STORIES SECTION */
.stories-section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.stories-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.stories-carousel-wrapper::before,
.stories-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.stories-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.stories-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.stories-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 20px 10px;
    flex: 1;
    scroll-snap-type: x mandatory;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.story-cover {
    flex: 0 0 180px;
    height: 300px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-out;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    scroll-snap-align: start;
    background: white;
    text-decoration: none;
    display: block;
}

.story-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.4) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
}

.story-cover:hover::after {
    opacity: 1;
}

.story-cover:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.story-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-cover:hover .story-image img,
.story-cover:hover .story-placeholder {
    transform: scale(1.1);
}

.story-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-cover:nth-child(2n) .story-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.story-cover:nth-child(3n) .story-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.story-cover:nth-child(4n) .story-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.story-cover:nth-child(5n) .story-placeholder {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.story-placeholder::after {
    content: '📖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 40px 18px 18px;
    color: white;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.story-cover:hover .story-overlay {
    transform: translateY(0);
    opacity: 1;
}

.story-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.story-overlay p {
    font-size: 0.85rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.story-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 0, 122, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.story-cover:hover::before {
    opacity: 1;
}

.story-cover:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 20px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: white;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(229, 0, 122, 0.2);
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(229, 0, 122, 0.3);
}

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

.carousel-btn:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* 5. ABOUT SECTION */
.about-section {
    padding: var(--spacing-lg) 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 0, 122, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(229, 0, 122, 0.1);
    border-radius: 30px;
}

.about-header h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.header-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--color-accent), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-main {
    margin-bottom: 60px;
    text-align: center;
}

.about-description-card {
    background: white;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 850px;
    margin: 0 auto;
}

.about-description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent);
    opacity: 0.7;
}

.about-description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.about-description {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-detail-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.about-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(229, 0, 122, 0.2);
}

.detail-icon-wrapper {
    flex-shrink: 0;
}

.detail-icon {
    font-size: 2.2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 0, 122, 0.15), rgba(229, 0, 122, 0.05));
    border-radius: 18px;
    border: 2px solid rgba(229, 0, 122, 0.1);
    transition: all 0.3s ease;
}

.about-detail-card:hover .detail-icon {
    background: linear-gradient(135deg, rgba(229, 0, 122, 0.25), rgba(229, 0, 122, 0.15));
    border-color: rgba(229, 0, 122, 0.3);
    transform: scale(1.1);
}

.detail-content {
    flex: 1;
}

.detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-headline);
    font-weight: 700;
}

.detail-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.detail-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.detail-content a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}


/* 6. CONTACT & FORMS SECTION */
/* Contact and other form sections wrapper */

/* Terms of Service specific styles */
.terms-section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.terms-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.terms-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(229, 0, 122, 0.1);
}

.terms-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--color-accent);
    font-weight: 700;
}

.terms-content p {
    margin-bottom: 1.5rem;
}

.terms-content ul {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 0;
}

.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-content strong {
    font-weight: 700;
    color: var(--color-headline);
}

.terms-content a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--color-accent-hover);
}

.contact-card,
.delete-account-card,
.terms-card,
.privacy-policy-card {
    background-color: white;
    padding: 60px;
    border-radius: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.delete-account-card {
    border-top: 5px solid var(--color-danger);
}

.contact-header,
.delete-account-header,
.privacy-policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2,
.delete-account-header h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

/* Privacy Policy specific styles */
.privacy-policy-section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.privacy-policy-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--color-headline);
}

.privacy-policy-header h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-text);
    font-weight: 400;
}

.privacy-policy-header .last-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.privacy-policy-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
}

.privacy-policy-content .intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(229, 0, 122, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(229, 0, 122, 0.1);
    color: var(--color-headline);
    font-weight: 700;
}

.policy-section h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--color-accent);
    font-weight: 700;
}

.policy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 0;
    list-style-type: disc;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

.policy-section strong {
    font-weight: 700;
    color: var(--color-headline);
}

.policy-section a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 600;
}

.policy-section a:hover {
    color: var(--color-accent-hover);
}

.contact-info {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-card {
        padding: 40px 30px;
        max-width: 100%;
    }

    .privacy-policy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-policy-header h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.5rem;
    }

    .policy-section h4 {
        font-size: 1.2rem;
    }

    .privacy-policy-content {
        font-size: 0.95rem;
    }

    .policy-section ul {
        margin-left: 1.5rem;
    }
}

.delete-account-warning {
    background: rgba(255, 77, 77, 0.05);
    border-left: 4px solid var(--color-danger);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: left;
}

.delete-account-warning p {
    color: #d32f2f;
    font-weight: 500;
    margin-bottom: 10px;
}

.delete-account-links {
    margin-bottom: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.delete-account-links a {
    color: var(--color-accent);
    font-weight: 600;
}

.delete-account-links span {
    margin: 0 10px;
    opacity: 0.5;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.4;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.contact-form,
.delete-account-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-headline);
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: var(--color-accent);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(229, 0, 122, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #ccc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.error-message {
    color: var(--color-danger);
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: var(--color-danger);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
    border-color: #43e97b;
}

.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(67, 233, 123, 0.1);
    border: 2px solid #43e97b;
    color: #2d8654;
}

.form-message.error {
    background: rgba(255, 77, 77, 0.1);
    border: 2px solid var(--color-danger);
    color: #d32f2f;
}

.form-message.info {
    background: rgba(229, 0, 122, 0.1);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.btn-submit {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(3px) translateY(-3px);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* 7. FOOTER */
footer {
    background-color: var(--color-headline);
    color: #eee;
    padding: 80px 20px 40px;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    line-height: 1.6;
}

.footer-web {
    margin-top: 10px;
}

.footer-web a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.footer-web a:hover {
    text-decoration: underline;
}

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

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

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.social-icon:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* 7.5 STORY MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #111111;
    /* Dark background for cinematic feel */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--color-accent);
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    min-height: 400px;
}

.modal-image-side {
    flex: 1;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.modal-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.modal-text-side {
    flex: 1.2;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.modal-divider {
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin-bottom: 25px;
    border-radius: 2px;
}

.modal-summary {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-store-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.modal-store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
    }

    .modal-image-side {
        height: 250px;
    }

    .modal-cover-image {
        object-fit: contain;
        background: #1a1a1a;
    }

    .modal-text-side {
        padding: 40px 30px;
    }

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

/* 8. ENHANCED INTRO SPLASH SCREEN */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out, visibility 1s;
    overflow: hidden;
    cursor: pointer;
}

.intro-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(229, 0, 122, 0.1) 0%, #000000 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

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

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: default;
    pointer-events: auto;
}

.intro-logo {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-logo.visible {
    opacity: 1;
    transform: scale(1);
    animation: logo-glow 2s ease-in-out infinite alternate;
}

.intro-logo-img {
    max-width: 300px;
    width: auto;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(229, 0, 122, 0.3));
    transition: filter 0.3s ease;
}

@keyframes logo-glow {
    from {
        filter: drop-shadow(0 0 20px rgba(229, 0, 122, 0.3));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(229, 0, 122, 0.5)) drop-shadow(0 0 50px rgba(229, 0, 122, 0.3));
    }
}

#intro-text {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(229, 0, 122, 0.3);
    opacity: 0;
    transform: scale(0.8);
}

#intro-text.visible {
    opacity: 1;
    transform: scale(1);
    animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 20px rgba(229, 0, 122, 0.3),
            0 0 40px rgba(229, 0, 122, 0.2);
    }

    to {
        text-shadow: 0 0 30px rgba(229, 0, 122, 0.5),
            0 0 60px rgba(229, 0, 122, 0.3),
            0 0 80px rgba(229, 0, 122, 0.2);
    }
}

#intro-text.scale-in {
    animation: scale-in 0.6s cubic-bezier(0.4, 0, 0.2, 1), text-glow 2s ease-in-out infinite alternate;
}

@keyframes scale-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

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

/* Loading Dots Animation */
.intro-loader {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
    opacity: 0.7;
}

.loader-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: dot-pulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(229, 0, 122, 0.5);
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dot-pulse {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Enhanced Skip Button */
.skip-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
    font-family: 'Inter', sans-serif;
}

.skip-button:hover {
    background: rgba(229, 0, 122, 0.2);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 0, 122, 0.3);
}

.skip-button:active {
    transform: translateY(0);
}

.skip-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.skip-button svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.skip-button:hover svg {
    transform: translateX(3px);
}

/* 9. MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero p {
        margin: 0 auto 35px;
    }

    .hero-stats {
        justify-content: center;
        gap: 15px;
        margin: 20px auto;
    }

    .stat-item {
        min-width: 90px;
        padding: 10px 14px;
    }

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

    .download-badge {
        height: 45px;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-description-card {
        padding: 40px 30px;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .about-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        align-items: center;
    }

    .detail-icon-wrapper {
        margin: 0 auto;
    }

    .detail-content {
        text-align: center;
    }

    .detail-content h3 {
        text-align: center;
    }

    .detail-content p {
        text-align: center;
    }

    .detail-content a {
        text-align: center;
        display: inline-block;
    }

}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .section-header h2,
    .about-header h2,
    .contact-header h2 {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 40px 30px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .about-details {
        padding: 30px 0;
    }

    .about-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .detail-icon {
        margin: 0 auto;
    }

    /* Stories carousel mobile */
    .carousel-btn {
        display: none;
    }

    .stories-carousel {
        gap: 15px;
        padding: 15px 5px;
    }

    .story-cover {
        flex: 0 0 130px;
        height: 228px;
    }

    .story-overlay {
        padding: 20px 15px 15px;
    }

    .story-overlay h3 {
        font-size: 1rem;
    }

    .story-overlay p {
        font-size: 0.8rem;
    }

    /* Intro screen mobile adjustments */
    #intro-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
        padding: 0 20px;
    }

    .skip-button {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .intro-loader {
        margin-top: 30px;
    }

    .loader-dot {
        width: 6px;
        height: 6px;
    }
}

/* 10. SCROLL ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animations */
.fade-in.visible>* {
    animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fade-in.visible>*:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in.visible>*:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in.visible>*:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* 11. BACK TO TOP BUTTON */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(229, 0, 122, 0.3);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--color-accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(229, 0, 122, 0.4);
}

#back-to-top:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

#back-to-top:active {
    transform: translateY(-2px);
}

/* 12. LOGO HOVER EFFECT */
.logo {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

/* 13. ENHANCED ACCESSIBILITY */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   GDPR/CCPA Compliant Cookie Notice
============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(229, 0, 122, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.cookie-consent-text {
    flex: 1;
    color: var(--color-text);
    line-height: 1.5;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
}

.cookie-consent-text .cookie-consent-title {
    font-weight: 600;
    color: var(--color-headline);
    font-size: 1rem;
    margin-bottom: 4px;
}

.cookie-consent-links {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.cookie-consent-links a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.cookie-consent-links a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-btn:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.cookie-consent-btn-accept {
    background: var(--color-accent);
    color: white;
}

.cookie-consent-btn-accept:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.cookie-consent-btn-settings {
    background: transparent;
    color: var(--color-text);
    border: 1px solid #ddd;
}

.cookie-consent-btn-settings:hover {
    background: #f8f9fa;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.cookie-consent-btn-reject {
    background: transparent;
    color: var(--color-text);
    border: 1px solid #ddd;
}

.cookie-consent-btn-reject:hover {
    background: #f8f9fa;
    border-color: #666;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.cookie-settings-modal.active .cookie-settings-content {
    transform: scale(1) translateY(0);
}

.cookie-settings-header {
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.cookie-settings-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-headline);
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
}

.cookie-settings-subtitle {
    color: var(--color-text);
    margin: 0;
    font-size: 0.95rem;
}

.cookie-settings-body {
    padding: 0 24px 24px 24px;
}

.cookie-settings-section {
    margin-bottom: 24px;
}

.cookie-settings-section:last-child {
    margin-bottom: 0;
}

.cookie-settings-section-title {
    font-weight: 600;
    color: var(--color-headline);
    margin: 0 0 12px 0;
    font-size: 1.1rem;
}

.cookie-settings-section-description {
    color: var(--color-text);
    margin: 0 0 16px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.cookie-toggle:last-child {
    margin-bottom: 0;
}

.cookie-toggle-info {
    flex: 1;
}

.cookie-toggle-title {
    font-weight: 600;
    color: var(--color-headline);
    margin: 0 0 4px 0;
    font-size: 0.95rem;
}

.cookie-toggle-description {
    color: var(--color-text);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: var(--color-accent);
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-settings-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid #eee;
    margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-consent-btn {
        flex: 1;
        text-align: center;
    }

    .cookie-settings-modal {
        padding: 10px;
    }

    .cookie-settings-content {
        max-height: 90vh;
    }

    .cookie-settings-header {
        padding: 20px 20px 0 20px;
    }

    .cookie-settings-body {
        padding: 0 20px 20px 20px;
    }
}

/* Animation for banner slide up */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-banner.visible {
    animation: slideUp 0.3s ease-out;
}

/* ============================================
   VISUAL JUICE ENHANCEMENTS
   Premium Casual Game Aesthetics
============================================ */

/* 1. JELLY/ELASTIC BUTTONS */
@keyframes jelly {
    0% { transform: scale(1, 1); }
    30% { transform: scale(1.25, 0.75); }
    40% { transform: scale(0.75, 1.25); }
    50% { transform: scale(1.15, 0.85); }
    65% { transform: scale(0.95, 1.05); }
    75% { transform: scale(1.05, 0.95); }
    100% { transform: scale(1, 1); }
}

.btn-primary:active,
.btn:active {
    animation: jelly 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

/* 2. ANIMATED MESH GRADIENTS */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-wrapper.bg-pink {
    background: linear-gradient(135deg, #FFF5FA 0%, #FFE5F0 25%, #FFD6E6 50%, #FFE5F0 75%, #FFF5FA 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

.bg-pink {
    background: linear-gradient(135deg, #FFF5FA 0%, #FFE5F0 25%, #FFD6E6 50%, #FFE5F0 75%, #FFF5FA 100%);
    background-size: 200% 200%;
    animation: gradient-shift 20s ease infinite;
}

/* 3. NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* 4. FLOATING BACKGROUND ASSETS */
.floating-assets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-asset {
    position: absolute;
    font-size: 1.5rem;
    animation: float-up linear infinite;
    /* Removed blur filter for better performance */
    user-select: none;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* 5. CUSTOM CURSOR */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(229, 0, 122, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, border-width 0.2s ease;
    background: rgba(229, 0, 122, 0.1);
    backdrop-filter: blur(2px);
}

.custom-cursor.expand {
    width: 60px;
    height: 60px;
    border-color: rgba(229, 0, 122, 1);
    border-width: 4px;
    background: rgba(229, 0, 122, 0.15);
}

.custom-cursor.shrink {
    width: 25px;
    height: 25px;
    border-width: 2px;
}

.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(229, 0, 122, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    border: 2px solid rgba(229, 0, 122, 0.2);
}

/* Custom cursor only on desktop */
@media (pointer: fine) and (min-width: 769px) {
    body {
        cursor: none;
    }

    body * {
        cursor: none;
    }
}

/* Restore cursor for text inputs and textareas */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    cursor: text;
}

/* 6. POP-UP SCROLL ANIMATIONS */
@keyframes pop-up {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fade-in.visible {
    animation: pop-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* 7. ORGANIC CHAPTER DIVIDERS */
.chapter-divider {
    position: relative;
    overflow: hidden;
}

.chapter-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23E5007A'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23E5007A'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23E5007A'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100px;
    pointer-events: none;
    z-index: 1;
}

.chapter-divider-1::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FFF5FA'/%3E%3C/svg%3E") no-repeat bottom;
}

.chapter-divider-2::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F8F9FA'/%3E%3C/svg%3E") no-repeat bottom;
}

.chapter-divider-3::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FFF5FA'/%3E%3C/svg%3E") no-repeat bottom;
}

/* 8. ENHANCED TYPEWRITER CURSOR */
.typewriter-cursor {
    display: inline-block;
    margin-left: 2px;
    color: currentColor;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* 10. ENHANCED CARD SHEEN EFFECT */
.story-cover::after {
    background: radial-gradient(circle 150px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.3) 30%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-cover:hover::after {
    opacity: 1;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .floating-asset,
    .hero-wrapper.bg-pink,
    .bg-pink,
    .fade-in.visible,
    .custom-cursor,
    .cursor-trail {
        animation: none !important;
        transition: none !important;
    }
    
    .floating-assets {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    body * {
        cursor: auto;
    }
    
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
}