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

body {
    background: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    color: #111;
}

.topbar {
    width: 100%;
    background: #17171d;
    padding: 18px 25px;
}

.logo {
    color: white;
    font-size: 32px;
    font-weight: 800;
}

.logo span {
    color: #47c766;
}

.container {
    width: 94%;
    max-width: 1100px;
    margin: auto;
    padding: 25px 0;
}

.hero {
    background: white;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.hero-left {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero h1 span {
    color: #2ea043;
}

.hero p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    background: #2ea043;
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
}

.hero-btn:hover {
    background: #238636;
}

.posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-title {
    font-size: 30px;
    margin-bottom: 8px;
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    transition: .2s;
}

.download-card:hover {
    transform: translateY(-3px);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-left img {
    width: 75px;
    height: 75px;
    border-radius: 16px;
    object-fit: cover;
}

.version {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info {
    color: #666;
    font-size: 14px;
}

.download-btn {
    background: #58c472;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.download-btn:hover {
    background: #45b961;
}

footer {
    text-align: center;
    color: #777;
    padding: 35px 20px;
    font-size: 14px;
}

@media(max-width:900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    @media(max-width:650px) {
        .logo {
            font-size: 26px;
        }

        .hero {
            padding: 25px;
        }

        .hero h1 {
            font-size: 34px;
        }

        .hero p {
            font-size: 15px;
        }

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

        .download-card {
            flex-direction: column;
            align-items: flex-start;
        }

        .download-btn {
            width: 100%;
            text-align: center;
        }
    }
}