:root {
    --bg-dark: #0a100d;
    --bg-darker: #050806;
    --accent-gold: #f4d03f;
    --accent-gold-dark: #d4ac0d;
    --neon-cyan: #00f0ff;
    --text-white: #ffffff;
    --text-gray: #b3b6b7;
    --danger: #ff4757;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(244, 208, 63, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(244, 208, 63, 0.05) 0%, transparent 40%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; }

/* Header */
header {
    background: rgba(5, 8, 6, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
}

.logo i { color: var(--accent-gold); }
.logo span { color: var(--neon-cyan); }

/* Boss Hero Section */
.boss-hero {
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.boss-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.boss-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    padding: 5px;
    background: linear-gradient(135deg, var(--accent-gold), var(--bg-darker));
    animation: glowBorder 4s infinite alternate;
}

.boss-img {
    width: 100%;
    border-radius: 15px;
    display: block;
    filter: contrast(1.1) drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

.boss-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(255, 71, 87, 0.1);
    color: var(--danger);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 71, 87, 0.3);
    letter-spacing: 1px;
}

.boss-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.boss-content h1 span {
    color: var(--danger);
}

.boss-speech {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 400;
}

.hard-truth {
    background: rgba(255, 71, 87, 0.05);
    border-left: 4px solid var(--danger);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-radius: 0 12px 12px 0;
}

.hard-truth i {
    color: var(--danger);
    font-size: 1.5rem;
    margin-top: 3px;
}

.hard-truth p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.boss-content h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.boss-content h2 span {
    color: var(--accent-gold);
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-list i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, var(--accent-gold-dark), var(--accent-gold));
    color: var(--bg-darker);
    padding: 22px 40px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.cta-button i { font-size: 1.8rem; }

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.5);
    background: linear-gradient(45deg, var(--accent-gold), #fff0b3);
}

/* Philosophy */
.philosophy {
    padding: 80px 0;
}

.philosophy-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.philosophy-box h2 {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.quote-box {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-box i {
    color: rgba(244, 208, 63, 0.2);
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 20px;
}

.quote-box p {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-white);
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes glowBorder {
    0% { box-shadow: 0 0 20px rgba(244, 208, 63, 0.2); }
    100% { box-shadow: 0 0 40px rgba(244, 208, 63, 0.5); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 208, 63, 0.5); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(244, 208, 63, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 208, 63, 0); }
}

.pulse { animation: pulse 2s infinite; }

/* Responsive */
@media (max-width: 992px) {
    .boss-hero { padding: 120px 0 60px; min-height: auto; }
    .boss-inner { flex-direction: column; text-align: center; gap: 40px; }
    .boss-content h1 { font-size: 1.8rem; }
    .boss-speech { font-size: 1rem; }
    .boss-content h2 { font-size: 1.5rem; }
    .hard-truth { flex-direction: column; align-items: center; text-align: center; border-left: none; border-top: 4px solid var(--danger); border-radius: 0 0 12px 12px; }
    .hard-truth p { font-size: 0.95rem; }
    .features-list li { justify-content: center; text-align: left; font-size: 0.95rem; }
    .cta-button { font-size: 1rem; padding: 20px; }
    .philosophy-box { padding: 40px 20px; }
    .philosophy-box h2 { font-size: 1.6rem; margin-bottom: 20px; }
    .quote-box { padding: 30px 20px; }
    .quote-box p { font-size: 1rem; }
}
