* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Links */
a {
    color: #e01b1b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff2e2e;
}

/* Text utilities */
.text-muted {
    color: #888;
}

.text-small {
    font-size: 12px;
}

/* Hero Section */
.fighter-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}

.fighter-image {
    width: 100%;
}

.fighter-image img {
    width: 100%;
    height: auto;
    display: block;
    background: #1a1a1a;
}

/* Fighter Stats */
.fighter-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nickname {
    font-size: 18px;
    color: #888;
    font-weight: 500;
}

.record-section {
    border-top: 2px solid #333;
    padding-top: 30px;
}

.record-stat {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.record-number {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.record-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border: 1px solid #333;
    padding: 30px;
    background: #111;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nationality */
.nationality {
    font-size: 14px;
    color: #aaa;
}

.nationality strong {
    color: #fff;
}

/* Bio Section */
.fighter-bio {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #333;
}

.fighter-bio h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fighter-bio p {
    font-size: 16px;
    color: #ccc;
    max-width: 800px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .fighter-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fighter-header h1 {
        font-size: 36px;
    }

    .record-number {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center center;
    color: #fff;
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
}
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero-title { font-size: 42px; margin: 0 0 10px; font-weight: 900; }
.page-hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
    .page-hero { padding: 40px 0; }
    .page-hero-title { font-size: 28px; }
}
