/* Minimal global tokens + base layout (homepage / lightweight pages) */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532d3byL3.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #ff5f6d;
    --primary-gradient: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    --nav-bg-active: linear-gradient(90deg, rgba(255, 95, 109, 0.1), rgba(255, 195, 113, 0.05));
    --nav-border-active: #ff5f6d;
    --nav-glow: rgba(255, 95, 109, 0.3);
    --bg-body: #080808;
    --bg-card: #111111;
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --z-back: -1;
    --z-content: 10;
    --z-nav: 100;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
}

.global-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
    pointer-events: none;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: var(--z-content);
}

img {
    max-width: 100%;
    height: auto;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand {
    color: #fff;
    font-weight: 900;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-section {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.branding {
    text-align: left;
}

.footer-col-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 20px 0 25px;
    text-align: left;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #888;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.6;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.center-socials {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-gradient);
    color: #fff;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 95, 109, 0.3);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 12px;
}

.fb-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
}

.fb-right span {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.fb-right i {
    color: #003087;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(0, 48, 135, 0.3));
}

.discord-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

.discord-card:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateY(-3px);
}

.discord-card .dc-icon {
    font-size: 1.8rem;
    color: #5865f2;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.discord-card .dc-info {
    display: flex;
    flex-direction: column;
}

.discord-card .dc-label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    font-weight: 800;
}

.discord-card .dc-name {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
}

.discord-card .dc-status-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    box-shadow: 0 0 10px #2ecc71;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .center-socials { justify-content: center; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .branding { text-align: center; }
    .footer-text { text-align: center; }
    .center-socials { justify-content: center; }
}
