:root {
    --primary: #7C3AED;
    --primary-dark: #3f0a99;
    --secondary: #10b981;
    --background: #f6f6f6;
    --surface: #fff;
    --text: #1e293b;
    --text-muted: #1e293b;
    --error: #ef4444;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    line-height: 1.5;
}

.container {
    background-color: var(--surface);
    border-radius: 0.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 32rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

header {
    margin-bottom: 2rem;
}

.logo {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo svg {
    margin-right: 0.5rem;
}

h2 {
    font-size: 1.875rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.1;
}

.alert {
    background-color: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.375rem;
    display: flex;
    align-items: flex-start;
}

.alert .icon {
    color: var(--primary);
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.alert p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.buttons {
    display: grid;
    gap: 0.5rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.btn-download {
    background-color: var(--primary);
    color: white;
}

.btn-web {
    background-color: var(--secondary);
    color: white;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
}

.btn:hover {
    filter: brightness(110%);
    transform: translateY(-1px);
}

footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1rem;
    }
}
