<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-orange: #FF8C42;
    --primary-red: #DC143C;
    --primary-green: #32CD32;
    --primary-purple: #8A2BE2;
    --primary-blue: #00CED1;
    --primary-yellow: #FFD700;
    --warm-brown: #D2B48C;
    --crystal-blue: #87CEEB;
    --bg-cream: #FFF8DC;
    --text-dark: #2F4F4F;
    --shadow: rgba(0,0,0,0.2);
    --text-light: #999;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #F0E68C 50%, var(--bg-cream) 100%);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ÐÐ°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #F0E68C 50%, var(--bg-cream) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.logo-image {
    max-width: auto;
    height: 70px;
}

.bazaar-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red), var(--primary-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.cta-nav {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.cta-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
}

/* ÐœÐ¾Ð±Ñ–Ð»ÑŒÐ½Ðµ Ð¼ÐµÐ½ÑŽ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Parallax Ñ– Ð°Ð½Ñ–Ð¼Ð°Ñ†Ñ–Ñ— */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-fruits {
    position: relative;
    width: 100%;
    height: 100%;
}

.fruit, .crystal {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.fruit.banana { top: 10%; left: 10%; animation-delay: 0s; }
.fruit.grape { top: 20%; right: 15%; animation-delay: 1s; }
.fruit.orange { top: 60%; left: 5%; animation-delay: 2s; }
.fruit.watermelon { bottom: 20%; right: 20%; animation-delay: 3s; }
.fruit.pomegranate { top: 40%; right: 5%; animation-delay: 4s; }
.crystal { top: 30%; left: 20%; animation-delay: 0.5s; font-size: 1.5rem; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

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

/* Ð“Ð¾Ð»Ð¾Ð²Ð½Ð° ÑÐµÐºÑ†Ñ–Ñ */
.hero-section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.bazaar-title h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.market-stall {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
    border: 3px solid var(--primary-orange);
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.market-stall::before {
    content: 'ðŸª';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    opacity: 0.1;
}

.market-stall h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.market-stall p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* CTA ÐºÐ½Ð¾Ð¿ÐºÐ¸ */
.cta-container {
    text-align: center;
}

.main-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.main-cta:hover::before {
    left: 100%;
}

.main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.6);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.crystal-bonus {
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

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

/* ÐŸÑ€ÐµÐ²'ÑŽ Ð³Ñ€Ð¸ */
.game-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-scene {
    position: relative;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,248,220,0.8), rgba(240,230,140,0.6));
    border-radius: 50%;
    border: 5px solid var(--primary-orange);
    box-shadow: 0 0 30px var(--shadow);
}

.fruit-basket {
    position: absolute;
    width: 80px;
    height: 60px;
    background: var(--warm-brown);
    border-radius: 15px 15px 30px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 5px;
    animation: basket-fill 3s ease-in-out infinite;
}

.basket-1 { top: 20%; left: 20%; animation-delay: 0s; }
.basket-2 { top: 20%; right: 20%; animation-delay: 1s; }
.basket-3 { bottom: 30%; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

.fruits {
    font-size: 1.2rem;
    animation: fruits-appear 2s ease-in-out infinite;
}

.shop-keeper {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: wave 2s ease-in-out infinite;
}

.market-counter {
    position: absolute;
    bottom: 10%;
    left: 20%;
    right: 20%;
    height: 20px;
    background: var(--warm-brown);
    border-radius: 10px;
    box-shadow: inset 0 2px 5px var(--shadow);
}

@keyframes basket-fill {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fruits-appear {
    0% { opacity: 0.7; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
    100% { opacity: 0.7; transform: translateY(0); }
}

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

/* Ð¡ÐµÐºÑ†Ñ–Ñ— Ð¾ÑÐ¾Ð±Ð»Ð¸Ð²Ð¾ÑÑ‚ÐµÐ¹ */
.features-section, .game-world-section, .register-promo {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title h2 {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-stall {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    border: 3px solid var(--primary-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-stall::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-green), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

.feature-stall:hover::before {
    opacity: 0.1;
}

.feature-stall:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.stall-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.feature-stall h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Ð¡Ð²Ñ–Ñ‚ Ð³Ñ€Ð¸ */
.world-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hexagon-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow);
    border: 4px solid var(--primary-blue);
}

.hexagon-content h3 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.world-features {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.world-feature {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-orange));
    color: white;
    padding: 1rem;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.animated-market {
    background: radial-gradient(circle, var(--bg-cream), var(--crystal-blue));
    padding: 2rem;
    border-radius: 25px;
    border: 4px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.market-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.stall {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: stall-glow 2s ease-in-out infinite;
}

.stall-fruits { background: var(--primary-green); animation-delay: 0s; }
.stall-crystals { background: var(--crystal-blue); animation-delay: 0.5s; }
.stall-tools { background: var(--warm-brown); animation-delay: 1s; }

.market-path {
    height: 10px;
    background: var(--warm-brown);
    border-radius: 5px;
    margin: 1rem 0;
    position: relative;
}

.walking-customer {
    position: absolute;
    bottom: 0;
    font-size: 2rem;
    animation: walk 4s linear infinite;
}

@keyframes stall-glow {
    0%, 100% { box-shadow: 0 0 10px var(--shadow); transform: scale(1); }
    50% { box-shadow: 0 0 20px var(--primary-yellow); transform: scale(1.1); }
}

@keyframes walk {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}

/* Ð&nbsp;ÐµÑ”ÑÑ‚Ñ€Ð°Ñ†Ñ–Ð¹Ð½Ð° Ð¿Ñ€Ð¾Ð¼Ð¾ ÑÐµÐºÑ†Ñ–Ñ */
.register-promo {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.register-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/&gt;&lt;/svg&gt;') repeat;
    opacity: 0.1;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.promo-content {
    flex: 1;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.promo-cta {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.promo-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.bonus-crystals {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.promo-visual {
    flex: 1;
    position: relative;
    min-height: 200px;
}

.gift-box {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s infinite;
}

.flying-crystals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flying-crystals span {
    position: absolute;
    font-size: 1.5rem;
    animation: fly-up 2s infinite;
}

.flying-crystals span:nth-child(1) { left: -30px; animation-delay: 0s; }
.flying-crystals span:nth-child(2) { left: 0px; animation-delay: 0.5s; }
.flying-crystals span:nth-child(3) { left: 30px; animation-delay: 1s; }

@keyframes fly-up {
    0% { transform: translateY(100px) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .promo-content h2 {
        font-size: 2rem;
    }
    
    .promo-visual {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .register-promo {
        padding: 3rem 1rem;
    }
    
    .promo-content h2 {
        font-size: 1.8rem;
    }
    
    .promo-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gift-box {
        font-size: 3rem;
    }
}

/* Reveal Ð°Ð½Ñ–Ð¼Ð°Ñ†Ñ–Ñ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ð¤ÑƒÑ‚ÐµÑ€ */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ñ–ÑÑ‚ÑŒ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }

    .bazaar-title h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1.2rem; }

    .market-scene {
        width: 300px;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .world-container, .promo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title h2 { font-size: 2rem; }
    
    .floating-fruits .fruit, .floating-fruits .crystal {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container { padding: 1rem; }
    .bazaar-title h1 { font-size: 2rem; }
    .main-cta { padding: 1rem 2rem; font-size: 1.1rem; }
    .market-scene { width: 250px; height: 250px; }
    .features-section, .game-world-section { padding: 3rem 1rem; }
}
.active {
    color: var(--primary-orange) !important;
}

.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    margin-bottom: 4rem;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.game-mechanics, .fruit-collection, .upgrade-system, .seasonal-events, .achievements-system {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.mechanic-title h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-purple);
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mechanic-card {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid var(--primary-green);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow);
}

.mechanic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.mechanic-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.fruit-collection h2, .upgrade-system h2, .seasonal-events h2, .achievements-system h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-orange);
}

.fruits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.fruit-category h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.fruit-list {
    display: grid;
    gap: 1rem;
}

.fruit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.fruit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px var(--shadow);
}

.fruit-emoji {
    font-size: 2.5rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
}

.fruit-info h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.fruit-value {
    background: var(--crystal-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.upgrade-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.upgrade-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 8px 25px var(--shadow);
}

.category-header h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.upgrade-list {
    display: grid;
    gap: 1rem;
}

.upgrade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-cream);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.upgrade-info h4 {
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}

.upgrade-info p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.upgrade-cost {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
}

.events-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.event-season {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    display: block;
}

.event-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.event-rewards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.reward {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.achievement-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 8px 25px var(--shadow);
}

.achievement-category h3 {
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.achievements {
    display: grid;
    gap: 1rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-cream);
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px var(--shadow);
}

.achievement-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    border-radius: 50%;
}

.achievement-info h4 {
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-header { padding: 6rem 1rem 2rem; }
    .header-content h1 { font-size: 2rem; }
    .mechanics-grid, .fruits-showcase, .upgrade-categories, .events-timeline, .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-container { padding: 0 1rem; }
    .game-mechanics, .fruit-collection, .upgrade-system, .seasonal-events, .achievements-system {
        padding: 2rem 0;
    }
}
/* Ð”Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¾ Ð´Ð¾ styles.css - Registration Form Styles */

.register-page {
    padding-top: 6rem;
}

.register-hero {
    min-height: 100vh;
    padding: 2rem;
}

.register-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 50px var(--shadow);
    border: 4px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red), var(--primary-purple), var(--primary-blue));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-display {
    background: linear-gradient(45deg, var(--crystal-blue), var(--primary-blue));
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.bonus-crystals-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
}

.crystal-icon {
    font-size: 1.5rem;
    animation: sparkle 1s ease-in-out infinite;
}

.crystal-icon:nth-child(1) { animation-delay: 0s; }
.crystal-icon:nth-child(2) { animation-delay: 0.3s; }
.crystal-icon:nth-child(3) { animation-delay: 0.6s; }

.bonus-text {
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

.registration-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    font-size: 1rem;
    background: var(--bg-cream);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
    transform: translateY(-2px);
}

.form-group.focused input,
.form-group.has-value input {
    border-color: var(--primary-blue);
    background: white;
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-group.focused .input-decoration {
    transform: scaleX(1);
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green);
    border-radius: 5px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.checkbox-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
}

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--primary-yellow);
    border-radius: 15px;
    border: 2px solid var(--primary-orange);
}

.form-footer p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 3rem;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 15px 50px var(--shadow);
}

.benefits-header {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-header h2 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 15px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px var(--shadow);
    border-color: var(--primary-orange);
}

.benefit-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: var(--primary-red);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
}

.preview-showcase {
    background: linear-gradient(135deg, var(--primary-blue), var(--crystal-blue));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.preview-showcase h3 {
    color: white;
    margin-bottom: 1rem;
}

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

.preview-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: scale(1.05);
    background: white;
}

.success-message {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 2rem;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-animation {
    position: relative;
}

.celebration-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: block;
}

.success-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.crystal-rain {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.crystal-rain span {
    font-size: 2rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.next-steps h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.next-steps p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .register-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .form-section, .benefits-section {
        padding: 2rem;
    }
    
    .form-header h1 {
        font-size: 2rem;
    }
    
    .benefits-header h2 {
        font-size: 1.5rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .success-message {
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .celebration-icon {
        font-size: 3rem;
    }
    
    .success-message h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .form-section, .benefits-section {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
}
/* Development Timeline Styles */

.development-page {
    padding-top: 6rem;
}

.timeline-section {
    padding: 4rem 0;
}

.timeline-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.timeline-intro p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dark);
}

.development-bazaar {
    position: relative;
    background: linear-gradient(135deg, var(--bg-cream), rgba(240, 230, 140, 0.3));
    border-radius: 30px;
    padding: 3rem;
    border: 4px solid var(--primary-orange);
}

.bazaar-timeline {
    display: grid;
    gap: 3rem;
    position: relative;
}

.bazaar-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-blue));
    border-radius: 2px;
}

