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

:root {
    --primary-color: #1d1d1f;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --bg-color: #ffffff;
    --bg-dark: #000000;
    --accent-color: #0071e3;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

body.modal-open {
    overflow: hidden;
}

/* Music Permission Modal */
.music-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

.music-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.music-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease-out, padding 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.music-modal-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0071e3 0%, #005bb5 50%, #0071e3 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.6s ease-out 0.3s;
}

.music-modal-content.show-thankyou::after {
    opacity: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.music-modal-main {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.music-modal-main.fade-out {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
    pointer-events: none;
}

.music-modal-thankyou {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    padding: 2rem 0;
}

.music-modal-thankyou.fade-in {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.music-modal-thankyou .music-modal-title {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    padding-top: 5.5rem;
}

.music-modal-thankyou .music-modal-title::before {
    content: '♥';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff2d55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 300;
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.3);
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s,
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.music-modal-thankyou.fade-in .music-modal-title::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.thankyou-line-1,
.thankyou-line-2 {
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

.thankyou-line-2 {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
}

.thankyou-line-1.show {
    opacity: 1;
    transform: translateY(0);
}

.thankyou-line-2.show {
    opacity: 1;
    transform: translateY(0);
}

.music-modal.hidden .music-modal-content {
    transform: scale(0.95);
}

.music-modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.music-modal-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 500;
}

.music-modal-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-style: italic;
}

.music-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.music-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.01em;
}

.music-btn-primary {
    background: var(--text-color);
    color: #ffffff;
}

.music-btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.music-btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1.5px solid var(--text-light);
}

.music-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-color);
}

@media (max-width: 480px) {
    .music-modal-content {
        padding: 2.5rem 2rem;
        max-width: 90%;
    }
    
    .music-modal-title {
        font-size: 1.5rem;
    }
    
    .music-modal-text {
        font-size: 0.9rem;
    }
    
    .music-modal-buttons {
        flex-direction: column;
    }
    
    .music-btn {
        width: 100%;
    }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    opacity: 1;
    transition: opacity 0.2s ease-out;
    pointer-events: auto;
    padding-top: 1rem;
}

.main-nav.faded {
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 60px;
    height: auto;
    gap: 2rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

.play-core-page .nav-item {
    color: #e9d5ff;
}

.nav-item:hover {
    opacity: 0.7;
}

.nav-item.active {
    font-weight: 500;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .main-nav {
        padding-top: 0.75rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        min-height: 56px;
        height: auto;
        gap: 1.5rem;
    }
    
    .nav-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding-top: 0.5rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        min-height: 52px;
        height: auto;
        gap: 1rem;
    }
    
    .nav-item {
        font-size: 0.85rem;
    }
}

/* 3D Pan Scroll Section (Continuous Scroll) */
.pan-scroll-section {
    height: 300vh;
    min-height: 300vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 50%, #f5f5f7 100%);
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
    scroll-margin: 0;
    overflow: visible;
    padding: 4rem 0;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.pan-section-container {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 4rem;
    perspective: 2000px;
    pointer-events: none;
}

.pan-section-container > * {
    pointer-events: auto;
}

.pan-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    perspective-origin: center center;
}

.pan-text-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2rem;
}

.pan-text-block {
    text-align: left;
    max-width: 600px;
}

.pan-text-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-color);
}

.pan-3d {
    position: relative;
    width: 320px;
    height: 320px;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
}

.pan-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Pan Top (the square cooking surface) */
.pan-top {
    position: absolute;
    width: 220px;
    height: 220px;
    background: #2a2a2a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.7);
    border: 3px solid #1a1a1a;
    border-radius: 12px;
}

.pan-top::before {
    content: '';
    position: absolute;
    width: 94%;
    height: 94%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, #3a3a3a 0%, #2a2a2a 50%, #1f1f1f 100%);
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Pan Bottom (the square base) */
.pan-bottom {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-20px) rotateX(180deg);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.7),
        inset 0 0 20px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 2px solid #1a1a1a;
}

/* Pan Sides - Front (shallow depth) */
.pan-side-front {
    position: absolute;
    width: 220px;
    height: 40px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    top: 50%;
    left: 50%;
    transform: translate3d(-110px, 90px, 0px) rotateX(90deg);
    transform-origin: 110px 0px center;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.5),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}

/* Pan Sides - Back */
.pan-side-back {
    position: absolute;
    width: 220px;
    height: 40px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    top: 50%;
    left: 50%;
    transform: translate3d(-110px, -110px, 0px) rotateX(-90deg);
    transform-origin: 110px 40px center;
    box-shadow: 
        inset 0 -2px 8px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px 8px 0 0;
}

/* Pan Sides - Left */
.pan-side-left {
    position: absolute;
    width: 40px;
    height: 220px;
    background: linear-gradient(90deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    top: 50%;
    left: 50%;
    transform: translate3d(-110px, -110px, 0px) rotateY(90deg);
    transform-origin: 0px 110px center;
    box-shadow: 
        inset 2px 0 8px rgba(0, 0, 0, 0.5),
        inset -2px 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px 0 0 8px;
}

/* Pan Sides - Right */
.pan-side-right {
    position: absolute;
    width: 40px;
    height: 220px;
    background: linear-gradient(90deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    top: 50%;
    left: 50%;
    transform: translate3d(90px, -110px, 0px) rotateY(-90deg);
    transform-origin: 40px 110px center;
    box-shadow: 
        inset -2px 0 8px rgba(0, 0, 0, 0.5),
        inset 2px 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 8px 8px 0;
}

/* Pan Handle - Thick Rectangular */
.pan-handle {
    position: absolute;
    width: 160px;
    height: 32px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 50%, #1a1a1a 100%);
    top: 50%;
    right: -80px;
    transform: translateY(-50%) translateZ(16px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.6),
        inset 0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 -2px 8px rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border: 2px solid #1a1a1a;
}

.pan-handle::before {
    content: '';
    position: absolute;
    width: 96%;
    height: 60%;
    top: 20%;
    left: 2%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border-radius: 2px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pan-handle::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #1a1a1a;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.4);
    border: 1px solid #0f0f0f;
}

/* Melting Cheese */
.pan-cheese {
    position: absolute;
    width: 190px;
    height: 190px;
    background: radial-gradient(ellipse at center, 
        #ffd700 0%, 
        #ffc84d 15%, 
        #ffa500 35%, 
        rgba(255, 165, 0, 0.8) 60%, 
        rgba(255, 140, 0, 0.5) 80%, 
        transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(22px);
    opacity: 0.9;
    animation: cheese-melt 3s ease-in-out infinite;
    filter: blur(2px);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 20px rgba(255, 200, 0, 0.3),
        0 0 30px rgba(255, 165, 0, 0.2);
}

@keyframes cheese-melt {
    0%, 100% {
        transform: translate(-50%, -50%) translateZ(25px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) translateZ(25px) scale(1.1);
        opacity: 0.9;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    padding: 0;
    overflow: hidden;
}

.hero-identity {
    background: linear-gradient(135deg, #ffe5d9 0%, #ffd4c4 30%, #ffc4b0 60%, #ffb39d 100%);
    position: relative;
}

.hero-identity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 59, 48, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 149, 0, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 150px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 120px;
        margin-bottom: 1rem;
    }
}

.hero-content {
    z-index: 1;
    position: relative;
}

/* Hero Visual Elements for Identity Page */
.hero-visual-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, rgba(255, 107, 53, 0.15) 50%, transparent 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.45) 0%, rgba(255, 59, 48, 0.15) 50%, transparent 100%);
    bottom: 15%;
    right: 15%;
    animation-delay: 2.5s;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.4) 0%, rgba(255, 149, 0, 0.12) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1d1d1f 0%, #86868b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-identity {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b35 50%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

.hero-subtitle-identity {
    color: #8b4513;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 5rem;
    }
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.play-core-page .scroll-arrow {
    border-color: rgba(192, 132, 252, 0.6);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

.play-core-page .scroll-arrow::after {
    background: rgba(192, 132, 252, 0.6);
}

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

@keyframes scroll-down {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* World Changing Section */
.world-changing-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.world-changing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    max-width: 900px;
}

.world-changing-first {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0;
}

.world-changing-second {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--text-light);
    margin: 0;
    text-align: center;
}

/* Text Sections */
.intro-section,
.philosophy-section,
.experience-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.intro-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.intro-part1 {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
}

.intro-part1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.intro-part2 {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 50%, #f5f5f5 100%);
}

.intro-part2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 70%, rgba(255, 59, 48, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-lead {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.intro-split {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.intro-left {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text-color);
}

.intro-right {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 600;
}

.intro-features-text {
    color: #1d1d1f;
    font-weight: 600;
}

.intro-revolution {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
}

.intro-interact {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .intro-content {
        gap: 1.5rem;
    }
    
    .intro-split {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .intro-revolution {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .intro-content {
        gap: 1rem;
    }
    
    .intro-split {
        margin: 1rem 0;
    }
    
    .intro-revolution {
        margin-top: 1.5rem;
    }
}

/* Visual Elements */
.intro-visual,
.intro-visual-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.visual-element-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.08) 100%);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.visual-element-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.18) 0%, rgba(255, 59, 48, 0.06) 100%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.visual-element-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15) 0%, rgba(255, 149, 0, 0.05) 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

