* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
header {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    width: 100%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 170, 0, 0.1);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    gap: 4rem;
}

.logo {
    height: 55px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1);
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-align: center;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.main-nav a:hover {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
    transform: translateY(-2px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffaa00, #ff6b00);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.main-nav a:hover::after {
    width: 80%;
}

/* ==================== MAIN ==================== */
main { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* ==================== GALLERY ==================== */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px; 
}

.gallery img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    margin: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ==================== CONTENT SECTION ==================== */
.content-section {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 50px;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    margin-top: 40px;
    border: 1px solid rgba(255, 170, 0, 0.2);
}

.character-image, .mode-image {
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
}

.character-image img,
.mode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.description-text {
    color: #ddd;
    line-height: 1.6;
    font-size: 15px;
}

.description-text h3 {
    color: #ffaa00;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.description-text p {
    margin-bottom: 15px;
}

/* ==================== ADDITIONAL CONTENT ==================== */
.additional-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #ffaa00;
    margin-bottom: 40px;
}

.additional-content h2 {
    color: #ffaa00;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.additional-content h3 {
    color: #ffaa00;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.additional-content p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.additional-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.additional-content li {
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.additional-content strong {
    color: #ffaa00;
}

.additional-content em {
    color: #ffc966;
    font-style: italic;
}

/* Footer */
.main-footer {
    margin-top: 120px;
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-top: 1px solid rgba(255, 170, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

footer {
    background-color: #111111;
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid #ff6b00;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: #ff4444;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 170, 0, 0.1);
}

.social-links a:hover {
    color: #ff4444;
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-3px);
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .content-section {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .character-image, .mode-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .main-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .gallery img {
        width: 200px;
        height: 280px;
    }
    
    .additional-content {
        padding: 25px;
    }
    
    .main-footer .footer-content {
       display: flex;
        flex-direction: row;
        gap: 25px;
        
    }
    
    main {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 150px;
        height: 210px;
    }
    
    .content-section {
        padding: 25px;
    }
}