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

body {
    font-family: 'Fredoka', sans-serif;
    color: #424242;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #FF9800;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 0 #424242;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 0 #424242;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #4FC3F7 0%, #81C784 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: white;
    text-shadow: 4px 4px 0 #424242;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.hero-subtitle {
    font-size: 24px;
    color: white;
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 4px solid #424242;
    box-shadow: 0 6px 0 #424242;
    transition: all 0.2s;
    display: inline-block;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #424242;
}

.btn-primary {
    background: #FFEB3B;
    color: #424242;
}

.btn-secondary {
    background: white;
    color: #424242;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mascot {
    font-size: 200px;
    animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #FF9800;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 3px 3px 0 rgba(66, 66, 66, 0.1);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 4px solid #424242;
    box-shadow: 0 8px 0 rgba(66, 66, 66, 0.3);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: #FF9800;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, white 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    padding: 40px;
    border-radius: 24px;
    border: 4px solid #424242;
    box-shadow: 0 8px 0 #424242;
    text-align: center;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card.purple { background: #BA68C8; }
.game-card.orange { background: #FF9800; }
.game-card.red { background: #FF5252; }
.game-card.blue { background: #4FC3F7; }

.game-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.game-card p {
    font-size: 16px;
    color: white;
    font-weight: 600;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: #4FC3F7;
    text-align: center;
}

.download .section-title {
    color: white;
}

.download-subtitle {
    font-size: 24px;
    color: white;
    margin-bottom: 40px;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.store-button img {
    height: 60px;
    transition: transform 0.3s;
}

.store-button:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #424242;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFEB3B;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFEB3B;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .mascot {
        font-size: 120px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Coming Soon Badge */
.store-button.coming-soon {
    position: relative;
    display: inline-block;
    cursor: default;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFEB3B;
    color: #424242;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid #424242;
    box-shadow: 0 4px 0 #424242;
    white-space: nowrap;
}
