/* === VARIABLES & THEME === */
:root {
    --gold: #FFD700;
    --red: #E50914;
    --bg: #0a0a0a;       /* True Black */
    --surface: #161616;  /* Dark Grey Cards */
    --text: #ffffff;
    --text-dim: #aaaaaa;
    --glass: rgba(20, 20, 20, 0.8);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --nav-height: 60px;
}

/* === RESET & FONTS === */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Rudaw', 'NRT Reg', sans-serif; /* Kurdish Font */
    -webkit-tap-highlight-color: transparent;
}

html {
    direction: rtl; /* MASTER SWITCH FOR KURDISH */
    background-color: var(--bg);
    color: var(--text);
}

body {
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for Mobile Nav */
}

a { text-decoration: none; color: inherit; }
button { border: none; outline: none; cursor: pointer; }

/* === UTILITIES === */
.gold { color: var(--gold); }
.red { color: var(--red); }
.hidden { display: none !important; }

/* === NAVIGATION (PC HEADER) === */
.pc-header {
    display: none; /* Hidden on Mobile */
    position: fixed; top: 0; right: 0; left: 0;
    height: 70px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    border-bottom: var(--border);
}

.logo { font-size: 24px; font-weight: bold; letter-spacing: 1px; }

.pc-header .links a {
    margin: 0 20px;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.3s;
}
.pc-header .links a:hover { opacity: 1; color: var(--gold); }

/* === NAVIGATION (MOBILE BOTTOM BAR) === */
.bottom-nav {
    position: fixed; bottom: 0; right: 0; left: 0;
    height: 60px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: var(--border);
    display: flex; justify-content: space-around; align-items: center;
    z-index: 100;
}

.bottom-nav a {
    font-size: 24px;
    color: var(--text-dim);
    transition: 0.2s;
}

.bottom-nav a.active {
    color: var(--gold);
    transform: translateY(-2px);
}

/* === RESPONSIVE RULES === */
@media (max-width: 768px) {
    .pc-header { display: none !important; } /* Hide PC Header on Phone */
}
@media (min-width: 769px) {
    .bottom-nav { display: none !important; } /* Hide Bottom Nav on PC */
    body { padding-bottom: 0; padding-top: 80px; } /* Add top space for PC Header */
}