/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', cursive;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #87CEEB 0%, #98E4FF 50%, #B8E6B8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
.d0 {
    --delay: 0s;
}
.d1 {
    --delay: 1s;
}
.d2 {
    --delay: 2s;
}
.d07 {
    --delay: 0.7s;
}
.d14 {
    --delay: 1.4s;
}
.d05 {
    --delay: 0.5s;
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6B6B;
}
.logo-icon {
    font-size: 2rem;
    animation: mapSpin 4s linear infinite;
}

@keyframes mapSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF6B6B;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B6B;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.4) 0%, rgba(21, 21, 21, 0.5)), url('image/advent-bg.jpeg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-line {
    display: block;
}

.highlight {
    color: #FF6B6B;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: rgba(255, 225, 53, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #1b1a1a;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #4ECDC4, #6EE7E0);
    color: white;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.adventure-chicken {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chicken-explorer {
    font-size: 8rem;
    animation: explorerBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes explorerBounce {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.backpack {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    animation: backpackSway 2s ease-in-out infinite;
}

@keyframes backpackSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.map {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 2.5rem;
    animation: mapFlutter 4s ease-in-out infinite;
}

@keyframes mapFlutter {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(0.9); }
}

.adventure-path {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.path-dot {
    width: 20px;
    height: 20px;
    background: #FFE135;
    border-radius: 50%;
    animation: pathPulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(255, 225, 53, 0.5);
}

@keyframes pathPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-description {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Adventure Worlds */
.adventures {
    background: rgba(255, 255, 255, 0.9);
}

.adventure-world {
    margin-bottom: 6rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.adventure-world:hover {
    transform: translateY(-10px);
}

.world-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.world-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.world-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.world-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FFE135, #FFD700);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.world-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.world-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.world-activities {
    margin-bottom: 2.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.activity-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.world-btn {
    background: linear-gradient(45deg, #4ECDC4, #6EE7E0);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.world-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.world-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Farm World */
.farm-world .world-visual {
    background: linear-gradient(135deg, #87CEEB 0%, #98E4FF 50%, #B8E6B8 100%);
}

.farm-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 4rem;
    animation: sunGlow 3s ease-in-out infinite;
}

@keyframes sunGlow {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

.barn {
    position: absolute;
    top: 20%;
    left: 15%;
    font-size: 3rem;
    animation: barnSway 4s ease-in-out infinite;
}

@keyframes barnSway {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

.haystack {
    position: absolute;
    bottom: 20%;
    right: 20%;
    font-size: 2.5rem;
    animation: haystackBob 2s ease-in-out infinite;
}

@keyframes haystackBob {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.chicken-farm {
    font-size: 6rem;
    animation: farmChickenWalk 5s ease-in-out infinite;
}

@keyframes farmChickenWalk {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    25% { transform: translateX(20px) rotate(5deg); }
    50% { transform: translateX(0px) rotate(0deg); }
    75% { transform: translateX(-20px) rotate(-5deg); }
}

.flowers {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 2rem;
    animation: flowerSway 3s ease-in-out infinite;
}

@keyframes flowerSway {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Forest World */
.forest-world .world-visual {
    background: linear-gradient(135deg, #2C1810 0%, #4A2C2A 50%, #6B4423 100%);
}

.forest-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moon {
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.magic-tree {
    position: absolute;
    top: 15%;
    right: 15%;
    font-size: 4rem;
    animation: treeGlow 3s ease-in-out infinite;
}

@keyframes treeGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) hue-rotate(30deg); }
}

.fireflies {
    position: absolute;
    width: 100%;
    height: 100%;
}

.firefly {
    position: absolute;
    font-size: 1.5rem;
    animation: fireflyFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.firefly:nth-child(1) { top: 20%; left: 30%; }
.firefly:nth-child(2) { top: 60%; left: 70%; }
.firefly:nth-child(3) { top: 40%; left: 20%; }

@keyframes fireflyFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25% { transform: translate(20px, -15px) scale(1.2); opacity: 1; }
    50% { transform: translate(-10px, -30px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(15px, -10px) scale(1.1); opacity: 0.9; }
}

.mushrooms {
    position: absolute;
    bottom: 20%;
    left: 20%;
    font-size: 2.5rem;
    animation: mushroomGlow 2s ease-in-out infinite;
}

@keyframes mushroomGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5) saturate(1.3); }
}

.chicken-forest {
    font-size: 5rem;
    animation: forestChickenMystic 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes forestChickenMystic {
    0%, 100% { transform: translateY(0px) rotate(0deg); filter: hue-rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); filter: hue-rotate(30deg); }
}

/* Snow World */
.snow-world .world-visual {
    background: linear-gradient(135deg, #E6F3FF 0%, #B8E6FF 50%, #87CEEB 100%);
}

.snow-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mountain {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    animation: mountainShimmer 5s ease-in-out infinite;
}

@keyframes mountainShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2) contrast(1.1); }
}

.snowman {
    position: absolute;
    bottom: 25%;
    left: 20%;
    font-size: 3rem;
    animation: snowmanWiggle 3s ease-in-out infinite;
}

@keyframes snowmanWiggle {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.snowflake {
    position: absolute;
    font-size: 2rem;
    animation: snowfallFloat 8s linear infinite;
    animation-delay: var(--delay);
    opacity: 0.8;
}

.snowflake:nth-child(1) { left: 20%; }
.snowflake:nth-child(2) { left: 60%; }
.snowflake:nth-child(3) { left: 80%; }

@keyframes snowfallFloat {
    0% { transform: translateY(-100px) rotate(0deg); }
    100% { transform: translateY(600px) rotate(360deg); }
}

.chicken-snow {
    font-size: 5rem;
    animation: snowChickenSlide 4s ease-in-out infinite;
}

@keyframes snowChickenSlide {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    25% { transform: translateX(15px) rotate(3deg); }
    75% { transform: translateX(-15px) rotate(-3deg); }
}

.sled {
    position: absolute;
    bottom: 15%;
    right: 15%;
    font-size: 2.5rem;
    animation: sledSlide 3s ease-in-out infinite;
}

@keyframes sledSlide {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(20px) rotate(-10deg); }
}

/* Mini-Games Section */
.mini-games {
    background: linear-gradient(135deg, #FFE135 0%, #FFD700 50%, #FFA500 100%);
}

.games-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.game-zone {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-zone:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.game-preview {
    position: relative;
    height: 150px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon {
    font-size: 4rem;
    z-index: 2;
    position: relative;
}

.game-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.falling-egg {
    position: absolute;
    font-size: 2rem;
    animation: eggFall 3s ease-in-out infinite;
    animation-delay: var(--delay);
    left: 50%;
    transform: translateX(-50%);
}

@keyframes eggFall {
    0% { top: -20px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 120px; opacity: 0; }
}

.light-orb {
    position: absolute;
    font-size: 1.5rem;
    animation: orbChase 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.light-orb:nth-child(1) { top: 20%; left: 20%; }
.light-orb:nth-child(2) { top: 60%; left: 70%; }
.light-orb:nth-child(3) { top: 40%; left: 50%; }

@keyframes orbChase {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    25% { transform: scale(1.3) rotate(90deg); opacity: 1; }
    50% { transform: scale(0.8) rotate(180deg); opacity: 0.5; }
    75% { transform: scale(1.1) rotate(270deg); opacity: 0.9; }
}

.snowball {
    position: absolute;
    font-size: 2rem;
    animation: snowballDash 2.5s linear infinite;
    animation-delay: var(--delay);
    top: 50%;
}

@keyframes snowballDash {
    0% { left: -30px; transform: translateY(-50%) rotate(0deg); }
    100% { left: 100%; transform: translateY(-50%) rotate(720deg); }
}

.game-zone h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.game-zone p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.zone-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.farm-zone .zone-badge {
    background: rgba(184, 230, 184, 0.3);
    color: #2E7D32;
}

.forest-zone .zone-badge {
    background: rgba(156, 39, 176, 0.3);
    color: #4A148C;
}

.snow-zone .zone-badge {
    background: rgba(135, 206, 235, 0.3);
    color: #0D47A1;
}

/* Seasonal Events */
.seasonal-events {
    background: rgba(255, 255, 255, 0.9);
}

.events-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.event-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B6B, #FFE135, #4ECDC4);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.event-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: eventPulse 2s ease-in-out infinite;
}

@keyframes eventPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.event-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.event-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.event-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.event-status.active {
    color: #4CAF50;
}

.event-status.active .status-dot {
    background: #4CAF50;
}

.event-status.upcoming {
    color: #FF9800;
}

.event-status.upcoming .status-dot {
    background: #FF9800;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.event-rewards {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.reward {
    font-size: 2rem;
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 225, 53, 0.2);
    transition: transform 0.3s ease;
}

.reward:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.4), rgba(255, 142, 142, 0.5)), url('image/adven.jpeg') center/cover no-repeat;
    text-align: center;
}

.crossroads-scene {
    position: relative;
    margin-bottom: 3rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.explorer-chicken {
    font-size: 6rem;
    animation: explorerReady 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes explorerReady {
    0%, 100% { transform: scale(1) rotate(-2deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.signposts {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.signpost {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: signpostSway 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.signpost:hover {
    transform: scale(1.1);
}

.farm-sign { animation-delay: 0s; }
.forest-sign { animation-delay: 1s; }
.snow-sign { animation-delay: 2s; }

@keyframes signpostSway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.sign-icon {
    font-size: 2.5rem;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sign-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFE135;
}

.footer-social {
 
    gap: 1rem;
}
a {
    text-decoration: none;
    color: inherit;
}
.footer-social a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
   color: #FFE135;
} 

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer-disclaimer p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
    }

    .nav-menu.active {
        top: 100%;
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .world-content {
        grid-template-columns: 1fr;
    }

    .world-content.reverse {
        grid-template-columns: 1fr;
    }

    .world-info {
        padding: 2rem;
    }

    .world-title {
        font-size: 2rem;
    }

    .chicken-explorer {
        font-size: 6rem;
    }

    .crossroads-scene {
        height: 150px;
    }

    .explorer-chicken {
        font-size: 4rem;
    }

    .signpost {
        transform: scale(0.8);
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .world-info {
        padding: 1.5rem;
    }

    .world-title {
        font-size: 1.8rem;
    }

    .chicken-explorer {
        font-size: 4rem;
    }

    .explorer-chicken {
        font-size: 3rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FFE135;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}