.timeline-stall {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-left: 120px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.timeline-stall::before {
    content: '';
    position: absolute;
    left: -123px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-orange);
}

.timeline-stall:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.timeline-stall.completed {
    border-color: var(--primary-green);
}

.timeline-stall.completed::before {
    background: var(--primary-green);
    box-shadow: 0 0 0 3px var(--primary-green);
}

.timeline-stall.in-progress {
    border-color: var(--primary-orange);
    animation: pulse 2s infinite;
}

.timeline-stall.in-progress::before {
    background: var(--primary-orange);
    box-shadow: 0 0 0 3px var(--primary-orange);
    animation: pulse-dot 2s infinite;
}

.timeline-stall.upcoming {
    border-color: var(--primary-blue);
    opacity: 0.8;
}

.timeline-stall.upcoming::before {
    background: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--primary-blue);
}

.timeline-stall.future {
    border-color: var(--primary-purple);
    opacity: 0.6;
}

.timeline-stall.future::before {
    background: var(--primary-purple);
    box-shadow: 0 0 0 3px var(--primary-purple);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px var(--shadow); }
    50% { box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6); }
}

@keyframes pulse-dot {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.stall-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-cream);
}

.stall-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: bounce 3s infinite;
}

.stall-title h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stall-status {
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.stall-status.completed {
    background: var(--primary-green);
    color: white;
}

.stall-status.in-progress {
    background: var(--primary-orange);
    color: white;
}

.stall-status.upcoming {
    background: var(--primary-blue);
    color: white;
}

.stall-status.future {
    background: var(--primary-purple);
    color: white;
}

.stall-content {
    display: grid;
    gap: 1.5rem;
}

.stall-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.stall-features h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    gap: 0.5rem;
}