.visual-circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.visual-circle-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.2) 0%, transparent 70%);
    bottom: 15%;
    left: 15%;
    animation-delay: 1.5s;
}

.visual-circle-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

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

.philosophy-section {
    background-color: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.identity-page .philosophy-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
}

.identity-page .philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Philosophy visual elements */
.philosophy-section .philosophy-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.philosophy-visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: philosophyFloat 8s ease-in-out infinite;
    filter: blur(50px);
}

.philosophy-visual-element-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.philosophy-visual-element-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.18) 0%, rgba(255, 149, 0, 0.04) 50%, transparent 100%);
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

@keyframes philosophyFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.08);
    }
}

.philosophy-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-left {
    text-align: left;
    align-self: flex-start;
    margin-left: 10%;
    margin-right: 0;
}

.philosophy-right {
    text-align: right;
    align-self: flex-end;
    margin-right: 10%;
    margin-left: 0;
}

@media (max-width: 768px) {
    .philosophy-split {
        gap: 2rem;
    }
    
    .philosophy-left {
        margin-left: 5%;
    }
    
    .philosophy-right {
        margin-right: 5%;
    }
}

@media (max-width: 480px) {
    .philosophy-split {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .philosophy-left {
        text-align: left;
        align-self: flex-start;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .philosophy-right {
        text-align: right;
        align-self: flex-end;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

.experience-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.identity-page .experience-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
}

.identity-page .experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 149, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Experience visual elements */
.experience-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.experience-section .experience-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

/* User Visual Element */
.user-visual-container {
    margin: 4rem 0;
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.user-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: userPulse 3s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.user-circle-1 {
    width: 180px;
    height: 180px;
    border-color: rgba(255, 107, 53, 0.4);
    animation-delay: 0s;
}

.user-circle-2 {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 59, 48, 0.35);
    animation-delay: 1s;
}

.user-circle-3 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 149, 0, 0.3);
    animation-delay: 2s;
}

.user-center {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff3b30 50%, #ff9500 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: userCenterPulse 2s ease-in-out infinite;
}

@keyframes userPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes userCenterPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    }
}

.experience-visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: experienceFloat 9s ease-in-out infinite;
    filter: blur(45px);
}

.experience-visual-element-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.22) 0%, rgba(255, 107, 53, 0.06) 50%, transparent 100%);
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.experience-visual-element-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.2) 0%, rgba(255, 59, 48, 0.05) 50%, transparent 100%);
    bottom: 30%;
    right: 12%;
    animation-delay: 4s;
}

@keyframes experienceFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-25px, 25px) scale(1.06);
    }
    66% {
        transform: translate(30px, -20px) scale(0.96);
    }
}

.text-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.large-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--text-color);
}

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

/* Identity page specific highlight */
.hero-identity .highlight-text,
.philosophy-section .highlight-text,
.intro-section .highlight-text,
.experience-section .highlight-text,
.features-section .highlight-text,
.feature-detail-section .highlight-text,
.cta-section .highlight-text {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b35 50%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Showcase Section */
.showcase-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.showcase-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.showcase-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.showcase-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.showcase-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d1d1f 0%, #000000 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.identity-page .cta-section {
    background: linear-gradient(135deg, #a83a1f 0%, #7a2815 50%, #5a1a0e 100%);
}

.identity-page .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 59, 48, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-title-large {
    font-size: clamp(4rem, 10vw, 9rem);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.cta-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.cta-date {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    margin-top: 2rem;
}

.medium-text {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--text-color);
}

/* Features Section */
.features-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.identity-page .features-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 50%, #f5f5f5 100%);
}

.identity-page .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Feature Detail Section */
.feature-detail-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.feature-detail-section:nth-child(even) {
    background-color: #f5f5f7;
}

.identity-page .feature-detail-section {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe5d9 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.identity-page .feature-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.identity-page .feature-detail-section:nth-child(even) {
    background: linear-gradient(135deg, #ffe5d9 0%, #ffd4c4 50%, #ffe5d9 100%);
}

.identity-page .feature-detail-section:nth-child(even)::before {
    background: radial-gradient(circle at 70% 50%, rgba(255, 59, 48, 0.18) 0%, transparent 60%);
}

/* Feature detail visual elements */
.feature-detail-section .feature-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.feature-visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: featureFloat 7s ease-in-out infinite;
    filter: blur(40px);
}

.feature-visual-element-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.feature-visual-element-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.25) 0%, rgba(255, 59, 48, 0.08) 50%, transparent 100%);
    bottom: 25%;
    right: 20%;
    animation-delay: 2.5s;
}

.feature-visual-element-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.2) 0%, rgba(255, 149, 0, 0.06) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

@keyframes featureFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(25px, -25px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.98);
    }
}

