:root {
    --bg: #0e0b10;
    --bg-raised: #17131b;
    --line: #2a2430;
    --text: #ece6e2;
    --text-dim: #9a8fa0;
    --accent: #c9a24b;
}

*{ box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.5;
}

#age-gate {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 24px;
}

.gate-box {
    max-width: 420px;
    text-align: center;
    border: 1px solid var(--line);
    padding: 48px 32px;
    background: var(--bg-raised);
}

.gate-box p.warn {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--text-dim);
    margin: 0 0 20px;
}

.gate-box h1 {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 16px;
}

.gate-box p.desc {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--text-dim);
    margin: 0 0 32px;
}

.gate-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    font-family: Arial, sans-serif;
}


.gate-buttons button {
    flex: 1;
    padding: 14px 0;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease;
}

#btn-yes {
    background: var(--accent);
    color: #1a1410;
    font-weight: bold;
}

#btn-yes:hover{ opacity: 0.9; }
#btn-no:hover{ background: rgba(255,255,255,0.05); }

.site-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    font-family: Arial, sans-serif;
    margin: 0 -24px;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translatex(-50%);
    background: var(--bg-raised);
    border: 1px solid var(--line);
    min-width: 160px;
    padding: 8px 0;
    z-index: 10;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}


.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(201, 162, 75, 0.05);
}

#site {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 96px;
}

header.site-header {
    text-align: center;
    margin-bottom: 56px;
}

header.site-header h1 {
    font-size: 34px;
    font-weight: 400;
    margin: 0 0 8px;
    letter-spacing: 0.01em;
}

header.site-header p {
    font-family: Arial, sans-serif;
    color: var(--text-dim);
    font-size: 14px;
    margin: 0;
}

main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px 16px;
}

.video-block {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-caption {
    font-family: Arial, sans-serif;
    margin-top: 10px;
}

.video-caption .title {
    color: var(--text);
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.video-caption .meta {
    color: var(--text-dim);
    font-size: 12px;
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.see-more-btn {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--line);
    padding: 8px 16px;
    transition: border-color 0.15s ease;
}

.see-more-btn:hover {
    border-color: var(--accent);
}

#category-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.category-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
}

.pill-title {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.pill-sub {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

.pill-colombia { background: #3b4d7a; }
.pill-venezuela { background: #3d6b52; }
.pill-mexico { background: #8a5a3a; }
.pill-peru { background: #7a3d3d; }
.pill-brazil { background: #8a7a3a; }
.pill-argentina { background: #3d6b7a; }
.pill-ecuador { background: #6b3d5a; }
.pill-latam { background: #5a3d7a; }

footer {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: var(--text-dim);
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}


.legal {
    max-width: 720px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: var(--text-dim);
}

.legal h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--text);
    margin: 32px 0 8px;
}

.legal p { margin: 0; }

.legal a { color: var(--accent); }

.video-page {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.video-player-frame {
    width: 100%;
    background: #000;
    border: 1px solid var(--line);
}

.video-player-frame video {
    width: 100%;
    height: auto;
    display: block;
}

.video-page-title {
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0 0;
}
