* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-mint: #a8e6cf;
    --secondary-mint: #88d8a3;
    --soft-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --accent-green: #7bc96f;
    --pale-mint: #dcedc1;
    --deep-mint: #5fb3b3;
    --shadow-light: rgba(168, 230, 207, 0.2);
    --shadow-medium: rgba(123, 201, 111, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-mint), var(--secondary-mint));
    --gradient-secondary: linear-gradient(45deg, var(--pale-mint), var(--accent-green));
    --gradient-dark: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--soft-gray);
    overflow-x: hidden;
}

.crystallineNavigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.dreamscapeHeader {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logoContainer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brandIcon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.brandIcon:hover {
    transform: scale(1.1) rotate(5deg);
}

.brandTitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.brandTitle:hover {
    color: var(--accent-green);
}

.etherealMainContent {
    margin-top: 80px;
}

.wordPuzzleHeroZone {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.heroBackgroundLayers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.geometricShapes {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.morphingShape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    filter: blur(1px);
}

.morphingShape.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: morphFloat 8s ease-in-out infinite;
}

.morphingShape.shape2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: morphFloat 6s ease-in-out infinite reverse;
}

.morphingShape.shape3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 15%;
    animation: morphFloat 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes morphFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        border-radius: 50%;
    }
    25% { 
        transform: scale(1.2) rotate(90deg);
        border-radius: 20% 80% 60% 40%;
    }
    50% { 
        transform: scale(0.8) rotate(180deg);
        border-radius: 80% 20% 40% 60%;
    }
    75% { 
        transform: scale(1.1) rotate(270deg);
        border-radius: 40% 60% 80% 20%;
    }
}

.crosswordBackdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.puzzleParticles .floatingCube {
    position: absolute;
    background: var(--gradient-secondary);
    border-radius: 8px;
    animation: floatAnimation 6s ease-in-out infinite;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.puzzleParticles .cube1 {
    width: 30px;
    height: 30px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.puzzleParticles .cube2 {
    width: 25px;
    height: 25px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.puzzleParticles .cube3 {
    width: 35px;
    height: 35px;
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.puzzleParticles .cube4 {
    width: 20px;
    height: 20px;
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.puzzleParticles .cube5 {
    width: 28px;
    height: 28px;
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

.puzzleParticles .cube6 {
    width: 32px;
    height: 32px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
}

.puzzleParticles .cube7 {
    width: 22px;
    height: 22px;
    top: 75%;
    left: 70%;
    animation-delay: 1.5s;
}

.puzzleParticles .cube8 {
    width: 26px;
    height: 26px;
    top: 25%;
    left: 60%;
    animation-delay: 3.5s;
}

.interactiveCrosswordGrid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, 50px);
    grid-template-rows: repeat(4, 50px);
    gap: 8px;
    opacity: 0.4;
}

.crosswordCell {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: cellPulse 3s ease-in-out infinite;
}

.crosswordCell:nth-child(odd) {
    animation-delay: 0.5s;
}

.crosswordCell:hover {
    background: var(--primary-mint);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@keyframes cellPulse {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1);
    }
    50% { 
        background: rgba(168, 230, 207, 0.8);
        transform: scale(1.05);
    }
}

.energyWaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: waveExpand 4s ease-out infinite;
}

.wave.wave1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.wave.wave2 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    right: 25%;
    animation-delay: 1.5s;
}

.wave.wave3 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes waveExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(90deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

.heroContentWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.leftWordChallenge {
    animation: slideInLeft 1s ease-out;
}

.titleWrapper {
    position: relative;
    margin-bottom: 2rem;
}

.mainGameTitle {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.letter-animate {
    display: inline-block;
    animation: letterBounce 2s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.1s);
    transition: all 0.3s ease;
}

.letter-animate:hover {
    color: var(--accent-green);
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(168, 230, 207, 0.8);
}

.space {
    width: 0.5rem;
    display: inline-block;
}

@keyframes letterBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
    }
}