.feature-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.feature-title-gradient {
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b35 50%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title-large {
    font-size: 1.3em;
    display: inline-block;
}

.feature-description {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: var(--text-light);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-6 {
    transition-delay: 1.2s;
}

.delay-8 {
    transition-delay: 1.6s;
}

.reveal-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delayed {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s ease-out 0.8s, transform 1.5s ease-out 0.8s;
}

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

.fade-in-delayed.delay-4 {
    transition: opacity 1.5s ease-out 1.2s, transform 1.5s ease-out 1.2s;
}

.fade-in-delayed.delay-6 {
    transition: opacity 1.5s ease-out 1.8s, transform 1.5s ease-out 1.8s;
}

.fade-in-delayed.delay-8 {
    transition: opacity 1.5s ease-out 2.4s, transform 1.5s ease-out 2.4s;
}

.experience-journey {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.experience-center {
    margin-top: 5rem;
}

.experience-smooth {
    margin-top: 2rem;
}

.rotate-reveal {
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-reveal.visible {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        touch-action: pan-y;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .hero {
        padding-top: 56px;
    }
    
    .pan-scroll-section {
        height: 250vh;
        min-height: 250vh;
        padding: 2rem 0;
        overflow: visible;
    }
    
    .pan-section-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .pan-text-content {
        justify-content: center;
        padding-left: 0;
    }
    
    .pan-text-block {
        text-align: center;
    }
    
    .pan-3d {
        width: 260px;
        height: 260px;
    }
    
    .pan-top {
        width: 180px;
        height: 180px;
        transform: translate(-50%, -50%) translateZ(17.5px);
    }
    
    .pan-bottom {
        width: 180px;
        height: 180px;
        transform: translate(-50%, -50%) translateZ(-17.5px) rotateX(180deg);
    }
    
    .pan-side-front,
    .pan-side-back {
        width: 180px;
        height: 35px;
    }
    
    .pan-side-front {
        transform: translate3d(-90px, 74px, 0px) rotateX(90deg);
        transform-origin: 90px 0px center;
    }
    
    .pan-side-back {
        transform: translate3d(-90px, -90px, 0px) rotateX(-90deg);
        transform-origin: 90px 35px center;
    }
    
    .pan-side-left,
    .pan-side-right {
        width: 35px;
        height: 180px;
    }
    
    .pan-side-left {
        transform: translate3d(-90px, -90px, 0px) rotateY(90deg);
        transform-origin: 0px 90px center;
    }
    
    .pan-side-right {
        transform: translate3d(74px, -90px, 0px) rotateY(-90deg);
        transform-origin: 35px 90px center;
    }
    
    .pan-handle {
        width: 130px;
        height: 28px;
        right: -65px;
    }
    
    .pan-cheese {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .large-text {
        font-size: 2.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .showcase-section {
        min-height: 100vh;
        height: auto;
        padding: 4rem 0;
    }
    
    .showcase-item {
        padding: 1.5rem 1rem;
    }
    
    .showcase-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .showcase-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .showcase-item p {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .world-changing-section,
    .intro-section,
    .philosophy-section,
    .experience-section,
    .showcase-section,
    .cta-section {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        touch-action: pan-y;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 0;
    }
    
    .pan-scroll-section {
        height: 200vh;
        min-height: 200vh;
        padding: 1.5rem 0;
        overflow: visible;
    }
    
    .pan-section-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .pan-text-content {
        justify-content: center;
        padding-left: 0;
    }
    
    .pan-text-block {
        text-align: center;
    }
    
    .pan-3d {
        width: 220px;
        height: 220px;
    }
    
    .pan-top {
        width: 150px;
        height: 150px;
        transform: translate(-50%, -50%) translateZ(15px);
    }
    
    .pan-bottom {
        width: 150px;
        height: 150px;
        transform: translate(-50%, -50%) translateZ(-15px) rotateX(180deg);
    }
    
    .pan-side-front,
    .pan-side-back {
        width: 150px;
        height: 30px;
    }
    
    .pan-side-front {
        width: 150px;
        height: 30px;
        transform: translate3d(-75px, 61px, 0px) rotateX(90deg);
        transform-origin: 75px 0px center;
    }
    
    .pan-side-back {
        width: 150px;
        height: 30px;
        transform: translate3d(-75px, -75px, 0px) rotateX(-90deg);
        transform-origin: 75px 30px center;
    }
    
    .pan-side-left {
        width: 30px;
        height: 150px;
        transform: translate3d(-75px, -75px, 0px) rotateY(90deg);
        transform-origin: 0px 75px center;
    }
    
    .pan-side-right {
        width: 30px;
        height: 150px;
        transform: translate3d(61px, -75px, 0px) rotateY(-90deg);
        transform-origin: 30px 75px center;
    }
    
    .pan-handle {
        width: 110px;
        height: 24px;
        right: -55px;
    }
    
    .pan-cheese {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .large-text {
        font-size: 2rem;
    }
    
    .showcase-item {
        padding: 1.2rem 0.8rem;
    }
    
    .showcase-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .showcase-item h3 {
        font-size: 1.1rem;
    }
    
    .showcase-item p {
        font-size: 0.85rem;
    }
    
    .showcase-section {
        min-height: 100vh;
        height: auto;
        padding: 3rem 0;
    }
    
    .world-changing-section,
    .intro-section,
    .philosophy-section,
    .experience-section,
    .cta-section {
        height: 100vh;
        min-height: 100vh;
    }
}

/* Play Core Page Styles - Purple Theme */
.play-core-page {
    background-color: #1a0d1f;
}

.hero-play-core {
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0d1f 30%, #2d1b3d 60%, #1a0d1f 100%);
    position: relative;
}

.hero-play-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 69, 193, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-title-play-core {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-subtitle-play-core {
    color: #c084fc;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-circle-purple-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0.1) 50%, transparent 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-circle-purple-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, rgba(147, 51, 234, 0.08) 50%, transparent 100%);
    bottom: 15%;
    right: 15%;
    animation-delay: 2.5s;
}

.hero-circle-purple-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 69, 193, 0.2) 0%, rgba(139, 69, 193, 0.06) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

.philosophy-play-core {
    background: linear-gradient(135deg, #1a0d1f 0%, #2d1b3d 50%, #1a0d1f 100%);
    color: #e9d5ff;
}

.philosophy-play-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.philosophy-visual-purple-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 100%);
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.philosophy-visual-purple-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, rgba(147, 51, 234, 0.03) 50%, transparent 100%);
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.intro-play-core {
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0d1f 50%, #2d1b3d 100%);
    color: #e9d5ff;
}

.intro-play-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.intro-features-text-play-core {
    color: #c084fc;
    font-weight: 600;
}

.visual-purple-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.04) 100%);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.visual-purple-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.03) 100%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.visual-purple-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 69, 193, 0.08) 0%, rgba(139, 69, 193, 0.02) 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.highlight-text-play-core {
    color: #a855f7;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mystery Section */
.mystery-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0d1f 0%, #2d1b3d 50%, #1a0d1f 100%);
    position: relative;
    overflow: hidden;
    color: #e9d5ff;
}

.mystery-section .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.mystery-section .text-block {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 2rem 0;
}

.mystery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.mystery-visual-container {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


.mystery-visual-pos-1 {
    top: 10%;
    left: 8%;
}

.mystery-visual-pos-2 {
    top: 10%;
    right: 8%;
}

.mystery-visual-pos-3 {
    bottom: 15%;
    left: 12%;
}

.mystery-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.mystery-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: mysteryPulse 3s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mystery-circle-1 {
    width: 180px;
    height: 180px;
    border-color: rgba(168, 85, 247, 0.3);
    animation-delay: 0s;
}

.mystery-circle-2 {
    width: 140px;
    height: 140px;
    border-color: rgba(147, 51, 234, 0.25);
    animation-delay: 1s;
}

.mystery-circle-3 {
    width: 100px;
    height: 100px;
    border-color: rgba(139, 69, 193, 0.2);
    animation-delay: 2s;
}

.mystery-center {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 20px rgba(168, 85, 247, 0.8),
        0 0 40px rgba(168, 85, 247, 0.6),
        0 0 60px rgba(168, 85, 247, 0.4);
    animation: mysteryQuestionMark 3s ease-in-out infinite;
    opacity: 0.8;
    z-index: 2;
}


@keyframes mysteryPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes mysteryQuestionMark {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        text-shadow: 
            0 0 20px rgba(168, 85, 247, 0.8),
            0 0 40px rgba(168, 85, 247, 0.6),
            0 0 60px rgba(168, 85, 247, 0.4);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15) rotate(-5deg);
        text-shadow: 
            0 0 30px rgba(168, 85, 247, 1),
            0 0 60px rgba(168, 85, 247, 0.8),
            0 0 90px rgba(168, 85, 247, 0.6);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
        text-shadow: 
            0 0 25px rgba(168, 85, 247, 0.9),
            0 0 50px rgba(168, 85, 247, 0.7),
            0 0 75px rgba(168, 85, 247, 0.5);
    }
    75% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15) rotate(-5deg);
        text-shadow: 
            0 0 30px rgba(168, 85, 247, 1),
            0 0 60px rgba(168, 85, 247, 0.8),
            0 0 90px rgba(168, 85, 247, 0.6);
    }
}

.mystery-visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.mystery-visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: mysteryFloat 9s ease-in-out infinite;
    filter: blur(45px);
}

.mystery-visual-element-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 100%);
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.mystery-visual-element-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, rgba(147, 51, 234, 0.03) 50%, transparent 100%);
    bottom: 30%;
    right: 12%;
    animation-delay: 4s;
}

@keyframes mysteryFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-25px, 25px) scale(1.06);
    }
    66% {
        transform: translate(30px, -20px) scale(0.96);
    }
}

/* Slot Section */
.slot-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0d1f 50%, #2d1b3d 100%);
    position: relative;
    overflow: hidden;
    color: #e9d5ff;
}

.slot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.slot-visual-container {
    margin: 4rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-reels {
    display: flex;
    gap: 1rem;
    perspective: 1000px;
}

.slot-reel {
    width: 80px;
    height: 240px;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.15) 50%, rgba(139, 69, 193, 0.2) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(168, 85, 247, 0.2),
        inset 0 0 20px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
    animation: slotReelSpin 3s ease-in-out infinite;
}

.slot-reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(168, 85, 247, 0.1) 20%, 
        rgba(168, 85, 247, 0.1) 80%, 
        transparent 100%);
    pointer-events: none;
}

.reel-1 {
    animation-delay: 0s;
}

.reel-2 {
    animation-delay: 0.3s;
}

.reel-3 {
    animation-delay: 0.6s;
}

.reel-symbol {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    animation: symbolPulse 2s ease-in-out infinite;
    margin: 0.5rem 0;
}

.reel-symbol:nth-child(1) {
    animation-delay: 0s;
}

.reel-symbol:nth-child(2) {
    animation-delay: 0.4s;
}

.reel-symbol:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes slotReelSpin {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(10deg);
    }
}

@keyframes symbolPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.slot-visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.slot-visual-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: slotFloat 8s ease-in-out infinite;
    filter: blur(45px);
}

.slot-visual-element-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 100%);
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.slot-visual-element-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, rgba(147, 51, 234, 0.03) 50%, transparent 100%);
    bottom: 25%;
    left: 12%;
    animation-delay: 3s;
}

@keyframes slotFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -25px) scale(1.05);
    }
    66% {
        transform: translate(-25px, 20px) scale(0.95);
    }
}

.cta-play-core {
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0d1f 50%, #2d1b3d 100%);
    color: #e9d5ff;
}

.cta-play-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.play-core-page .large-text,
.play-core-page .medium-text {
    color: #e9d5ff;
}

.play-core-page .text-light {
    color: #c084fc;
}

/* Responsive adjustments for Play Core */
@media (max-width: 768px) {
    .mystery-visual-container {
        width: 150px;
        height: 150px;
    }
    
    .mystery-visual-pos-1 {
        top: 8%;
        left: 5%;
    }
    
    .mystery-visual-pos-2 {
        top: 8%;
        right: 5%;
    }
    
    .mystery-visual-pos-3 {
        bottom: 12%;
        left: 8%;
    }
    
    .slot-visual-container {
        margin: 2rem 0;
    }
    
    .slot-reels {
        gap: 0.5rem;
    }
    
    .slot-reel {
        width: 60px;
        height: 180px;
    }
    
    .reel-symbol {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mystery-visual-container {
        width: 120px;
        height: 120px;
    }
    
    .mystery-visual-pos-1 {
        top: 5%;
        left: 3%;
    }
    
    .mystery-visual-pos-2 {
        top: 5%;
        right: 3%;
    }
    
    .mystery-visual-pos-3 {
        bottom: 10%;
        left: 5%;
    }
    
    .mystery-circle-1 {
        width: 110px;
        height: 110px;
    }
    
    .mystery-circle-2 {
        width: 85px;
        height: 85px;
    }
    
    .mystery-circle-3 {
        width: 60px;
        height: 60px;
    }
    
    .mystery-center {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .slot-reels {
        gap: 0.3rem;
    }
    
    .slot-reel {
        width: 50px;
        height: 150px;
    }
    
    .reel-symbol {
        font-size: 1.5rem;
    }
}

/* Anniversary Page Styles - Epic Gold Theme */
.anniversary-page {
    background-color: #0a0a0a;
}

.hero-anniversary {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 20%, #1a0f0a 40%, #2d1810 60%, #1a0f0a 80%, #2d1810 100%);
    position: relative;
    overflow: hidden;
}

.hero-anniversary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.anniversary-number {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.number-10 {
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #ffed4e 75%, #ffd700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    text-shadow: 0 0 80px rgba(255, 215, 0, 0.5);
    animation: goldShimmer 3s ease-in-out infinite, numberPulse 4s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    max-width: calc(100vw - 4rem);
    box-sizing: border-box;
    padding: 0 1rem;
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9));
    }
}

