/* --- Core Reset --- */
body {
    background-color: #000;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    user-select: none;
}

/* --- THE ELITE HEADER TEXT --- */
.elite-strategy-header {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    position: relative;
    
    /* Forged Metal Gradient */
    background: linear-gradient(
        to bottom, 
        #ffffff 0%, 
        #f4f4f5 40%, 
        #71717a 45%, 
        #3f3f46 50%, 
        #71717a 55%, 
        #d4d4d8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* High-End Glow */
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.25));
}

/* Chrome Overlay Effect */
.elite-strategy-header::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 55%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.elite-logo {
    background: linear-gradient(to right, #FF4500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elite-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
}

.visual-frame {
    background: #0a0a0a;
    padding: 10px;
    border: 1px solid #1a1a1a;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}

.video-box-elite {
    background: #000;
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* --- Badge Effect --- */
.tool-badge-blue {
    border: 1px solid #007bff;
    padding: 8px 20px;
    color: #007bff;
    font-family: 'Orbitron';
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 900;
    transition: 0.3s;
    cursor: pointer;
}

.tool-badge-blue:hover {
    background: #007bff;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}