:root {
    --color-primary: #ea5b0c;
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-subtitle: #999999;
    --color-border: rgba(255, 255, 255, 0.08);
    --radius-video: 16px;
    --radius-btn: 50px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

/* ── Layout ── */
.layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    max-width: 540px;
    width: 100%;
    flex: 1;
}

/* ── Logo ── */
.logo img {
    height: 44px;
    width: auto;
    opacity: 0;
    animation: fadeSlideDown 0.8s ease-out 0.1s forwards;
}

/* ── Video Capsule ── */
.video-capsule {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-video);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow:
        0 0 0 1px rgba(234, 91, 12, 0.06),
        0 20px 60px -10px rgba(0, 0, 0, 0.7),
        0 0 80px -20px rgba(234, 91, 12, 0.08);
    opacity: 0;
    animation: fadeScaleIn 1s ease-out 0.3s forwards;
}

.video-capsule video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    display: block;
}

/* ── Message ── */
.message {
    text-align: center;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.5s forwards;
}

.subtitle {
    font-size: 0.7rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.divider {
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.message h1 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.description {
    font-size: 0.85rem;
    color: var(--color-subtitle);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

/* ── Action Buttons ── */
.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.7s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    text-decoration: none;
    color: var(--color-text);
    border-radius: var(--radius-btn);
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
}

.btn svg {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    background: rgba(234, 91, 12, 0.1);
    box-shadow: 0 8px 30px -8px rgba(234, 91, 12, 0.25);
}

.btn:hover svg {
    opacity: 1;
}

.btn-instagram:hover {
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
    box-shadow: 0 8px 30px -8px rgba(225, 48, 108, 0.25);
}

.btn-whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 8px 30px -8px rgba(37, 211, 102, 0.25);
}

/* ── Footer ── */
.footer {
    padding: 16px 24px;
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

/* ── Animations ── */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Mobile ── */
@media (max-width: 480px) {
    .layout {
        gap: 24px;
        padding: 20px 16px;
    }

    .logo img {
        height: 36px;
    }

    .video-capsule {
        max-width: 100%;
        border-radius: 12px;
    }

    .actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .message h1 {
        font-size: 1.3rem;
    }
}

/* ── Larger screens ── */
@media (min-height: 800px) {
    .layout {
        gap: 40px;
    }
}