.feature-item {
    background: var(--bg-cream);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-yellow);
    transform: translateX(5px);
}

.progress-bar {
    background: var(--bg-cream);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-orange);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    border-radius: 13px;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.beta-signup {
    background: linear-gradient(45deg, var(--crystal-blue), var(--primary-blue));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.beta-cta {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.beta-cta:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.launch-celebration {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-orange));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.launch-celebration h4 {
    margin-bottom: 0.5rem;
}

.behind-scenes {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,230,140,0.3));
}

.behind-scenes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

.development-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.development-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow);
}

.insight-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.join-journey {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.join-journey::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 15s linear infinite;
}

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

.journey-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.journey-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.journey-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.journey-cta:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-decoration {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bazaar-timeline::before {
        left: 25px;
    }
    
    .timeline-stall {
        margin-left: 80px;
        padding: 1.5rem;
    }
    
    .timeline-stall::before {
        left: -83px;
    }
    
    .stall-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .development-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .development-insights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-journey {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }
    
    .journey-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .timeline-stall {
        margin-left: 60px;
        padding: 1rem;
    }
    
    .timeline-stall::before {
        left: -63px;
        width: 15px;
        height: 15px;
    }
    
    .stall-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
.team-page {
    padding-top: 6rem;
}

.team-intro {
    padding: 4rem 0;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.8;
}

.market-team {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-cream), rgba(240, 230, 140, 0.3));
}

