/* client/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --neon-green: #00ff88;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-image: radial-gradient(circle at 50% 0%, #002b15 0%, #0a0a0a 60%);
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Painel de Vidro (Glassmorphism) */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Títulos */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

h2.highlight {
    color: var(--neon-green);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Textos Explicativos */
.description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Vídeo */
.video-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
    border: 1px solid var(--neon-green);
}

/* Botões */
.btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(90deg, #00b09b, #96c93d); /* Degradê Verde */
    color: #000;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    transition: transform 0.2s;
    border: none;
    display: block;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    display: block;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: scale(1.02);
}