/* --- Variables & Theme --- */
:root {
    --elite-gold: #FF4500;
    --dark-gold: #FF8C00;
    --obsidian: #0a0a0a;
    --glass-bg: rgba(0, 0, 0, 0.9);
}

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

/* --- Fixed Navigation --- */
.elite-nav {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.15);
    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.3);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.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 Layout & Typography --- */
.content-wrapper {
    padding-top: 160px;
}

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

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

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

/* Badge Component */
.tool-header-badge {
    border: 1px solid #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    padding: 8px 24px;
    display: inline-block;
    color: #3b82f6;
    font-family: 'Orbitron';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-header-badge:hover {
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* Board Previews */
.board-container {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.board-container:hover {
    border-color: var(--elite-gold);
    transform: translateY(-5px);
}

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

.elite-download-btn {
    background: linear-gradient(135deg, var(--elite-gold) 0%, var(--dark-gold) 100%);
    color: #000;
    font-family: 'Orbitron';
    font-weight: 900;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.elite-download-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
}

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

@media (max-width: 768px) {
    .strategy-title { font-size: 2.5rem !important; }
}