@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --bg: #1C1C1C;
    --card-bg: #2A2A2A;
    --primary: #C0C0C0;
    --accent: #87CEEB;
    --gold: #D4A574;
    --white: #FFFFFF;
    --gray: #A0A0A0;
    --border: #3A3A3A;
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ========== Decorative Line ========== */
.deco-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
}

/* ========== Nav ========== */
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang-switch { display: flex; gap: 2px; }

.lang-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--gray);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.lang-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.lang-btn:hover:not(.active) { color: var(--white); border-color: var(--gold); }

.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 32px;
    background: rgba(28, 28, 28, 0.97);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
}

.nav-links { display: flex; gap: 24px; align-items: center; }

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    padding: 4px 0;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .lang-switch { margin-left: auto; padding-left: 12px; border-left: 1px solid var(--border); }

.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: 1px solid var(--gold); cursor: pointer; padding: 6px; }
.hamburger span { width: 20px; height: 1px; background: var(--white); display: block; }

/* ========== Hero ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(135, 206, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--accent), var(--gold), transparent);
    opacity: 0.4;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-logo {
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 7vw, 56px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: 2px;
}

.hero h1 .highlight { color: var(--gold); }

.hero .tagline {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero .subtitle {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 32px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 1px solid;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn-donate {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-donate:hover {
    background: var(--gold);
    color: var(--bg);
}

/* ========== Sections ========== */
.section { padding: 80px 20px; }

.container { max-width: 1000px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 48px; }

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

.section-title p { color: var(--gray); font-size: 13px; }

.twitch-section { background: var(--card-bg); }

.twitch-embed {
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
    position: relative;
}

.twitch-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.twitch-status { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; }
.status-dot { width: 10px; height: 10px; background: #555; }
.status-dot.live { background: var(--gold); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.status-text { font-size: 12px; font-weight: 600; text-transform: uppercase; }
.status-text.live { color: var(--gold); }
.status-text.offline { color: var(--gray); }

/* ========== Schedule ========== */
.schedule-grid { max-width: 650px; margin: 0 auto; }

.schedule-day {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 18px 22px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.schedule-day:hover { border-color: var(--gold); }
.schedule-day .day { font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--gold); }
.schedule-day .time { color: var(--accent); font-weight: 600; }
.schedule-day .game { color: var(--gray); font-size: 12px; }
.schedule-day .status-badge { padding: 3px 10px; font-size: 11px; border: 1px solid; }
.status-badge.active { background: rgba(212, 165, 116, 0.1); color: var(--gold); border-color: var(--gold); }
.status-badge.upcoming { background: rgba(135, 206, 235, 0.1); color: var(--accent); border-color: var(--accent); }

/* ========== About ========== */
.about-section { background: var(--card-bg); }
.about-content { max-width: 650px; margin: 0 auto; text-align: center; }
.about-content p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.about-content strong { color: var(--gold); }

/* ========== Social Links ========== */
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

.social-link svg { width: 18px; height: 18px; }

/* ========== Footer ========== */
footer { text-align: center; padding: 40px 20px; border-top: 1px solid var(--border); color: var(--gray); font-size: 12px; }
footer a { color: var(--gray); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ========== Animations ========== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== Mobile ========== */
@media (max-width: 768px) {
    .top-nav { padding: 12px 16px; }
    .nav-links { display: none; position: fixed; top: 56px; left: 0; width: 100%; background: rgba(28,28,28,0.98); flex-direction: column; padding: 20px; gap: 14px; border-bottom: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .nav-links .lang-switch { margin-left: 0; padding-left: 0; border-left: none; padding-top: 12px; border-top: 1px solid var(--border); }
    .hero { padding: 100px 16px 40px; }
    .hero-logo { width: 80px; height: 80px; }
    .section { padding: 50px 16px; }
    .schedule-day { flex-direction: column; align-items: flex-start; gap: 8px; }
}
