:root {
    --bg-color: #05070a;
    --surface-color: #11161f;
    --glass-bg: rgba(5, 7, 10, 0.85);
    --border-color: #222b3b;
    --primary-gradient: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --rate-green: #00e676;
    --rate-orange: #ffab00;
    --rate-red: #ff1744;
}

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

body {
    background-color: var(--bg-color);
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

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

/* HEADER & MENU */
header {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.menu-icon { font-size: 1.8rem; cursor: pointer; }

/* Fullscreen Menu */
.fullscreen-menu {
    height: 100%; width: 0;
    position: fixed; z-index: 2000;
    top: 0; right: 0;
    background-color: var(--bg-color);
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
}
.fullscreen-menu.active { width: 100%; }
.menu-content { text-align: center; margin-top: 50px; }
.menu-content a {
    padding: 15px; font-size: 2rem; display: block;
    color: var(--text-muted); transition: 0.3s;
}
.menu-content a:hover { color: #fff; transform: scale(1.1); }
.close-menu { position: absolute; top: 20px; right: 40px; font-size: 40px; cursor: pointer; }
