/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    margin-bottom: 15px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #34495e;
    color: #fff;
    padding: 20px 0;
}

header h1 a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #2c3e50;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #c0392b;
}

/* Section Preview */
.about-preview, .fight-record-preview, .achievements-preview {
    padding: 50px 0;
    background: #ecf0f1;
    text-align: center;
}

.about-preview h2, .fight-record-preview h2, .achievements-preview h2 {
    margin-bottom: 20px;
}

.about-preview p, .fight-record-preview p, .achievements-preview p {
    max-width: 800px;
    margin: 0 auto 20px;
}

.about-preview .btn, .fight-record-preview .btn, .achievements-preview .btn {
    background: #3498db;
}

.about-preview .btn:hover, .fight-record-preview .btn:hover, .achievements-preview .btn:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-media {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer .social-media li {
    margin: 0 10px;
}

footer .social-media li a {
    color: #fff;
    text-decoration: none;
}

footer .social-media li a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
}