.hero-title-anniversary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 0.5rem;
}

.hero-title-main {
    font-size: clamp(4rem, 12vw, 10rem);
    margin-bottom: 2rem;
}

.hero-subtitle-anniversary {
    color: #ffd700;
    font-weight: 500;
    position: relative;
    z-index: 2;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    opacity: 0.9;
}

/* Anniversary Particles */
.anniversary-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700 0%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 6px;
    height: 6px;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

.particle-4 {
    bottom: 25%;
    right: 25%;
    animation-delay: 1s;
}

.particle-5 {
    top: 15%;
    left: 50%;
    animation-delay: 3s;
    width: 5px;
    height: 5px;
}

.particle-6 {
    bottom: 30%;
    left: 15%;
    animation-delay: 5s;
}

.particle-7 {
    top: 40%;
    right: 30%;
    animation-delay: 2.5s;
    width: 6px;
    height: 6px;
}

.particle-8 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(25px) scale(1.1);
        opacity: 1;
    }
}

/* Journey Section */
.journey-section {
    min-height: auto;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.journey-title {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.journey-subtitle {
    margin-top: 0;
}

.highlight-text-anniversary {
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 5rem auto 0;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 10%, 
        rgba(255, 215, 0, 0.6) 50%, 
        rgba(255, 215, 0, 0.3) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.timeline-items {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.4);
    z-index: 2;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.6);
    }
}

.timeline-content {
    flex: 1;
    max-width: 400px;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.timeline-text {
    font-size: 1.2rem;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.timeline-subtext {
    font-size: 0.95rem;
    color: rgba(255, 215, 0, 0.6);
    font-weight: 400;
    font-style: italic;
    margin-top: 0.5rem;
}

.journey-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.journey-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: journeyGlowFloat 10s ease-in-out infinite;
}

.journey-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.journey-glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.journey-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

@keyframes journeyGlowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Celebration Section */
.celebration-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0f0a 0%, #0a0a0a 50%, #1a0f0a 100%);
    position: relative;
    overflow: hidden;
}

.celebration-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.celebration-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    margin: 4rem auto 0;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(255, 215, 0, 0.8);
    font-weight: 500;
}

.celebration-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.celebration-sparkle {
    position: absolute;
    font-size: 3rem;
    animation: sparkleFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

.sparkle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 30%;
    right: 25%;
    animation-delay: 3s;
}

.sparkle-5 {
    top: 35%;
    left: 50%;
    animation-delay: 1.5s;
}

.sparkle-6 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

/* Legacy Section */
.legacy-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.legacy-content {
    margin-top: 3rem;
    text-align: center;
}

.legacy-text {
    color: rgba(255, 215, 0, 0.9);
    margin-bottom: 1rem;
}

.legacy-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.legacy-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: legacyPulse 4s ease-in-out infinite;
}

.legacy-circle-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.legacy-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

.legacy-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
}

@keyframes legacyPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Future Section */
.future-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0f0a 0%, #0a0a0a 50%, #1a0f0a 100%);
    position: relative;
    overflow: hidden;
}

.future-content {
    margin-top: 3rem;
    text-align: center;
}

.future-content .medium-text {
    color: rgba(255, 215, 0, 0.9);
    margin-bottom: 1rem;
}

.future-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.future-beam {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.6) 50%, 
        transparent 100%);
    animation: beamMove 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.future-beam-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.future-beam-2 {
    top: 50%;
    right: 30%;
    animation-delay: 2.5s;
    height: 250px;
}

.future-beam-3 {
    bottom: 25%;
    left: 50%;
    animation-delay: 5s;
}

@keyframes beamMove {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(50px) rotate(10deg);
        opacity: 1;
    }
}

/* Anniversary CTA Section */
.cta-anniversary {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 50%, #1a0f0a 100%);
    position: relative;
}

.cta-anniversary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title-anniversary {
    color: #ffd700;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.cta-subtitle-anniversary {
    color: rgba(255, 215, 0, 0.9);
}

.anniversary-badge {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    text-align: center;
    z-index: 2;
}

.badge-content {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 0 40px rgba(255, 215, 0, 0.1);
    animation: badgeRotate 10s linear infinite;
}

.badge-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    font-size: 1.2rem;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 600;
    margin-top: 0.5rem;
}

.wrapped-link {
    display: inline-block;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50px;
    color: #ffd700;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}


.wrapped-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
    box-shadow: 
        0 5px 30px rgba(255, 215, 0, 0.5),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    color: #ffed4e;
}


@keyframes badgeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.anniversary-page .large-text,
.anniversary-page .medium-text {
    color: rgba(255, 215, 0, 0.95);
}

.anniversary-page .nav-item {
    color: rgba(255, 215, 0, 0.8);
}

.anniversary-page .nav-item.active {
    color: #ffd700;
}

.anniversary-page .scroll-arrow {
    border-color: rgba(255, 215, 0, 0.6);
}

.anniversary-page .scroll-arrow::after {
    background: rgba(255, 215, 0, 0.6);
}

