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

:root {
    --primary: #207e5c;
    --primary-hover: #379070;
    --bg: #111111;
    --surface: #222222;
    --text: #eeeeee;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

/* Logo */
.logo {
    margin-bottom: 2.5rem;
}

.logo img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.15s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn.primary {
    background: var(--primary);
    color: #000;
}

.btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn.secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Downloads */
.downloads {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

/* Download Counter */
.download-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.download-count span {
    color: var(--primary);
    font-weight: 600;
}

/* Links */
.links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn.coffee {
    background: #FFDD00;
    color: #000;
}

.btn.coffee:hover {
    background: #FFE840;
    transform: translateY(-1px);
}

/* Contributors */
.contributors {
    margin-bottom: 2rem;
}

.contributors h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contributors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.contributor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.contributor:hover {
    transform: translateY(-2px);
}

.contributor img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.15s ease;
}

.contributor:hover img {
    border-color: var(--primary);
}

.contributor span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contributor:hover span {
    color: var(--primary);
}

.loading {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }
    
    .logo img {
        width: 100px;
        height: 100px;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .contributor img {
        width: 40px;
        height: 40px;
    }
}