.titleGlow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(168, 230, 207, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.gameDescription {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.miniGameDemo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.miniGameDemo h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.demoGrid {
    display: grid;
    grid-template-columns: repeat(5, 40px);
    gap: 8px;
    margin-bottom: 1rem;
    justify-content: center;
}

.demoCell {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.demoCell.correct {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
    animation: correctPulse 2s ease-in-out infinite;
}

.demoCell.wrong {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    animation: shake 0.5s ease-in-out;
}

.demoCell.partial {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
    animation: partialGlow 2s ease-in-out infinite;
}

.demoCell.empty {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    animation: emptyBlink 1.5s ease-in-out infinite;
}

@keyframes correctPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(123, 201, 111, 0.7); }
    50% { box-shadow: 0 0 20px rgba(123, 201, 111, 0.7); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes partialGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(243, 156, 18, 0.7); }
    50% { box-shadow: 0 0 15px rgba(243, 156, 18, 0.7); }
}

@keyframes emptyBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.demoHint {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.rightPhoneDisplay {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.phoneContainer {
    position: relative;
    margin-bottom: 2rem;
}

.phoneFrame {
    position: relative;
    padding: 10px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 35px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gameScreenshot {
    width: 250px;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gameScreenshot:hover {
    transform: scale(1.05);
}

.phoneGlow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(168, 230, 207, 0.4) 0%, transparent 70%);
    border-radius: 50px;
    animation: phoneGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes phoneGlowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.floatingFeatures {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.bubble2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.bubble3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

.feature-bubble i {
    color: var(--accent-green);
}

.actionButtonsZone {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.playNowButton, .downloadButton {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.playNowButton {
    background: var(--gradient-secondary);
    color: white;
}

.downloadButton {
    background: white;
    color: var(--accent-green);
}

.playNowButton:hover, .downloadButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px var(--shadow-medium);
}

.buttonRipple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    border-radius: 15px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.playNowButton:active .buttonRipple,
.downloadButton:active .buttonRipple {
    transform: scale(1);
}

.animatedMiniCubes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.miniCube {
    width: 120px;
    height: 80px;
    background: var(--gradient-dark);
    border-radius: 12px;
    animation: pulseGlow 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.miniCube:hover {
    transform: scale(1.05);
    background: var(--gradient-primary);
}

.miniCube i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-mint);
    transition: transform 0.3s ease;
}

.miniCube span {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.miniCube.cube2 {
    animation-delay: 0.5s;
}

.miniCube.cube3 {
    animation-delay: 1s;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px var(--shadow-light);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 20px var(--shadow-medium);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sectionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.sectionHeading {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.tranquilFeatures {
    background: white;
    position: relative;
}

.featureGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.uniqueFeatureCard {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--shadow-light);
}

.uniqueFeatureCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.featureIcon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.uniqueFeatureCard:hover .featureIcon {
    transform: scale(1.1) rotate(10deg);
}

.uniqueFeatureCard h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.uniqueFeatureCard p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.statisticsShowcase {
    background: var(--medium-gray);
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.statCard {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px var(--shadow-light);
}

.statCard:hover {
    transform: translateY(-5px);
}

.statNumber {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.statLabel {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.playerTestimonials {
    background: white;
}

.testimonialGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reviewCard {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-green);
}

.reviewCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-light);
}

.reviewStars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reviewText {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewAuthor {
    font-weight: 600;
    color: var(--accent-green);
}

.gameplayPreview {
    background: var(--medium-gray);
}

.gameplaySteps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stepCard {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.stepCard:hover {
    transform: translateY(-8px);
}

.stepNumber {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.stepCard h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.visualGameShowcase {
    background: white;
    position: relative;
    overflow: hidden;
}

.visualGameShowcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23a8e6cf" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%2388d8a3" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%237bc96f" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    opacity: 0.3;
}

.visualGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.imageCard {
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.imageCard.card1 {
    animation-delay: 0.1s;
}

.imageCard.card2 {
    animation-delay: 0.2s;
}

.imageCard.card3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.imageWrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.imageWrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.verticalImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.imageWrapper:hover .verticalImage {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.imageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(168, 230, 207, 0.8), rgba(123, 201, 111, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.imageWrapper:hover .imageOverlay {
    opacity: 1;
}

.overlayContent {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.imageWrapper:hover .overlayContent {
    transform: translateY(0);
}

.overlayContent i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.overlayContent h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.overlayContent p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.4;
}

.cardDescription {
    text-align: center;
    padding: 0 1rem;
}

.cardDescription h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    position: relative;
}

.cardDescription h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.cardDescription p {
    color: var(--dark-gray);
    line-height: 1.6;
    opacity: 0.8;
}

.showcaseStats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.statBubble {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 8px 16px var(--shadow-light);
    transition: all 0.3s ease;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.statBubble:nth-child(1) {
    animation-delay: 0s;
}

.statBubble:nth-child(2) {
    animation-delay: 1s;
}

.statBubble:nth-child(3) {
    animation-delay: 2s;
}

.statBubble:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 24px var(--shadow-medium);
}

.statIcon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.statText {
    font-size: 1rem;
    white-space: nowrap;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.dailyChallengeZone {
    background: white;
}

.challengeGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.challengeCard {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--shadow-light);
}

.challengeCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.challengeIcon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.challengeCard:hover .challengeIcon {
    transform: scale(1.1) rotate(10deg);
}

.challengeCard h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.challengeProgress {
    margin-top: 1.5rem;
}

.progressBar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progressFill {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.badgeCollection {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.badge.earned {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.badge.locked {
    opacity: 0.5;
}

.streakCounter {
    margin-top: 1rem;
}

.streakNumber {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.streakLabel {
    font-size: 0.9rem;
    opacity: 0.9;
}

.communityInsights {
    background: var(--medium-gray);
}

.communityStats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.communityCard {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px var(--shadow-light);
}

.communityCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.communityIcon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.communityData h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.playerAvatars {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatarMore {
    background: var(--accent-green);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.leaderboard {
    margin-top: 1rem;
}

.leaderItem {
    padding: 0.5rem 1rem;
    background: var(--soft-gray);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gameBenefitsShowcase {
    background: white;
}

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefitCard {
    background: var(--soft-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefitCard:hover {
    transform: translateY(-8px);
    border-color: var(--primary-mint);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.benefitIconWrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: white;
    transition: transform 0.3s ease;
}

.benefitCard:hover .benefitIconWrapper {
    transform: scale(1.1) rotate(-10deg);
}

.benefitCard h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.benefitList {
    text-align: left;
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.benefitList li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-gray);
}

.benefitList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 600;
}

.finalCallToAction {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.ctaContent h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ctaContent p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.primaryCtaButton {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--accent-green);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.primaryCtaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.serenityFooter {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footerContent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footerLogo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-mint);
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
}

.companyDescription {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contactDetails h4, .legalLinks h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-mint);
}

.contactDetails p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contactDetails i {
    width: 20px;
    color: var(--primary-mint);
    margin-right: 0.5rem;
}

.legalLinks a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.legalLinks a:hover {
    color: var(--primary-mint);
}

.footerBottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.legalDocumentContent {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.documentContainer {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--shadow-light);
}

.documentHeader {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--medium-gray);
}

.pageTitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.lastUpdated {
    color: var(--accent-green);
    font-weight: 500;
}

.termsSection, .privacySection, .cookiesSection {
    margin-bottom: 2.5rem;
}

.termsSection h2, .privacySection h2, .cookiesSection h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-mint);
}

.termsSection h3, .privacySection h3, .cookiesSection h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 1.5rem 0 1rem;
}

.termsList, .privacyList, .cookiesList {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.termsList li, .privacyList li, .cookiesList li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contactInfo {
    background: var(--soft-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contactInfo p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contactInfo i {
    color: var(--accent-green);
    width: 20px;
}

.cookieTable {
    background: var(--soft-gray);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.cookieRow {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
}

.cookieHeader {
    background: var(--primary-mint);
    font-weight: 600;
    color: white;
}

.cookieRow:nth-child(even) {
    background: white;
}

.cookiePreferences {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.cookieOption {
    margin-bottom: 1rem;
}

.cookieOption label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
}

.cookieOption input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-green);
}

.savePreferences {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.savePreferences:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow-medium);
}

@media (max-width: 768px) {
    .heroContentWrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mainGameTitle {
        font-size: 2.5rem;
    }
    
    .gameScreenshot {
        width: 200px;
        height: 400px;
    }
    
    .actionButtonsZone {
        flex-direction: column;
    }
    
    .featureGrid, .statsGrid, .testimonialGrid, .gameplaySteps, .challengeGrid, .benefitsGrid {
        grid-template-columns: 1fr;
    }
    
    .communityStats {
        grid-template-columns: 1fr;
    }
    
    .communityCard {
        flex-direction: column;
        text-align: center;
    }
    
    .animatedMiniCubes {
        justify-content: center;
    }
    
    .miniCube {
        width: 100px;
        height: 70px;
        font-size: 0.8rem;
    }
    
    .miniCube i {
        font-size: 1rem;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .documentContainer {
        padding: 2rem 1rem;
    }
    
    .cookieRow {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cookieHeader {
        display: none;
    }
    
    .cookieRow:not(.cookieHeader)::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--accent-green);
    }
}

@media (max-width: 480px) {
    .dreamscapeHeader {
        padding: 1rem;
    }
    
    .sectionContainer {
        padding: 2rem 1rem;
    }
    
    .mainGameTitle {
        font-size: 2rem;
    }
    
    .pageTitle {
        font-size: 2rem;
    }
}