/* Responsive adjustments for Anniversary */
@media (max-width: 768px) {
    .journey-section {
        padding: 4rem 0;
    }
    
    .timeline-container {
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .timeline-items {
        gap: 4rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        max-width: 100%;
        margin: 0 !important;
        padding: 1.5rem;
    }
    
    .timeline-year {
        font-size: 2rem;
    }
    
    .timeline-text {
        font-size: 1.1rem;
    }
    
    .timeline-subtext {
        font-size: 0.85rem;
    }
    
    .celebration-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .badge-content {
        width: 150px;
        height: 150px;
    }
    
    .badge-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .journey-section {
        padding: 3rem 0;
    }
    
    .timeline-items {
        gap: 3rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-year {
        font-size: 1.8rem;
    }
    
    .timeline-text {
        font-size: 1rem;
    }
    
    .timeline-subtext {
        font-size: 0.8rem;
    }
    
    .celebration-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .badge-content {
        width: 120px;
        height: 120px;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
}

/* Wrapped Page Styles - Spotify Wrapped Inspired */
.wrapped-page {
    background: linear-gradient(135deg, #1a0f0a 0%, #0a0a0a 50%, #1a0f0a 100%);
    overflow: hidden;
}

@media (max-width: 800px) {
    .wrapped-page {
        background: transparent;
    }
}

.wrapped-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
    box-sizing: border-box;
}

.wrapped-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    padding: 2rem;
    box-sizing: border-box;
    overflow: visible;
}

.wrapped-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    transition: opacity 0.6s ease-in;
}

.wrapped-slide-content {
    position: relative;
    z-index: 2;
}

/* Simple fade transitions for all slides */
.wrapped-slide.slide-exit-next,
.wrapped-slide.slide-exit-prev {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.wrapped-slide.slide-enter-next,
.wrapped-slide.slide-enter-prev,
.wrapped-slide.slide-enter-zoom,
.wrapped-slide.slide-enter-wave,
.wrapped-slide.slide-enter-melt,
.wrapped-slide.slide-enter-pulse,
.wrapped-slide.slide-enter-roll,
.wrapped-slide.slide-enter-clock,
.wrapped-slide.slide-enter-fade,
.wrapped-slide.slide-enter-gather,
.wrapped-slide.slide-enter-burst,
.wrapped-slide.slide-enter-confetti {
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

/* Animation Keyframes */
/* Removed complex keyframes - using simple fade transitions */

.wrapped-slide-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

.wrapped-slide:not(.active) .fade-in-up,
.wrapped-slide:not(.active) .fade-in-scale {
    opacity: 0;
}

.wrapped-slide.active .fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.wrapped-slide.active .fade-in-scale {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.wrapped-logo {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.wrapped-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.wrapped-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 1rem;
}

.wrapped-year-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #ffd700;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.wrapped-emoji {
    font-size: clamp(5rem, 15vw, 10rem);
    margin-bottom: 2rem;
    display: inline-block;
    animation: emojiBounce 2s ease-in-out infinite;
}

@keyframes emojiBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.wrapped-stat-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.wrapped-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.stat-big-number {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: numberShimmer 3s ease-in-out infinite;
    letter-spacing: -0.05em;
    max-width: calc(100vw - 4rem);
    box-sizing: border-box;
    display: inline-block;
    padding: 0 0.5rem;
}

@keyframes numberShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-percent,
.stat-unit {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    color: #ffd700;
    opacity: 0.8;
}

.wrapped-stat-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 1rem;
}

.wrapped-stat-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 2rem;
    font-style: italic;
}

.wrapped-final-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.final-stat {
    text-align: center;
}

.final-stat-number {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.final-stat-label {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Navigation Controls */
.wrapped-controls {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.wrapped-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.wrapped-nav-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

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

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

.wrapped-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.wrapped-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Slide Indicator Dots */
.wrapped-dots {
    position: fixed;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 1000;
    pointer-events: none;
}

.wrapped-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: auto;
    cursor: pointer;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wrapped-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.wrapped-dot.active {
    background: #ffd700;
    width: 24px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Background Animation Container */
.wrapped-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Unique Themes for Each Slide */
.wrapped-theme-1 {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 30%, #3d2415 60%, #2d1810 100%);
}

.wrapped-theme-2 {
    background: linear-gradient(135deg, #2a1a0f 0%, #3d2415 30%, #4a2e1a 60%, #3d2415 100%);
}

.wrapped-theme-3 {
    background: linear-gradient(135deg, #3d2415 0%, #5a3a20 30%, #6b4525 60%, #5a3a20 100%);
    background-size: cover;
    min-height: 100%;
    width: 100%;
}

.wrapped-theme-4 {
    background: linear-gradient(135deg, #2a1a0f 0%, #3d2415 30%, #4a2e1a 60%, #3d2415 100%);
}

.wrapped-theme-5 {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 30%, #3d2415 60%, #2d1810 100%);
}

.wrapped-theme-7 {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 30%, #2a2a3a 60%, #1a1a2a 100%);
}

.wrapped-theme-8 {
    background: linear-gradient(135deg, #2a1a0f 0%, #3d2415 30%, #4a2e1a 60%, #3d2415 100%);
}

.wrapped-theme-9 {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 30%, #3d2415 60%, #2d1810 100%);
}

.wrapped-theme-10 {
    background: linear-gradient(135deg, #2d1810 0%, #3d2415 30%, #4a2e1a 60%, #3d2415 100%);
}

.wrapped-slide-content {
    position: relative;
    z-index: 2;
}

/* Background Animation Elements - Theme 1 (Welcome) */
.wrapped-theme-1 .bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: circleFloat 15s ease-in-out infinite;
}

.wrapped-theme-1 .bg-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wrapped-theme-1 .bg-circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
    bottom: 15%;
    right: 15%;
    animation-delay: 5s;
}

.wrapped-theme-1 .bg-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.wrapped-theme-1 .bg-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: particleFloat 12s ease-in-out infinite;
}

.wrapped-theme-1 .bg-particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.wrapped-theme-1 .bg-particle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

.wrapped-theme-1 .bg-particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 8s;
}

/* Theme 2 (Constipation) - Wave animations */
.wrapped-theme-2 .bg-wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 100, 100, 0.1) 50%, 
        transparent 100%);
    border-radius: 50%;
    animation: waveMove 8s ease-in-out infinite;
}

.wrapped-theme-2 .bg-wave-1 {
    top: 20%;
    left: -50%;
    animation-delay: 0s;
}

.wrapped-theme-2 .bg-wave-2 {
    bottom: 20%;
    right: -50%;
    animation-delay: 4s;
}

.wrapped-theme-2 .bg-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: shapeMorph 10s ease-in-out infinite;
}

.wrapped-theme-2 .bg-shape-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.wrapped-theme-2 .bg-shape-2 {
    bottom: 15%;
    left: 20%;
    animation-delay: 5s;
}

/* Theme 3 (Cheese) - EXTRA CHEESY! */
.wrapped-theme-3 {
    background: linear-gradient(135deg, 
        #3d2415 0%, 
        #4a2e1a 20%, 
        #5a3a20 40%, 
        #4a2e1a 60%, 
        #3d2415 80%, 
        #4a2e1a 100%);
    position: relative;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.wrapped-theme-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 237, 78, 0.12) 25%, 
        rgba(255, 200, 77, 0.15) 50%, 
        rgba(255, 165, 0, 0.12) 75%, 
        rgba(255, 215, 0, 0.15) 100%);
    background-size: 400% 400%;
    animation: cheeseGradientShift 10s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 800px) {
    .wrapped-theme-3::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
    }
}

@keyframes cheeseGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.wrapped-theme-3 .bg-cheese {
    position: absolute;
    font-size: clamp(3rem, 8vw, 5rem);
    opacity: 0.25;
    animation: cheeseFloat 12s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    z-index: 1;
}

.wrapped-theme-3 .bg-cheese-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.wrapped-theme-3 .bg-cheese-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
    font-size: clamp(3rem, 7vw, 4.5rem);
}

.wrapped-theme-3 .bg-cheese-3 {
    top: 50%;
    left: 8%;
    animation-delay: 3s;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.wrapped-theme-3 .bg-cheese-4 {
    top: 60%;
    right: 12%;
    animation-delay: 4.5s;
    font-size: clamp(3.5rem, 8vw, 5rem);
}

.wrapped-theme-3 .bg-cheese-5 {
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.wrapped-theme-3 .bg-cheese-6 {
    bottom: 10%;
    right: 8%;
    animation-delay: 7.5s;
    font-size: clamp(3rem, 7vw, 4.5rem);
}

.wrapped-theme-3 .bg-cheese-7 {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 9s;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.wrapped-theme-3 .bg-cheese-8 {
    bottom: 25%;
    right: 25%;
    animation-delay: 10.5s;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

/* Melting Cheese Effects */
.wrapped-theme-3 .bg-melt {
    position: absolute;
    width: 200px;
    height: 150px;
    background: linear-gradient(180deg, 
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 200, 0, 0.15) 30%,
        rgba(255, 180, 0, 0.1) 60%,
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(20px);
    animation: cheeseMelt 8s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-3 .bg-melt-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.wrapped-theme-3 .bg-melt-2 {
    top: 50%;
    right: 25%;
    animation-delay: 2.5s;
    transform: rotate(20deg);
    width: 180px;
    height: 130px;
}

.wrapped-theme-3 .bg-melt-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 5s;
    transform: rotate(-10deg);
    width: 160px;
    height: 120px;
}

/* Dripping Cheese */
.wrapped-theme-3 .bg-drip {
    position: absolute;
    width: 30px;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(255, 215, 0, 0.3) 0%,
        rgba(255, 200, 0, 0.25) 50%,
        rgba(255, 180, 0, 0.2) 100%);
    border-radius: 15px 15px 20px 20px;
    filter: blur(3px);
    animation: cheeseDrip 4s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-3 .bg-drip-1 {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.wrapped-theme-3 .bg-drip-2 {
    top: 35%;
    right: 30%;
    animation-delay: 1s;
    height: 100px;
}

.wrapped-theme-3 .bg-drip-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    height: 90px;
}

.wrapped-theme-3 .bg-drip-4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 3s;
    height: 110px;
}

/* Cheese Wheel */
.wrapped-theme-3 .bg-cheese-wheel {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 200, 0, 0.15) 40%,
        rgba(255, 180, 0, 0.1) 70%,
        transparent 100%);
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: cheeseWheelRotate 15s linear infinite;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.15);
    z-index: 1;
}

.wrapped-theme-3 .bg-cheese-wheel-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.wrapped-theme-3 .bg-cheese-wheel-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 7.5s;
    width: 120px;
    height: 120px;
}

.wrapped-theme-3 .bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.08) 0%, transparent 60%);
    animation: gradientPulse 6s ease-in-out infinite;
    z-index: 1;
}

/* Text styling for cheese theme */
.wrapped-theme-3 .wrapped-stat-title,
.wrapped-theme-3 .wrapped-stat-subtitle,
.wrapped-theme-3 .wrapped-stat-description {
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

.wrapped-theme-3 .stat-big-number {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.wrapped-theme-3 .stat-unit,
.wrapped-theme-3 .stat-percent {
    color: #ffd700;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.5);
}

/* Main Cheese Emoji Animation */
.wrapped-theme-3 .cheese-emoji-main {
    animation: cheeseBounce 2s ease-in-out infinite, cheeseRotate 5s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    transform-origin: center center;
}

/* Cheese Puns */
.cheese-puns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cheese-pun {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.25);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    color: #1a0f0a;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    animation: punBounce 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cheese-pun:nth-child(1) {
    animation-delay: 0s;
}

.cheese-pun:nth-child(2) {
    animation-delay: 1s;
}

.cheese-pun:nth-child(3) {
    animation-delay: 2s;
}

/* Enhanced Cheese Animations */
@keyframes cheeseFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-50px) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translateY(-30px) rotate(3deg) scale(1.05);
    }
}

@keyframes cheeseMelt {
    0%, 100% {
        transform: translateY(0) scaleY(1) scaleX(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(20px) scaleY(1.2) scaleX(1.1);
        opacity: 0.6;
    }
}

@keyframes cheeseDrip {
    0%, 100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(15px) scaleY(1.3);
        opacity: 0.8;
    }
}

@keyframes cheeseWheelRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes cheeseBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.15);
    }
}

@keyframes cheeseRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes punBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Theme 4 (Garlic) - Pulsing garlic */
.wrapped-theme-4 .bg-garlic {
    position: absolute;
    font-size: 3rem;
    opacity: 0.25;
    animation: garlicPulse 4s ease-in-out infinite;
}

.wrapped-theme-4 .bg-garlic-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.wrapped-theme-4 .bg-garlic-2 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.wrapped-theme-4 .bg-pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-in-out infinite;
}

