/* --- ELITE OBSIDIAN VARIABLES --- */
:root {
    --elite-gold: #FF4500;
    --dark-gold: #FF8C00;
    --obsidian: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.03);
}

/* --- BASE STYLES --- */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    -webkit-user-select: none;
    user-select: none;
}

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

.nav-logo { height: 70px; object-fit: contain; }

.elite-logo {
    font-family: 'Orbitron';
    font-weight: 900;
    background: linear-gradient(135deg, var(--elite-gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-link:hover { color: var(--elite-gold); }

/* --- CONTENT WRAPPER --- */
.content-wrapper { padding-top: 150px; }

.strategy-title {
    font-family: 'Orbitron';
    font-weight: 900;
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(to right, #ffffff 30%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.description-block {
    font-size: 1.15rem;
    color: var(--dark-gold);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.highlight { color: #fff; font-weight: 700; }

/* --- STEP CARDS --- */
.steps-grid { display: grid; gap: 1rem; }

.step-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-num {
    font-family: 'Orbitron';
    color: var(--elite-gold);
    font-size: 1.2rem;
    font-weight: 900;
}

/* --- RISK ALERT --- */
.risk-alert {
    margin-top: 3rem;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 69, 0, 0.3);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-radius: 8px;
}

.risk-alert i { color: var(--elite-gold); font-size: 1.5rem; }

/* --- BOARD CONTAINERS --- */
.board-container {
    background: var(--obsidian);
    border: 1px solid rgba(255, 69, 0, 0.2);
    padding: 2rem;
    border-radius: 16px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.board-container:hover {
    transform: translateY(-8px);
    border-color: var(--dark-gold);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.15);
}

.container-label {
    font-family: 'Orbitron';
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

/* --- TABLES --- */
.elite-table { width: 100%; text-align: left; }

.elite-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.elite-table td {
    padding: 1rem 0;
    font-family: 'Orbitron';
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.gold-text { color: var(--elite-gold); }

.layout-img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(1) brightness(0.8);
    transition: 0.5s;
}

.layout-img:hover { filter: grayscale(0) brightness(1); }