/* --- Variables & Core --- */
:root {
    --elite-gold: #FF4500;   /* Vibrant Orange */
    --dark-gold: #FF8C00;    /* Deep Gold */
    --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.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.04) 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.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 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: -3px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

.strategy-description {
    line-height: 1.8;
}

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

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

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

/* Visual Containers */
.visual-container {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-container:hover {
    border-color: var(--elite-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255, 69, 0, 0.1);
    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-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

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

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