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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #0d1117 0%, #1a2332 100%);
    color: #c9d1d9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(61, 154, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.github-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #8b949e;
    transition: color 0.3s, transform 0.2s;
}

.github-link:hover {
    color: #58a6ff;
    transform: scale(1.1);
}

.github-logo {
    width: 28px;
    height: 28px;
}

.download-btn {
    background: linear-gradient(135deg, #3d9aff 0%, #1e7ed9 100%);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(61, 154, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
    background: linear-gradient(135deg, #58a6ff 0%, #3d9aff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 154, 255, 0.6);
}

main {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.35rem;
    color: #8b949e;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    background: linear-gradient(135deg, rgba(61, 154, 255, 0.1) 0%, rgba(30, 126, 217, 0.05) 100%);
    border: 1px solid rgba(61, 154, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stats h2 {
    color: #58a6ff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-count {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #58a6ff 0%, #3d9aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.screenshot {
    background: rgba(26, 35, 50, 0.5);
    border: 1px solid rgba(61, 154, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.screenshot:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(61, 154, 255, 0.3);
    border-color: rgba(61, 154, 255, 0.5);
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

footer {
    background: #0d1117;
    border-top: 1px solid rgba(61, 154, 255, 0.2);
    color: #c9d1d9;
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #58a6ff;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #8b949e;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

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

.donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3d9aff 0%, #1e7ed9 100%);
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-btn:hover {
    background: linear-gradient(135deg, #58a6ff 0%, #3d9aff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 154, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 154, 255, 0.1);
    color: #6e7681;
    font-size: 0.9rem;
}

.muosLink {
    color: #6e7681;
}

.iconsLink {
    color: #6e7681;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    header {
        padding: 1.25rem 1.5rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .header-right {
        gap: 1rem;
    }

    .download-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    .screenshots {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        gap: 2rem;
    }
}