.team-bazaar {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.bazaar-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start;
}

.seller-stall {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    border: 4px solid var(--primary-green);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.seller-stall:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.stall-awning {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    border-radius: 20px 20px 0 0;
}

.stall-awning.pink {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-blue));
}

.stall-awning.green {
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
}

.stall-awning.purple {
    background: linear-gradient(45deg, var(--primary-purple), var(--crystal-blue));
}

.stall-awning.yellow {
    background: linear-gradient(45deg, var(--primary-yellow), var(--primary-orange));
}

.stall-awning.red {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-orange));
}

.seller-portrait {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.seller-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid var(--primary-green);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.seller-stall:hover .seller-avatar {
    transform: scale(1.1);
    animation: bounce 0.6s ease;
}

.seller-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-red);
}

.seller-info {
    display: grid;
    gap: 1rem;
}

.seller-role {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-purple);
    text-align: center;
    background: var(--bg-cream);
    padding: 0.5rem;
    border-radius: 15px;
}

.seller-specialty {
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-align: center;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.seller-quote {
    background: linear-gradient(135deg, var(--crystal-blue), var(--primary-blue));
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.quote-mark {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.7;
}

.quote-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

.seller-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--primary-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.seller-experience {
    display: grid;
    gap: 0.5rem;
}

.exp-item {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.stall-decoration {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.team-stats {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.8);
}

.team-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

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

.team-stat {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.team-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow);
}

.team-stat .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.team-stat .stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.team-culture {
    padding: 6rem 0;
}

.team-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow);
    border-color: var(--primary-orange);
}

.culture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 3s infinite;
}

.culture-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.culture-card p {
    line-height: 1.6;
    color: var(--text-dark);
}

.join-team {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.open-positions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.open-positions h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.position-list {
    display: grid;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
}

.position-role {
    font-weight: bold;
}

.position-status {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.team-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem 2rem;
}

.team-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.team-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-team-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bazaar-row {
        grid-template-columns: 1fr;
    }
    
    .seller-stall {
        padding: 1.5rem;
    }
    
    .seller-avatar {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-team, .team-cta {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .seller-stall {
        padding: 1rem;
    }
    
    .seller-skills {
        gap: 0.3rem;
    }
    
    .skill-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .team-stat, .culture-card {
        padding: 1.5rem;
    }
}
/* Features Page Styles */

.features-page {
    padding-top: 6rem;
}

.features-overview {
    padding: 4rem 0;
    text-align: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.overview-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.8;
}

.interactive-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-cream), rgba(240, 230, 140, 0.3));
}

