/* Color variables for Tech / Dark Mode design */
:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-color: #2AABEE; /* Telegram Blue */
    --accent-hover: #1c88c3;
}

/* Basic reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% 0%, rgba(42, 171, 238, 0.1) 0%, transparent 50%);
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Glassmorphism Effect */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Header Section */
.hero-section {
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: rgba(42, 171, 238, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(42, 171, 238, 0.2);
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, #a1a1aa);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Telegram Button */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.telegram-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 171, 238, 0.2);
}

/* Stripe Compliance Section */
.stripe-compliance {
    border-top: 1px solid var(--card-border);
    padding-top: 25px;
    text-align: left;
}

.stripe-compliance h3 {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compliance-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
}

.compliance-item {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Efecto de elevación y sombra para el enlace del correo */
.compliance-item a {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease; /* Hace que la animación sea suave */
}

.compliance-item a:hover {
    color: var(--accent-hover);
    transform: translateY(-2px); /* Eleva el texto 2 píxeles hacia arriba */
    text-shadow: 0 4px 10px rgba(42, 171, 238, 0.4); /* Crea un resplandor azul sutil */
}

.legal-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.legal-text p {
    margin-bottom: 10px;
}