/* ═══════════════════════════════════════════════
   EUROPA ROLEPLAY — Global Stylesheet
   Theme: Dark with warm orange accents
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

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

:root {
    --orange:       #f07020;
    --orange-light: #f59040;
    --orange-dim:   rgba(240,112,32,.16);
    --orange-glow:  rgba(240,112,32,.38);
    --orange-soft:  rgba(240,112,32,.08);
    --gold:         #f5c842;
    --gold-dim:     rgba(245,200,66,.14);
    --cyan:         #38bdf8;
    --green:        #34d399;
    --bg:           #080a0f;
    --bg2:          #0d0f17;
    --surface:      rgba(255,255,255,.04);
    --border:       rgba(255,255,255,.07);
    --border-warm:  rgba(240,112,32,.18);
    --muted:        rgba(255,255,255,.48);
    --text:         #eef1f8;
    --radius:       14px;
    --shadow:       0 12px 40px rgba(0,0,0,.55);
    --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0b0d14; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(8,10,15,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(240,112,32,.14);
}

.nav-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    transition: color .18s, background .18s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: var(--orange-dim);
}

.nav-links .spin-link {
    color: var(--orange-light);
    animation: spin-pulse 2.5s ease-in-out infinite;
}

@keyframes spin-pulse {
    0%,100% { color: var(--orange-light); }
    50% { color: var(--gold); }
}

.nav-links .btn-donate {
    background: linear-gradient(90deg, #c45010, var(--orange));
    color: #fff !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 9px;
    box-shadow: 0 4px 16px rgba(240,112,32,.3);
    transition: filter .2s, transform .15s !important;
}

.nav-links .btn-donate:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    background: linear-gradient(90deg, #c45010, var(--orange)) !important;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    margin-left: auto;
    transition: background .2s, border-color .2s;
}

.hamburger:hover { background: var(--orange-dim); border-color: var(--orange-glow); }

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s, background .2s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav { pointer-events: none; }

.mobile-nav.open { pointer-events: all; }

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 950;
    opacity: 0;
    transition: opacity .3s;
}

.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }

.mobile-nav-panel {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: #0c0e17;
    border-left: 1px solid var(--border-warm);
    z-index: 960;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}

.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-logo { height: 36px; }

.mobile-nav-close {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 16px;
    width: 32px; height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.mobile-nav-close:hover { background: var(--orange-dim); color: var(--text); }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
    gap: 4px;
}

.mobile-nav-links a {
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color .15s, background .15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--text); background: var(--orange-dim); }

.mobile-nav-links .btn-donate {
    background: linear-gradient(90deg, #c45010, var(--orange));
    color: #fff !important;
    margin-top: 8px;
    text-align: center;
}

/* ── HERO ── */
/* HERO */
.hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(rgba(0,0,10,.70), rgba(0,0,12,.55)),
            url("../assets/Eu.png") center/cover no-repeat;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(transparent, rgba(2,3,10,.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
}

.hero-content.hero-left {
    text-align: left !important;
    padding-top: 70px;
    padding-left: 0;
}

.kicker {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-dim);
    border: 1px solid var(--orange-glow);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 40%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 16px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.65;
}

/* ── SECTION ── */
.section { padding: 60px 0 80px; }

/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.card {
    background: linear-gradient(160deg, rgba(16,18,28,.95), rgba(10,11,18,.98));
    border: 1px solid var(--border-warm);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,112,32,.45);
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.card .thumb {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.card:hover .thumb img { transform: scale(1.05); }

.card .body {
    padding: 20px 22px 22px;
}

.card .body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    color: var(--text);
}

.card .body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* CTA BUTTONS */
.cta {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: filter .2s, transform .15s;
}

.cta:hover { filter: brightness(1.12); transform: translateY(-1px); }

.cta.blue    { background: linear-gradient(90deg,#1a4db5,#3a7ff0); color:#fff; box-shadow:0 6px 20px rgba(58,127,240,.28); }
.cta.red     { background: linear-gradient(90deg,#b30000,#e02020); color:#fff; box-shadow:0 6px 20px rgba(211,20,20,.28); }
.cta.gold    { background: linear-gradient(90deg,#b36a00,#f5c842); color:#000; font-weight:800; box-shadow:0 6px 20px rgba(245,200,66,.28); }
.cta.orange  { background: linear-gradient(90deg,#c45010,var(--orange)); color:#fff; box-shadow:0 6px 20px rgba(240,112,32,.32); }

/* ── MEDIA WRAP ── */
.media-wrap {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid var(--border);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.side-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}

.pill {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 16px 14px;
    font-weight: 900;
    background: linear-gradient(90deg, #ff3b6b, #ffb16a);
    color: #1a0b10;
    box-shadow: 0 18px 40px rgba(255,86,126,.18);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .2s ease, filter .2s ease;
    font-size: 13px;
    text-align: center;
}

.pill:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}
.pill { background: linear-gradient(90deg, #ff3b6b, #ffb16a); } /* padrão laranja/rosa */
.pill.alt { background: linear-gradient(90deg, #ff3b6b, #ff3bb8); } /* rosa */
.pill.cyan { background: linear-gradient(90deg, #00c2ff, #00ffa8); color: #00130e; } /* azul/verde */
.pill.purple { background: linear-gradient(90deg, #8b5cf6, #ff4fd8); color: #160017; } /* roxo */

.pill:hover { transform: translateY(-2px); filter: brightness(1.1); }

.pill        { background: var(--orange-dim); border-color: var(--orange-glow); color: var(--orange-light); }
.pill.alt    { background: rgba(88,101,242,.12); border-color: rgba(88,101,242,.3); color: #818cf8; }
.pill.cyan   { background: rgba(56,189,248,.1); border-color: rgba(56,189,248,.25); color: var(--cyan); }
.pill.green  { background: rgba(52,211,153,.1); border-color: rgba(52,211,153,.25); color: var(--green); }
.pill.purple { background: rgba(167,139,250,.1); border-color: rgba(167,139,250,.25); color: #c4b5fd; }

/* ── FOOTER ── */
.footer {
    background: #060810;
    border-top: 1px solid var(--border-warm);
    padding: 52px 0 28px;
}

.footer-top {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col.brand { margin-right: auto; }

.footer-brand { height: 90px; }

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--muted);
    transition: color .15s;
}

.footer-col a:hover { color: var(--text); }

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright, .dev {
    font-size: 12.5px;
    color: var(--muted);
}

.dev a { color: var(--orange); margin-left: 4px; }
.dev a:hover { color: var(--orange-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .media-wrap { grid-template-columns: 1fr; }
    .side-actions { flex-direction: row; flex-wrap: wrap; }
    .side-actions .pill { flex: 1; min-width: 140px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-top { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 640px) {
    .cards-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(44px, 14vw, 72px); }
    .hero p { font-size: 14px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}