.wrapped-theme-4 .bg-pulse-1 {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.wrapped-theme-4 .bg-pulse-2 {
    bottom: 30%;
    right: 30%;
    animation-delay: 1.5s;
}

/* Theme 5 (Dice) - Rolling dice */
.wrapped-theme-5 .bg-dice {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: diceRoll 8s ease-in-out infinite;
}

.wrapped-theme-5 .bg-dice-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wrapped-theme-5 .bg-dice-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.wrapped-theme-5 .bg-dice-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.wrapped-theme-5 .bg-dice-4 {
    bottom: 15%;
    right: 25%;
    animation-delay: 4.5s;
}

.wrapped-theme-5 .bg-dice-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

/* Theme 7 (Clock) - Time rings */
.wrapped-theme-7 {
    background: linear-gradient(135deg, #2d1810 0%, #3d2415 30%, #4a2e1a 60%, #3d2415 100%);
}

.wrapped-theme-7 .bg-clock {
    position: absolute;
    font-size: 5rem;
    opacity: 0.2;
    animation: clockRotate 20s linear infinite;
    top: 20%;
    right: 20%;
    z-index: 1;
}

.wrapped-theme-7 .bg-ring {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: ringExpand 4s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-7 .bg-ring-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wrapped-theme-7 .bg-ring-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.3s;
}

.wrapped-theme-7 .bg-ring-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.6s;
}

/* Theme 8 (Night) - Stars and moon */
.wrapped-theme-8 {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 30%, #2a2a3a 60%, #1a1a2a 100%);
}

.wrapped-theme-8 .bg-moon {
    position: absolute;
    font-size: 6rem;
    opacity: 0.3;
    top: 15%;
    right: 20%;
    animation: moonFloat 10s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-8 .bg-star {
    position: absolute;
    font-size: 2rem;
    opacity: 0.4;
    animation: starTwinkle 3s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-8 .bg-star-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.wrapped-theme-8 .bg-star-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.6s;
}

.wrapped-theme-8 .bg-star-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.2s;
}

.wrapped-theme-8 .bg-star-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1.8s;
}

.wrapped-theme-8 .bg-star-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.4s;
}

/* Theme 9 (Groups) - People connections */
.wrapped-theme-9 {
    background: linear-gradient(135deg, #2a1a0f 0%, #3d2415 30%, #4a2e1a 60%, #3d2415 100%);
}

.wrapped-theme-9 .bg-group {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: groupFloat 10s ease-in-out infinite;
}

.wrapped-theme-8 .bg-group-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.wrapped-theme-8 .bg-group-2 {
    top: 50%;
    right: 20%;
    animation-delay: 3s;
}

.wrapped-theme-8 .bg-group-3 {
    bottom: 20%;
    left: 25%;
    animation-delay: 6s;
}

.wrapped-theme-8 .bg-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: connectionPulse 4s ease-in-out infinite;
}

