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

body {
    font-family: "Fredoka", sans-serif;
    background: #faf6f1;
    color: #4a3728;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 111, 92, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 44px;
    width: auto;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: #6b5344;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #8b6f5c;
}

.nav-links i {
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    text-align: center;
    background: #faf6f1;
    overflow: hidden;
    position: relative;
}

.panda-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    min-height: 420px;
}

.panda {
    object-fit: contain;
}

.panda-center {
    width: 600px;
    height: auto;
    z-index: 2;
    position: relative;
}

.panda-left {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    width: 350px;
    height: auto;
    z-index: 1;
}

.panda-right {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg) scaleX(-1);
    width: 350px;
    height: auto;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #3d2f2f;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.2rem;
    color: #6b5344;
    font-weight: 400;
    margin-bottom: 8px;
}

.description {
    font-size: 1.05rem;
    color: #7d6b5d;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: "Fredoka", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background: #8b6f5c;
    color: #fff;
}

.btn-primary:hover {
    background: #725a4a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #a67c52;
    color: #fff;
}

.btn-secondary:hover {
    background: #8b6914;
    transform: translateY(-2px);
}

.version-announcement {
    margin-top: 32px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #a67c52;
}

/* Screenshots Section */
.screenshots {
    padding: 60px 0 80px;
    background: #faf6f1;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #4a3728;
    margin-bottom: 32px;
}

.carousel-wrapper {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-wrapper.dragging {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.screenshot-card {
    flex-shrink: 0;
    width: 220px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(74, 55, 40, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 55, 40, 0.12);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: #f5f0ea;
    padding: 48px 0;
    border-top: 1px solid rgba(139, 111, 92, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    color: #6b5344;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #8b6f5c;
    color: #fff;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: #6b5344;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #8b6f5c;
}

.copyright {
    font-size: 0.85rem;
    color: #9d8b7a;
}

/* Responsive */
@media (max-width: 900px) {
    .panda-row {
        min-height: 320px;
    }

    .panda-center {
        width: 320px;
    }

    .panda-left,
    .panda-right {
        width: 220px;
    }

    .panda-left {
        left: -80px;
    }

    .panda-right {
        right: -80px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 12px 0;
    }

    .logo img {
        height: 36px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-links i {
        font-size: 1.1rem;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .panda-row {
        min-height: 240px;
        margin-bottom: 16px;
    }

    .panda-center {
        width: 240px;
    }

    .panda-left,
    .panda-right {
        width: 160px;
    }

    .panda-left {
        left: -60px;
    }

    .panda-right {
        right: -60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .screenshots {
        padding: 40px 0 60px;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .carousel-track {
        gap: 16px;
    }

    .screenshot-card {
        width: 180px;
        border-radius: 20px;
    }

    .footer {
        padding: 36px 0;
    }
}
