* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to bottom, #1a0f0a, #4a1e1b, #e08803);
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 5px 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    font-size: 1.5rem;
    transition: 0.3s;
}

nav a:hover {
    color: #e08803;
    text-shadow: 0 0 8px #e08803;
}

nav a.active {
    color: #e08803;
}

header {
    padding: 15px 5px;
    text-align: center;
    background-color: #121212;
    border-bottom: 2px solid #e08803;
    padding: 15px 20px;
    box-shadow: 0px 4px 15px rgba(255, 170, 0, 0.3);
}

.container {
    width: 95%;
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(15, 10, 8, 0.85);
    border: 1px solid #ffaa00;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);

}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ffaa00;
    padding-bottom: 10px;
}

.highlight {
    color: #ffaa00;

}

.content-showcase {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
    text-align: center;
}

.content-image-box {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;

}

.content-image-box img {
    width: 70%;
    height: auto;
    max-height: 400px;
    border: 2px solid #ffaa00;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.2);
}

.content-info {
    flex: 1;
}

.character-info h3 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.char-stats p {
    margin: 5px 0;
    color: #d4a373;
}

.char-lore {
    margin-top: 20px;
    line-height: 1.6;
    color: #ccc;
}

.char-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;

    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #444;
}

.char-stats p {
    margin: 0;
    color: #d4a373;
    display: flex;
    justify-content: space-between;
}

.char-stats span {
    color: #ffaa00;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

.char-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 120px;
    height: 50px;
    padding: 10px 20px;
    margin: 5px;
    background-color: #000000;
    color: #eee;
    border: 2px solid #555;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.char-btn:hover {
    background-color: #444;
    border-color: #777;
}

.char-btn:active {
    transform: translateY(1px);
}

.uniform-image {
    width: 300px;
    height: 250px;
    object-fit: contain;

    padding: 20px;
    background: rgba(0, 0, 0, 0.3);

    border: 2px solid #ffaa00;
    border-radius: 4px;
}

.hidden {
    display: none;
}

.content-section {
    animation: fadeIn 0.4s ease-in-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}