.wrapped-theme-9 .bg-connection-1 {
    width: 200px;
    top: 30%;
    left: 30%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.wrapped-theme-9 .bg-connection-2 {
    width: 250px;
    bottom: 30%;
    right: 30%;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

/* Theme 10 (Target) - Burst effects */
.wrapped-theme-10 {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 30%, #3d2415 60%, #2d1810 100%);
}

.wrapped-theme-10 .bg-target {
    position: absolute;
    font-size: 4rem;
    opacity: 0.25;
    animation: targetSpin 8s linear infinite;
}

.wrapped-theme-10 .bg-target-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.wrapped-theme-10 .bg-target-2 {
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
}

.wrapped-theme-10 .bg-burst {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: burstExpand 3s ease-in-out infinite;
}

.wrapped-theme-10 .bg-burst-1 {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.wrapped-theme-10 .bg-burst-2 {
    top: 50%;
    right: 30%;
    animation-delay: 1s;
}

.wrapped-theme-10 .bg-burst-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

/* Theme 10 (Final) - Confetti and sparkles - OLD, now theme-12 */
.wrapped-theme-10-old .bg-confetti {
    position: absolute;
    font-size: 3rem;
    opacity: 0.4;
    animation: confettiFall 6s ease-in-out infinite;
}

.wrapped-theme-10 .bg-confetti-1 {
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.wrapped-theme-10 .bg-confetti-2 {
    top: -10%;
    right: 15%;
    animation-delay: 1s;
}

.wrapped-theme-10 .bg-confetti-3 {
    top: -10%;
    left: 50%;
    animation-delay: 2s;
}

.wrapped-theme-10 .bg-confetti-4 {
    top: -10%;
    right: 30%;
    animation-delay: 3s;
}

.wrapped-theme-10 .bg-confetti-5 {
    top: -10%;
    left: 70%;
    animation-delay: 4s;
}

.wrapped-theme-10 .bg-confetti-6 {
    top: -10%;
    right: 50%;
    animation-delay: 5s;
}

.wrapped-theme-10 .bg-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: sparkleTwinkle 2s ease-in-out infinite;
}

.wrapped-theme-10 .bg-sparkle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.wrapped-theme-10 .bg-sparkle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.wrapped-theme-10 .bg-sparkle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

/* Theme 6 (Wildcard Ingredients) - Colorful sweets */
.wrapped-theme-6 {
    background: linear-gradient(135deg, 
        #2a1a0f 0%, 
        #3d2415 30%, 
        #4a2e1a 60%, 
        #3d2415 100%);
}

.wrapped-theme-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 192, 203, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.wrapped-theme-6 .bg-wildcard {
    position: absolute;
    font-size: clamp(2.5rem, 6vw, 4rem);
    opacity: 0.3;
    animation: wildcardBounce 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
    z-index: 1;
}

.wrapped-theme-6 .bg-wildcard-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wrapped-theme-6 .bg-wildcard-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.8s;
}

.wrapped-theme-6 .bg-wildcard-3 {
    top: 50%;
    left: 8%;
    animation-delay: 1.6s;
}

.wrapped-theme-6 .bg-wildcard-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2.4s;
}

.wrapped-theme-6 .bg-wildcard-5 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3.2s;
}

.wrapped-theme-6 .bg-warning {
    position: absolute;
    font-size: clamp(2rem, 5vw, 3rem);
    opacity: 0.4;
    animation: warningPulse 2s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-6 .bg-warning-1 {
    top: 30%;
    right: 25%;
    animation-delay: 0s;
}

.wrapped-theme-6 .bg-warning-2 {
    bottom: 30%;
    left: 25%;
    animation-delay: 1s;
}

/* Ensure content is above ::before overlay */
.wrapped-theme-6 .wrapped-slide-content {
    position: relative;
    z-index: 10;
}

/* Text styling for theme-6 (Wildcard) */
.wrapped-theme-6 .wrapped-stat-title,
.wrapped-theme-6 .wrapped-stat-subtitle,
.wrapped-theme-6 .wrapped-stat-description {
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 105, 180, 0.3);
    font-weight: 600;
}

.wrapped-theme-6 .stat-big-number {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

/* Theme 11 (Raclotto Age) - Birthday celebration */
.wrapped-theme-11-age {
    background: linear-gradient(135deg, 
        #2a1a0f 0%, 
        #3d2415 30%, 
        #4a2e1a 60%, 
        #3d2415 100%);
}

.wrapped-theme-11-age::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: ageGlow 6s ease-in-out infinite;
}

@keyframes ageGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.wrapped-theme-11-age .bg-cake {
    position: absolute;
    font-size: clamp(3rem, 7vw, 5rem);
    opacity: 0.3;
    animation: cakeFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    z-index: 1;
}

.wrapped-theme-11-age .bg-cake-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.wrapped-theme-11-age .bg-cake-2 {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

.wrapped-theme-11-age .bg-candle {
    position: absolute;
    font-size: clamp(2rem, 5vw, 3.5rem);
    opacity: 0.4;
    animation: candleFlicker 2s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-11-age .bg-candle-1 {
    top: 25%;
    right: 25%;
    animation-delay: 0s;
}

.wrapped-theme-11-age .bg-candle-2 {
    top: 50%;
    left: 20%;
    animation-delay: 0.7s;
}

.wrapped-theme-11-age .bg-candle-3 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.4s;
}

.wrapped-theme-11-age .bg-sparkle-age {
    position: absolute;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    opacity: 0.6;
    animation: sparkleAge 3s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-11-age .bg-sparkle-age-1 {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.wrapped-theme-11-age .bg-sparkle-age-2 {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.wrapped-theme-11-age .bg-sparkle-age-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

/* Ensure content is above ::before overlay */
.wrapped-theme-11-age .wrapped-slide-content {
    position: relative;
    z-index: 10;
}

/* Text styling for theme-11-age */
.wrapped-theme-11-age .wrapped-stat-title,
.wrapped-theme-11-age .wrapped-stat-subtitle,
.wrapped-theme-11-age .wrapped-stat-description {
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

.wrapped-theme-11-age .stat-big-number {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

@keyframes cakeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes candleFlicker {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes sparkleAge {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Theme 12 (Spicy Mayo 2023) - Fire and heat */
.wrapped-theme-12-mayo {
    background: linear-gradient(135deg, 
        #1a0a0a 0%, 
        #2d0f0f 20%, 
        #3d1515 40%, 
        #4a1a1a 60%, 
        #3d1515 80%, 
        #2d0f0f 100%);
}

.wrapped-theme-12-mayo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 69, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 140, 0, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 99, 71, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: heatWave 4s ease-in-out infinite;
}

.wrapped-theme-12-mayo .bg-fire {
    position: absolute;
    font-size: clamp(3rem, 7vw, 5rem);
    opacity: 0.4;
    animation: fireFlicker 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.6));
    z-index: 1;
}

.wrapped-theme-12-mayo .bg-fire-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.wrapped-theme-12-mayo .bg-fire-2 {
    top: 25%;
    right: 20%;
    animation-delay: 0.5s;
}

.wrapped-theme-12-mayo .bg-fire-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.wrapped-theme-12-mayo .bg-mayo {
    position: absolute;
    font-size: clamp(2.5rem, 6vw, 4rem);
    opacity: 0.3;
    animation: mayoShake 3s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-12-mayo .bg-mayo-1 {
    top: 40%;
    right: 15%;
    animation-delay: 0s;
}

.wrapped-theme-12-mayo .bg-mayo-2 {
    bottom: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.wrapped-theme-12-mayo .bg-heat {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(255, 69, 0, 0.3) 0%,
        rgba(255, 140, 0, 0.2) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: heatPulse 2s ease-in-out infinite;
    z-index: 1;
}

.wrapped-theme-12-mayo .bg-heat-1 {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.wrapped-theme-12-mayo .bg-heat-2 {
    bottom: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Ensure content is above ::before overlay */
.wrapped-theme-12-mayo .wrapped-slide-content {
    position: relative;
    z-index: 10;
}

/* Text styling for theme-12-mayo (Spicy Mayo) */
.wrapped-theme-12-mayo .wrapped-stat-title,
.wrapped-theme-12-mayo .wrapped-stat-subtitle,
.wrapped-theme-12-mayo .wrapped-stat-description {
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 69, 0, 0.4);
    font-weight: 600;
}

.wrapped-theme-12-mayo .stat-big-number {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.wrapped-theme-12-mayo .stat-unit,
.wrapped-theme-12-mayo .stat-percent {
    color: #ff4500;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(255, 69, 0, 0.6);
}

/* Theme 13 (Final) - Confetti and sparkles */
.wrapped-theme-13 {
    background: linear-gradient(135deg, 
        #2d1810 0%, 
        #3d2415 30%, 
        #4a2e1a 60%, 
        #3d2415 100%);
}

.wrapped-theme-13 .bg-confetti {
    position: absolute;
    font-size: 3rem;
    opacity: 0.4;
    animation: confettiFall 6s ease-in-out infinite;
}

.wrapped-theme-13 .bg-confetti-1 {
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.wrapped-theme-13 .bg-confetti-2 {
    top: -10%;
    right: 15%;
    animation-delay: 1s;
}

.wrapped-theme-13 .bg-confetti-3 {
    top: -10%;
    left: 50%;
    animation-delay: 2s;
}

.wrapped-theme-13 .bg-confetti-4 {
    top: -10%;
    right: 30%;
    animation-delay: 3s;
}

.wrapped-theme-13 .bg-confetti-5 {
    top: -10%;
    left: 70%;
    animation-delay: 4s;
}

.wrapped-theme-13 .bg-confetti-6 {
    top: -10%;
    right: 50%;
    animation-delay: 5s;
}

.wrapped-theme-13 .bg-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: sparkleTwinkle 2s ease-in-out infinite;
}

.wrapped-theme-13 .bg-sparkle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.wrapped-theme-13 .bg-sparkle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.wrapped-theme-13 .bg-sparkle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

/* Animation Keyframes */
@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50px) translateX(30px);
        opacity: 1;
    }
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50%);
    }
}

@keyframes shapeMorph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

@keyframes cheeseFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

@keyframes garlicPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes diceRoll {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes clockRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

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

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

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

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

@keyframes targetSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes burstExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(120vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes sparkleTwinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes wildcardBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translateY(-50px) rotate(-10deg) scale(0.95);
    }
    75% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }
}

@keyframes warningPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes heatWave {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes fireFlicker {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.6;
        transform: scale(1.1) rotate(-5deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95) rotate(5deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.05) rotate(-3deg);
    }
}

@keyframes mayoShake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-5deg);
    }
    50% {
        transform: translateX(10px) rotate(5deg);
    }
    75% {
        transform: translateX(-5px) rotate(-3deg);
    }
}

@keyframes heatPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.wrapped-page .nav-item {
    color: rgba(255, 215, 0, 0.8);
}

.wrapped-page .nav-item.active {
    color: #ffd700;
}

/* Responsive adjustments for Wrapped */
@media (max-width: 768px) {
    .wrapped-controls {
        bottom: 1.5rem;
        padding: 0.75rem 1.5rem;
        gap: 1.5rem;
    }
    
    .wrapped-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .wrapped-progress {
        width: 150px;
    }
    
    .wrapped-dots {
        bottom: 6rem;
        gap: 0.5rem;
    }
    
    .wrapped-dot {
        width: 8px;
        height: 8px;
    }
    
    .wrapped-dot.active {
        width: 20px;
    }
    
    .wrapped-final-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .wrapped-slide-content {
        padding: 1rem;
    }
    
    .wrapped-controls {
        bottom: 1rem;
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .wrapped-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .wrapped-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .wrapped-progress {
        width: 120px;
        height: 3px;
    }
    
    .wrapped-dots {
        bottom: 5rem;
        gap: 0.4rem;
    }
    
    .wrapped-dot {
        width: 6px;
        height: 6px;
    }
    
    .wrapped-dot.active {
        width: 16px;
    }
    
    .wrapped-final-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Height-based responsive adjustments for limited vertical space */
@media (max-height: 800px) {
    /* Wrapped container adjustments */
    .wrapped-container {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 70px; /* Account for navigation bar */
        padding-bottom: 120px; /* Account for controls and dots */
        box-sizing: border-box;
    }
    
    .wrapped-slide {
        overflow: visible;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
        min-height: calc(100vh - 190px); /* Full height minus nav and controls */
    }
    
    /* Anniversary page adjustments */
    .hero-anniversary {
        min-height: auto;
        padding: 70px 2rem 2rem 2rem; /* Top padding for nav bar */
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 70px);
        box-sizing: border-box;
    }
    
    .anniversary-number {
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .number-10 {
        font-size: clamp(4rem, 12vh, 8rem);
        max-width: calc(100vw - 4rem);
        word-break: keep-all;
        overflow-wrap: normal;
        display: inline-block;
        box-sizing: border-box;
        padding: 0 1rem;
    }
    
    .hero-title-anniversary {
        font-size: clamp(2rem, 5vh, 4rem);
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .hero-title-main {
        font-size: clamp(2.5rem, 7vh, 6rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle-anniversary {
        font-size: clamp(1rem, 2.5vh, 1.5rem);
        line-height: 1.4;
    }
    
    .hero-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Anniversary page sections */
    .journey-section {
        padding: 3rem 0;
    }
    
    .timeline-container {
        margin: 3rem auto 0;
    }
    
    .timeline-items {
        gap: 3rem;
        padding: 1rem 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-year {
        font-size: clamp(1.8rem, 4vh, 2.2rem);
    }
    
    .timeline-text {
        font-size: clamp(1rem, 2.5vh, 1.1rem);
    }
    
    .timeline-subtext {
        font-size: clamp(0.9rem, 2vh, 1rem);
    }
    
    .celebration-section,
    .legacy-section,
    .future-section {
        padding: 3rem 0;
    }
    
    .celebration-stats {
        margin-top: 2rem;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 5vh, 3.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.9rem, 2vh, 1.2rem);
    }
    
    .large-text {
        font-size: clamp(2rem, 5vh, 3.5rem);
    }
    
    .medium-text {
        font-size: clamp(1.2rem, 3vh, 1.8rem);
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title-anniversary {
        font-size: clamp(2rem, 5vh, 3.5rem);
    }
    
    .cta-title-large {
        font-size: clamp(2.5rem, 6vh, 4.5rem);
        margin-top: 0.5rem;
    }
    
    .anniversary-badge {
        display: block;
        width: fit-content;
        margin: 1.5rem auto 0;
        text-align: center;
        z-index: 2;
    }
    
    .wrapped-link {
        margin-top: 2rem;
        padding: 1rem 2rem;
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    /* Wrapped page adjustments */
    .wrapped-slide {
        padding: 1rem;
    }
    
    .wrapped-slide-content {
        padding: 1rem;
        max-width: 90%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .wrapped-logo {
        font-size: clamp(1.8rem, 4vh, 3rem);
        margin-bottom: 1rem;
    }
    
    .wrapped-title {
        font-size: clamp(1.8rem, 5vh, 3.5rem);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .wrapped-subtitle {
        font-size: clamp(1rem, 2.5vh, 1.4rem);
        margin-top: 0.5rem;
        line-height: 1.4;
    }
    
    .wrapped-year-badge {
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: clamp(0.85rem, 2vh, 1.2rem);
    }
    
    .wrapped-emoji {
        font-size: clamp(3rem, 10vh, 6rem);
        margin-bottom: 1rem;
    }
    
    .wrapped-stat-title {
        font-size: clamp(1.2rem, 3vh, 2rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .wrapped-stat-number {
        margin: 1rem 0;
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-big-number {
        font-size: clamp(3rem, 10vh, 8rem);
        max-width: calc(100vw - 4rem);
        word-break: keep-all;
        overflow-wrap: normal;
        line-height: 1;
        display: inline-block;
        box-sizing: border-box;
        padding: 0 0.5rem;
    }
    
    .stat-percent,
    .stat-unit {
        font-size: clamp(1.5rem, 4vh, 3rem);
        line-height: 1;
    }
    
    .wrapped-stat-subtitle {
        font-size: clamp(1rem, 2.5vh, 1.4rem);
        margin-top: 0.5rem;
        line-height: 1.4;
    }
    
    .wrapped-stat-description {
        font-size: clamp(0.9rem, 2vh, 1.2rem);
        margin-top: 1rem;
        line-height: 1.5;
    }
    
    .wrapped-final-stats {
        margin-top: 2rem;
        gap: 2rem;
    }
    
    .final-stat-number {
        font-size: clamp(2rem, 6vh, 4rem);
    }
    
    .final-stat-label {
        font-size: clamp(0.85rem, 2vh, 1.2rem);
    }
    
    .cheese-puns {
        margin-top: 1rem;
    }
}

@media (max-height: 600px) {
    /* Even more aggressive adjustments for very limited vertical space */
    .wrapped-container {
        overflow-y: auto;
        padding-top: 70px;
        padding-bottom: 130px; /* More space for controls */
    }
    
    .wrapped-slide {
        padding-top: 0;
        padding-bottom: 0;
        min-height: calc(100vh - 200px);
        align-items: center;
        justify-content: center;
    }
    
    .hero-anniversary {
        padding: 70px 1rem 1rem 1rem;
        overflow: visible;
        min-height: calc(100vh - 70px);
    }
    
    .number-10 {
        font-size: clamp(3rem, 10vh, 6rem);
        max-width: calc(100vw - 2rem);
        padding: 0 0.5rem;
    }
    
    .hero-title-anniversary {
        font-size: clamp(1.5rem, 4vh, 3rem);
        line-height: 1.2;
    }
    
    .hero-title-main {
        font-size: clamp(2rem, 6vh, 5rem);
        line-height: 1.1;
    }
    
    .hero-subtitle-anniversary {
        font-size: clamp(0.9rem, 2vh, 1.3rem);
        line-height: 1.4;
    }
    
    .anniversary-number {
        margin-bottom: 0.5rem;
    }
    
    /* Anniversary page sections - more aggressive */
    .journey-section {
        padding: 2rem 0;
    }
    
    .timeline-container {
        margin: 2rem auto 0;
    }
    
    .timeline-items {
        gap: 2rem;
        padding: 0.5rem 0;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-year {
        font-size: clamp(1.5rem, 3.5vh, 2rem);
    }
    
    .timeline-text {
        font-size: clamp(0.9rem, 2vh, 1rem);
    }
    
    .timeline-subtext {
        font-size: clamp(0.8rem, 1.8vh, 0.95rem);
    }
    
    .celebration-section,
    .legacy-section,
    .future-section {
        padding: 2rem 0;
    }
    
    .celebration-stats {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 4vh, 3rem);
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 1.8vh, 1.1rem);
    }
    
    .large-text {
        font-size: clamp(1.5rem, 4vh, 3rem);
    }
    
    .medium-text {
        font-size: clamp(1rem, 2.5vh, 1.5rem);
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-title-anniversary {
        font-size: clamp(1.5rem, 4vh, 3rem);
    }
    
    .cta-title-large {
        font-size: clamp(2rem, 5vh, 4rem);
        margin-top: 0.5rem;
    }
    
    .anniversary-badge {
        display: block;
        width: fit-content;
        margin: 1rem auto 0;
        text-align: center;
        z-index: 2;
    }
    
    .wrapped-link {
        margin-top: 1.5rem;
        padding: 0.9rem 1.8rem;
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    
    .wrapped-slide {
        padding: 0.5rem;
    }
    
    .wrapped-slide-content {
        padding: 0.5rem;
    }
    
    .wrapped-logo {
        font-size: clamp(1.5rem, 3.5vh, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .wrapped-title {
        font-size: clamp(1.5rem, 4vh, 3rem);
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .wrapped-subtitle {
        font-size: clamp(0.9rem, 2vh, 1.2rem);
        line-height: 1.4;
    }
    
    .wrapped-emoji {
        font-size: clamp(2.5rem, 8vh, 5rem);
        margin-bottom: 0.5rem;
    }
    
    .wrapped-stat-title {
        font-size: clamp(1rem, 2.5vh, 1.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .stat-big-number {
        font-size: clamp(2.5rem, 8vh, 6rem);
        line-height: 1;
        max-width: calc(100vw - 4rem);
        padding: 0 0.5rem;
    }
    
    .stat-percent,
    .stat-unit {
        font-size: clamp(1.2rem, 3vh, 2.5rem);
        line-height: 1;
    }
    
    .wrapped-stat-subtitle {
        font-size: clamp(0.9rem, 2vh, 1.2rem);
        line-height: 1.4;
    }
    
    .wrapped-stat-description {
        font-size: clamp(0.8rem, 1.8vh, 1.1rem);
        margin-top: 0.5rem;
        line-height: 1.5;
    }
    
    .wrapped-year-badge {
        margin-top: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: clamp(0.75rem, 1.8vh, 1rem);
    }
    
    .wrapped-final-stats {
        margin-top: 1rem;
        gap: 1.5rem;
    }
    
    .final-stat-number {
        font-size: clamp(1.5rem, 5vh, 3.5rem);
    }
    
    .final-stat-label {
        font-size: clamp(0.75rem, 1.8vh, 1rem);
    }
}

/* Prevent horizontal clipping for large numbers */
.number-10,
.stat-big-number {
    max-width: calc(100vw - 4rem);
    box-sizing: border-box;
    overflow: visible;
    word-wrap: normal;
    overflow-wrap: normal;
    display: inline-block;
    position: relative;
    padding: 0 0.5rem;
}

/* Ensure parent containers don't clip content */
.anniversary-number,
.wrapped-stat-number {
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    padding: 0 1rem;
    width: 100%;
    text-align: center;
}

/* Ensure hero content doesn't overflow */
.hero-content {
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

/* Ensure wrapped slide content doesn't overflow */
.wrapped-slide-content {
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Landscape orientation (wider than tall) */
@media (min-width: 600px) and (max-height: 800px) and (orientation: landscape) {
    .wrapped-container {
        padding-top: 70px;
        padding-bottom: 140px; /* Extra space for landscape */
    }
    
    .wrapped-slide {
        min-height: calc(100vh - 210px);
    }
    
    .wrapped-slide-content {
        padding: 0.5rem;
        max-width: 95%;
    }
    
    .stat-big-number {
        font-size: clamp(2.5rem, 8vh, 7rem);
        max-width: calc(100vw - 2rem);
    }
    
    .number-10 {
        font-size: clamp(3.5rem, 10vh, 7rem);
        max-width: calc(100vw - 2rem);
    }
    
    .wrapped-emoji {
        font-size: clamp(2.5rem, 8vh, 6rem);
        margin-bottom: 0.5rem;
    }
    
    .wrapped-stat-title {
        font-size: clamp(1rem, 2.5vh, 1.8rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-anniversary {
        padding: 70px 2rem 2rem 2rem;
        min-height: calc(100vh - 70px);
    }
}

/* Fix for cheese theme background on small screens */
@media (max-width: 800px) {
    .wrapped-theme-3 {
        min-height: 100vh;
        height: 100vh;
        background-size: cover;
        background-attachment: scroll;
        width: 100vw;
        position: relative;
    }
    
    .wrapped-theme-3::before {
        min-height: 100vh;
        height: 100vh;
        width: 100vw;
        top: 0;
        left: 0;
    }
    
    .wrapped-container {
        padding-top: 0;
    }
    
    .wrapped-slide.wrapped-theme-3 {
        width: 100vw;
        left: 0;
        right: 0;
        top: 0;
        height: 100vh;
        padding: 0;
    }
    
    .wrapped-theme-3::before {
        right: 0;
        bottom: 0;
    }
}

/* Combined width and height constraints */
@media (max-width: 768px) and (max-height: 800px) {
    .wrapped-slide-content {
        padding: 0.75rem;
    }
    
    .stat-big-number {
        font-size: clamp(2.5rem, 8vh, 7rem);
        max-width: calc(100vw - 2rem);
    }
    
    .number-10 {
        font-size: clamp(3.5rem, 10vh, 7rem);
        max-width: calc(100vw - 2rem);
    }
}

@media (max-width: 480px) and (max-height: 600px) {
    .wrapped-slide-content {
        padding: 0.5rem;
    }
    
    .stat-big-number {
        font-size: clamp(2rem, 7vh, 5rem);
        max-width: calc(100vw - 1rem);
    }
    
    .number-10 {
        font-size: clamp(2.5rem, 8vh, 5rem);
        max-width: calc(100vw - 1rem);
    }
}

