/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Nunito', sans-serif;
    line-height: 1.6;
    color: #4a5568;
    background: linear-gradient(135deg, #e6f3ff 0%, #f0e6ff 25%, #fff0e6 50%, #ffe6f0 75%, #e6fff0 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Gameplay Section */
.hero-gameplay {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-egg,
.floating-heart,
.floating-star {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
}

.floating-egg {
    content: '🥚';
    top: 20%;
    left: 10%;
    animation: float-slow 6s ease-in-out infinite;
}

.floating-heart {
    content: '💖';
    top: 60%;
    right: 15%;
    animation: float-slow 8s ease-in-out infinite reverse;
}

.floating-star {
    content: '⭐';
    top: 30%;
    right: 30%;
    animation: float-slow 7s ease-in-out infinite;
}

.floating-egg::before { content: '🥚'; }
.floating-heart::before { content: '💖'; }
.floating-star::before { content: '⭐'; }

/* Gameplay Sections */
.gameplay-section {
    padding: 6rem 0;
    position: relative;
}

.gameplay-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.3);
}

.gameplay-section:nth-child(odd) {
    background: rgba(139, 92, 246, 0.03);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .content-visual {
    order: -1;
}

.section-image {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
}

/* Feature Lists */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #718096;
    line-height: 1.6;
}

/* Bond Meters */
.bond-meters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meter {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.meter-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.meter-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 2s ease;
}

.happiness-fill {
    background: linear-gradient(90deg, #ec4899, #f97316);
    width: 85%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.energy-fill {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 70%;
    animation: pulse-glow 2s ease-in-out infinite 0.5s;
}

.love-fill {
    background: linear-gradient(90deg, #ef4444, #ec4899);
    width: 95%;
    animation: pulse-glow 2s ease-in-out infinite 1s;
}

/* Nurture Actions */
.nurture-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.action-icon {
    font-size: 1.2rem;
}

/* Food Grid */
.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.food-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.food-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.food-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feeding-tip {
    background: rgba(255, 248, 220, 0.8);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    font-style: italic;
    color: #92400e;
}

/* Evolution Stages */
.evolution-stages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.stage-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.stage-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.stage-info p {
    color: #718096;
}

/* World List */
.world-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.world-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.world-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

.world-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.world-info p {
    color: #718096;
}

/* Decoration Categories */
.decoration-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.category-item p {
    color: #718096;
    font-size: 0.9rem;
}

.decoration-tip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    color: #8b5cf6;
    font-weight: 500;
}

.tip-icon {
    font-size: 1.5rem;
}

/* Quest List */
.quest-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quest-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.quest-item.completed {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.quest-item.active {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.quest-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.quest-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.quest-info {
    flex: 1;
}

.quest-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.quest-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.quest-reward {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

/* Reward Categories */
.reward-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.reward-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.reward-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reward-item {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.reward-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.collection-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: white;
    color: #8b5cf6;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.content-visual {
    width: 90%;
    max-width: 800px;
    height: 600px;
}
.content-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Animations */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes wobble-animation {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-animation {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    }
}

@keyframes map-glow {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.1) saturate(1.2);
    }
}

@keyframes cozy-glow {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
    }
}

@keyframes quest-animation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes treasure-glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
    }
}

/* Animation Classes */
.wobble-animation {
    animation: wobble-animation 3s ease-in-out infinite;
}

.gentle-bounce {
    animation: gentle-bounce 4s ease-in-out infinite;
}

.float-animation {
    animation: float-animation 5s ease-in-out infinite;
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.map-glow {
    animation: map-glow 4s ease-in-out infinite;
}

.cozy-glow {
    animation: cozy-glow 5s ease-in-out infinite;
}

.quest-animation {
    animation: quest-animation 3s ease-in-out infinite;
}

.treasure-glow {
    animation: treasure-glow 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content.reverse .content-visual {
        order: 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .decoration-categories {
        grid-template-columns: 1fr;
    }

    .collection-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

 
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

  
}
.w60 {
    width: 60%;
}
.w100 {
    width: 100%;
}
.w0 {
    width: 0;
}
/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}