:root {
    --bg: #0a0104;
    --surface: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.12);
    --accent: #ec4899;
    --accent-bright: #f472b6;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.6);
    --cta-gradient: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 50% -20%, rgba(236, 72, 153, 0.2), transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(190, 24, 93, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    max-height: 95dvh;
    background: var(--surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.telegram-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-logo img {
    width: 80px;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.3));
}

h1 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
}

.description {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin: 4px 0;
    padding: 0 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    /* Removido estilo badge */
    background: none;
    border: none;
    padding: 0;
}

.cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--cta-gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.cta:active {
    transform: scale(0.98);
}

.footer {
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.6;
}

/* ── RESPONSIVIDADE ── */
@media (min-height: 700px) {
    .container {
        gap: 18px;
        padding: 30px 24px;
    }
    .telegram-logo {
        width: 70px;
        height: 70px;
    }
    h1 {
        font-size: 1.8rem;
    }
}