<style>
/* Professional MMA Fighter Page Design */
:root {
    --cfs-red: #e41e1e;
    --cfs-dark: #0a0a0a;
    --cfs-gray: #1a1a1a;
    --cfs-light-gray: #2a2a2a;
    --cfs-white: #ffffff;
    --cfs-gold: #d4af37;
}

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

body.single-fighter {
    background: var(--cfs-dark);
    color: var(--cfs-white);
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    overflow-x: hidden;
}

/* Hero Section - Full Screen Impact */
.fighter-hero-section {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    background: rgba(10,10,10,0.95);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(1.2);
    opacity: 0.3;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fighter-intro {
    animation: slideInLeft 0.8s ease-out;
    text-align: center;
    width: 100%;
}

.fighter-label {
    color: var(--cfs-red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.fighter-name {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.fighter-nickname {
    font-size: clamp(24px, 4vw, 48px);
    color: var(--cfs-red);
    font-style: italic;
    margin-bottom: 20px;
}

.fighter-record-hero {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.record-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.record-number {
    font-size: 48px;
    color: var(--cfs-red);
}

.record-label {
    font-size: 18px;
    color: #999;
    text-transform: uppercase;
}

.fighter-portrait-container {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.fighter-portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

/* Stats Grid Section */
.stats-section {
    background: var(--cfs-gray);
    padding: 80px 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--cfs-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--cfs-light-gray);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    border-color: #666;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102,102,102,0.3);
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--cfs-white);
}

/* Fight Statistics */
.fight-stats {
    background: var(--cfs-dark);
    padding: 80px 0;
}

.fight-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.breakdown-side {
    text-align: center;
}

.breakdown-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.wins .breakdown-title { color: var(--cfs-red); }
.losses .breakdown-title { color: #666; }

.breakdown-total {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.breakdown-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    background: var(--cfs-light-gray);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakdown-method {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.breakdown-count {
    font-size: 24px;
    font-weight: 700;
    color: var(--cfs-red);
}

.breakdown-bar {
    width: 100%;
    height: 8px;
    background: var(--cfs-gray);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: var(--cfs-red);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 968px) {
.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    
    .fighter-portrait-container {
        order: -1;
        margin-bottom: 40px;
    }
    
    .fight-breakdown {
        grid-template-columns: 1fr;
    }
}
</style>