.interactive-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

.features-bazaar {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.interactive-feature {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    border: 4px solid var(--primary-green);
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.interactive-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--primary-orange);
}

.interactive-feature .feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 3s infinite;
}

.interactive-feature h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.interactive-feature p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-demo {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--primary-blue);
}

.demo-area {
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-area:hover {
    transform: scale(1.02);
}

.click-fruits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-fruit {
    font-size: 2rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.demo-fruit:hover {
    transform: scale(1.2);
}

.demo-fruit.clicked {
    animation: fruitCollect 0.5s ease;
}

@keyframes fruitCollect {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(0.5); opacity: 0; }
}

.click-counter {
    background: var(--primary-green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.crystal-showcase {
    text-align: center;
}

.crystal-types {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.crystal-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.crystal-gem {
    font-size: 2.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.crystal-gem.blue {
    color: var(--crystal-blue);
    animation-delay: 0s;
}

.crystal-gem.green {
    color: var(--primary-green);
    animation-delay: 0.5s;
}

.crystal-gem.red {
    color: var(--primary-red);
    animation-delay: 1s;
}

.shop-evolution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.shop-level {
    font-size: 3rem;
    background: var(--primary-yellow);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.shop-level:hover {
    transform: scale(1.1);
    animation: bounce 0.5s ease;
}

.evolution-arrow {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: bold;
}

.unique-items {
    padding: 6rem 0;
}

.unique-items h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.items-collection {
    display: grid;
    gap: 4rem;
}

.item-category h3 {
    color: var(--primary-purple);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.unique-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.unique-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.unique-item.legendary {
    border: 4px solid #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.unique-item.legendary::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.unique-item.epic {
    border: 4px solid #8A2BE2;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.unique-item.epic::before {
    background: linear-gradient(90deg, #8A2BE2, #9370DB);
}

.unique-item.rare {
    border: 4px solid #00CED1;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
}

.unique-item.rare::before {
    background: linear-gradient(90deg, #00CED1, #48D1CC);
}

.unique-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.item-rarity {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.unique-item.legendary .item-rarity {
    background: #FFD700;
    color: #8B4513;
}

.unique-item.epic .item-rarity {
    background: #8A2BE2;
}

.unique-item.rare .item-rarity {
    background: #00CED1;
}

.item-icon {
    font-size: 4rem;
    margin: 1rem 0;
    animation: float 3s ease-in-out infinite;
}

.item-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.item-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.item-value {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
}

.early-access {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,230,140,0.3));
}

.early-access h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

.access-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.tier-card.founder {
    border: 4px solid var(--primary-yellow);
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,255,255,0.95));
}

.tier-card.early-bird {
    border: 4px solid var(--primary-orange);
}

.tier-card.standard {
    border: 4px solid var(--primary-blue);
}

.tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tier-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 3s infinite;
}

.tier-card h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tier-description {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.tier-benefits {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
    text-align: left;
    flex: 1;
}

.benefit {
    background: var(--bg-cream);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
}

.tier-status {
    background: var(--crystal-blue);
    color: white;
    padding: 1rem;
    border-radius: 15px;
}

.spots-left {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.tier-progress .progress-bar {
    flex: 1;
    background: rgba(255,255,255,0.3);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.tier-progress .progress-fill {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 2s ease;
}

.rewards-system {
    padding: 6rem 0;
}

.rewards-system h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.rewards-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.reward-category h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.daily-rewards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.daily-reward {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.daily-reward:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow);
}

.daily-reward.special {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,255,255,0.9));
}

.daily-reward .day {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.daily-reward .reward-icon {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.daily-reward .reward-desc {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.achievement-rewards {
    display: grid;
    gap: 1rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px var(--shadow);
}

.achievement-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-info {
    flex: 1;
}

.achievement-info h4 {
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}

.achievement-info p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.achievement-reward {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: bold;
    text-align: center;
    min-width: 80px;
}

.special-quests {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-cream), rgba(240, 230, 140, 0.3));
}

.special-quests h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

.quest-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quest-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.quest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.daily-quest {
    border: 3px solid var(--primary-green);
}

.daily-quest::before {
    background: var(--primary-green);
}

.weekly-quest {
    border: 3px solid var(--primary-orange);
}

.weekly-quest::before {
    background: var(--primary-orange);
}

.special-quest {
    border: 3px solid var(--primary-purple);
}

.special-quest::before {
    background: var(--primary-purple);
}

.quest-type {
    background: var(--crystal-blue);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.quest-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.quest-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.quest-desc {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.quest-progress {
    margin-bottom: 1rem;
}

.quest-progress .progress-bar {
    background: var(--bg-cream);
    height: 15px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary-green);
}

.quest-progress .progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
    border-radius: 6px;
    transition: width 1s ease;
    position: relative;
}

.quest-progress span {
    text-align: center;
    font-weight: bold;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.quest-reward {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.quest-timer {
    text-align: center;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.9rem;
}

.features-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 20s linear infinite;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.features-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.features-cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-sparkle {
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* JavaScript Interactive Elements */
.clicked-crystal {
    animation: crystalCollect 0.8s ease-out forwards;
}

@keyframes crystalCollect {
    0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-30px) scale(1.5) rotate(180deg); opacity: 0.7; }
    100% { transform: translateY(-60px) scale(0) rotate(360deg); opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interactive-feature {
        padding: 2rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .access-tiers {
        grid-template-columns: 1fr;
    }
    
    .rewards-categories {
        grid-template-columns: 1fr;
    }
    
    .daily-rewards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quest-board {
        grid-template-columns: 1fr;
    }
    
    .shop-evolution {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
    }
    
    .crystal-types {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-cta {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .interactive-feature {
        padding: 1.5rem;
    }
    
    .unique-item {
        padding: 1.5rem;
    }
    
    .tier-card {
        padding: 2rem;
    }
    
    .quest-card {
        padding: 1.5rem;
    }
    
    .daily-rewards {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
/* Screenshots Gallery Styles */

.screenshots-page {
    padding-top: 6rem;
}

.gallery-intro {
    padding: 4rem 0;
    text-align: center;
}

.gallery-intro .intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.gallery-intro .intro-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.8;
}

.screenshots-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-cream), rgba(240, 230, 140, 0.3));
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid var(--primary-green);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

.hexagon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hex-item {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    aspect-ratio: 1;
}

.hex-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.hex-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hex-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red), var(--primary-purple));
}

.hex-item:hover .hex-content {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-orange);
}

.screenshot-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--crystal-blue));
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.screenshot-placeholder:hover img {
    transform: scale(1.05);
}

.screenshot-placeholder.gameplay {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

.screenshot-placeholder.market {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
}

.screenshot-placeholder.market.night {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.screenshot-placeholder.market.seasons {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange), var(--primary-red), var(--crystal-blue));
}

.screenshot-placeholder.characters {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-red));
}

.screenshot-placeholder.ui {
    background: linear-gradient(135deg, var(--crystal-blue), var(--primary-purple));
}

.placeholder-content {
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

/* Game UI Demo Styles */
.game-ui-demo {
    display: grid;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.ui-market {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.fruit-stalls {
    display: flex;
    justify-content: space-around;
}

.stall {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 8px;
}

.ui-bottom {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.ui-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Market Scene Demo */
.market-scene-demo {
    display: grid;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.market-stalls, .market-fruits, .market-people {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 8px;
}

/* Characters Demo */
.characters-demo, .customers-demo, .npcs-demo, .animals-demo {
    display: grid;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
}

.character, .customer, .npc, .animal {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.char-avatar, .customer {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.speech-bubble {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    position: relative;
}

/* UI Demo Elements */
.upgrade-ui-demo, .collection-demo, .achievements-demo, .leaderboard-demo, 
.inventory-demo, .settings-demo, .profile-demo, .trade-demo, .festival-demo, .seasons-demo {
    display: grid;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.upgrade-header, .collection-header, .leaderboard-title, .festival-banner {
    font-weight: bold;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.4rem;
    border-radius: 8px;
}

.upgrade-item, .fruit-slot, .achievement, .player-rank, .item-slot, .setting-item, .stat, .trade-offer, .activity, .season {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievement.unlocked {
    background: rgba(76, 175, 80, 0.3);
}

.achievement.locked {
    background: rgba(158, 158, 158, 0.3);
}

.player-rank.rank-1 { background: rgba(255, 215, 0, 0.3); }
.player-rank.rank-2 { background: rgba(192, 192, 192, 0.3); }
.player-rank.rank-3 { background: rgba(205, 127, 50, 0.3); }

.item-slot.filled { background: rgba(76, 175, 80, 0.3); }
.item-slot.empty { background: rgba(158, 158, 158, 0.2); border: 2px dashed rgba(255, 255, 255, 0.3); }

.profile-avatar {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.trade-arrow {
    font-size: 1.2rem;
    text-align: center;
}

.crystal-mine-demo {
    display: grid;
    gap: 0.8rem;
    text-align: center;
}

.mine-entrance {
    font-size: 2rem;
}

.crystals-scattered {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

.night-market-demo {
    display: grid;
    gap: 0.6rem;
}

.night-sky {
    font-size: 1.5rem;
    text-align: center;
}

.lit-stall {
    display: inline-block;
    margin: 0 0.2rem;
}

.special-fruits {
    font-size: 1.5rem;
    text-align: center;
}

.hex-content h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-rows: 1fr auto auto;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.lightbox-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
}

.lightbox-placeholder {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-info {
    padding: 2rem;
    text-align: center;
    background: var(--bg-cream);
}

.lightbox-info h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.lightbox-info p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--primary-blue);
    color: white;
}

.nav-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.image-counter {
    font-weight: bold;
    font-size: 1.1rem;
}

.gallery-features {
    padding: 6rem 0;
}

.gallery-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

.gallery-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-feature {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 3px solid var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.gallery-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow);
    border-color: var(--primary-orange);
}

.gallery-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 3s infinite;
}

.gallery-feature h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.gallery-feature p {
    color: var(--text-dark);
    line-height: 1.6;
}

.screenshots-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.screenshots-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 25s linear infinite;
}

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

.screenshots-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.screenshots-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.gallery-cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-camera {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hexagon-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .hex-content {
        padding: 1rem;
    }
    
    .screenshot-placeholder {
        height: 150px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-image {
        min-height: 250px;
        padding: 1rem;
    }
    
    .lightbox-placeholder {
        height: 250px;
    }
    
    .lightbox-info {
        padding: 1.5rem;
    }
    
    .lightbox-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshots-cta {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }
    
    .screenshots-cta .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hexagon-gallery {
        grid-template-columns: 1fr;
    }
    
    .placeholder-content {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .ui-btn, .upgrade-item, .fruit-slot {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .gallery-feature {
        padding: 1.5rem;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
    }
}
.legal-page {
    padding-top: 6rem;
    background: var(--bg-cream);
    min-height: 100vh;
}

.legal-content {
    padding: 4rem 0;
}

.policy-document, .terms-document, .cookie-document {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--primary-blue);
    max-width: 1000px;
    margin: 0 auto;
}

.policy-intro, .terms-intro, .cookie-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-orange);
}

.policy-intro h2, .terms-intro h2, .cookie-intro h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.policy-intro p, .terms-intro p, .cookie-intro p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-nav, .terms-nav, .cookie-nav {
    background: var(--primary-blue);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.policy-nav h3, .terms-nav h3, .cookie-nav h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-nav ul, .terms-nav ul, .cookie-nav ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.policy-nav a, .terms-nav a, .cookie-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
}

.policy-nav a:hover, .terms-nav a:hover, .cookie-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.policy-section, .terms-section, .cookie-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--bg-cream);
}

.policy-section:last-of-type, .terms-section:last-of-type, .cookie-section:last-of-type {
    border-bottom: none;
}

.policy-section h2, .terms-section h2, .cookie-section h2 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    border-radius: 15px;
    color: white;
}

.policy-section h3, .terms-section h3, .cookie-section h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.policy-section p, .terms-section p, .cookie-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul, .terms-section ul, .cookie-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li, .terms-section li, .cookie-section li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Specific components for different legal pages */

.data-category, .terms-item, .usage-purpose, .sharing-policy, .protection-measures, .user-rights {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-green);
}

.protection-item, .right-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-blue);
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    border: 3px solid;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.cookie-type-card.essential {
    border-color: var(--primary-red);
}

.cookie-type-card.functional {
    border-color: var(--primary-blue);
}

.cookie-type-card.analytics {
    border-color: var(--primary-green);
}

.cookie-type-card.marketing {
    border-color: var(--primary-orange);
}

.cookie-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 1rem;
}

.cookie-status.essential {
    background: var(--primary-red);
    color: white;
}

.cookie-status.optional {
    background: var(--primary-green);
    color: white;
}

.cookie-status.not-used {
    background: #999;
    color: white;
}

.cookie-table {
    background: var(--bg-cream);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.cookie-row {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid white;
    align-items: center;
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

.cookie-name {
    font-family: monospace;
    font-weight: bold;
    color: var(--primary-purple);
    background: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
}

.cookie-purpose {
    color: var(--text-dark);
}

.cookie-duration {
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
}

.cookie-preferences {
    background: var(--bg-cream);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.preference-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-green);
}

.preference-info h4 {
    color: var(--primary-red);
    margin-bottom: 0.3rem;
}

.preference-info p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.preference-toggle {
    position: relative;
}

.preference-toggle input {
    display: none;
}

.toggle-label {
    display: block;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.preference-toggle input:checked + .toggle-label {
    background: var(--primary-green);
}

.preference-toggle input:checked + .toggle-label::after {
    left: 32px;
}

.preference-toggle input:disabled + .toggle-label {
    background: var(--primary-orange);
    cursor: not-allowed;
}

.preference-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.preference-buttons button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-preferences {
    background: var(--primary-green);
    color: white;
}

.accept-all {
    background: var(--primary-blue);
    color: white;
}

.reject-optional {
    background: var(--primary-red);
    color: white;
}

.preference-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

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

.browser-guide {
    background: var(--bg-cream);
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid var(--primary-blue);
}

.browser-guide h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.browser-guide p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.policy-footer, .terms-footer, .cookie-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--crystal-blue));
    color: white;
    border-radius: 15px;
}

.footer-notice, .acceptance-note, .update-notice {
    margin-bottom: 2rem;
}

.footer-notice h3, .acceptance-note h3, .update-notice h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.policy-summary ul, .contact-support, .contact-cookies {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* Legal page responsive design */
@media (max-width: 768px) {
    .policy-document, .terms-document, .cookie-document {
        padding: 2rem;
        margin: 1rem;
    }
    
    .policy-nav ul, .terms-nav ul, .cookie-nav ul {
        grid-template-columns: 1fr;
    }
    
    .cookie-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .preference-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .preference-buttons {
        flex-direction: column;
    }
    
    .browser-guides {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-document, .terms-document, .cookie-document {
        padding: 1.5rem;
    }
    
    .policy-section h2, .terms-section h2, .cookie-section h2 {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    .data-category, .terms-item, .cookie-type-card {
        padding: 1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Highlight target sections */
.policy-section:target, .terms-section:target, .cookie-section:target {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: -1rem;
    animation: highlight 2s ease-out;
}

@keyframes highlight {
    0% { background: rgba(255, 215, 0, 0.3); }
    100% { background: rgba(255, 215, 0, 0.1); }
}

.market-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 8px solid var(--primary-orange);
    padding: 5px;
    background: white;
}

.market-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.market-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--bg-cream), rgba(240, 230, 140, 0.3));
    border-radius: 25px;
    margin: 20px;
}

/* Cookie Consent Popup Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--primary-green);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-customize {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary-green);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.cookie-customize {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cookie-customize:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-customize {
        width: 100%;
    }
}

.contact-details a,
.legal-terms a,
.contact-cookies a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover,
.legal-terms a:hover,
.contact-cookies a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.image-gallery {
    padding: 4rem 2rem;
    background: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        padding: 3rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        height: 180px;
    }
}

.game-showcase {
    padding: 2rem 0;
   
}

.showcase-image {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-showcase {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-image:hover .main-showcase {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.image-overlay h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.image-overlay p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .image-overlay h2 {
        font-size: 1.8rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
}

.page-header,
.hero-section,
.development-page,
.features-page,
.team-page,
.screenshots-page,
.legal-page {
    padding-top: 80px;
}

@media (max-width: 768px) {
  .page-header,
  .hero-section,
  .development-page,
  .features-page,
  .team-page,
  .screenshots-page,
  .legal-page {
      padding-top: 60px;
  }
}

.market-stall-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-orange);
}

.market-stall-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow);
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.screenshot-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--crystal-blue));
}

.screenshot-placeholder:hover img {
    transform: scale(1.05);
}</pre></body></html>