/* --- Variables & Core --- */
:root {
    --elite-gold: #FF4500;   /* Chaos Orange */
    --dark-gold: #FF8C00;    /* Chaos Gold */
    --chaos-blue: #3b82f6;
    --obsidian: #0a0a0a;
    --glass-bg: rgba(0, 0, 0, 0.9);
}

body {
    background-color: #000;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 69, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.03) 0%, transparent 40%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
}

/* --- Navigation --- */
.elite-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    background: var(--glass-bg);
}

.elite-logo {
    background: linear-gradient(135deg, var(--elite-gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron';
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--elite-gold), var(--dark-gold));
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

/* --- UI Components --- */
.content-wrapper {
    padding-top: 160px;
}

.strategy-title {
    font-family: 'Orbitron';
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(to right, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.strategy-accent-title {
    font-family: 'Orbitron';
    color: var(--dark-gold);
    font-weight: 700;
}

/* Option Cards */
.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.option-card:hover {
    border-color: var(--elite-gold);
    background: rgba(255, 69, 0, 0.05);
    transform: translateY(-5px);
}

.unit-pill {
    background: rgba(255, 69, 0, 0.15);
    color: var(--elite-gold);
    padding: 2px 12px;
    border-radius: 4px;
    font-family: 'Orbitron';
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

/* Board/Image Styling */
.board-container {
    padding: 15px;
    background: #050505;
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 20px;
    transition: all 0.5s ease;
}

.board-container:hover {
    border-color: var(--elite-gold);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.15);
    transform: scale(1.02);
}

/* Progression Boxes */
.prog-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.note-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-left: 4px solid var(--chaos-blue);
}

/* Buttons */
.elite-button {
    background: linear-gradient(135deg, var(--elite-gold) 0%, var(--dark-gold) 100%);
    color: #000;
    font-family: 'Orbitron';
    transition: all 0.3s ease;
}

.elite-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper { padding-top: 120px; }
    .strategy-title { font-size: 3rem !important; }
}