/* --- Core Reset & Variables --- */
:root {
    --elite-gold: #FF4500;   /* Vibrant Red-Orange */
    --dark-gold: #FF8C00;    /* Deep Orange */
    --obsidian: #0a0a0a;     /* Deep Black/Grey */
    --glass-bg: rgba(0, 0, 0, 0.9);
}

* {
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
}

/* --- Navigation Integration --- */
.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%; 
}

.nav-link:hover { 
    color: #fff; 
}

/* --- Dropdown Menu Styling --- */
.strat-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
    border-left: 2px solid transparent;
    text-decoration: none;
}

.strat-dropdown-item:hover {
    color: var(--elite-gold);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--elite-gold);
}

/* --- Content Wrapper & Typography --- */
.content-wrapper {
    padding-top: 160px; /* Offset for fixed header */
}

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

.strategy-description {
    color: var(--dark-gold);
    line-height: 1.8;
    font-size: 1.125rem;
}

.strategy-accent-title {
    font-family: 'Orbitron';
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

/* --- Visual Components --- */
.board-container {
    border: 1px solid rgba(255, 69, 0, 0.2);
    background: rgba(15, 15, 15, 1);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.board-container:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--elite-gold);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

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

.elite-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 69, 0, 0.5);
}

/* --- Mobile Components --- */
#mobileMenuButton {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 5, 0, 0.98);
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 69, 0, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-dropdown-menu.open {
    transform: translateX(0);
}

/* --- Utilities --- */
.bg-obsidian { background-color: var(--obsidian); }
.border-elite-gold { border-color: var(--elite-gold); }

/* Custom Scrollbar for strategy dropdown */
.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: var(--elite-gold);
    border-radius: 10px;
}

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