@font-face {
    font-family: 'Black Ops';
    src: url('fonts/Black Ops 2 Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hitmarker';
    src: url('fonts/HitmarkerText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Títulos con Black Ops - Tamaños optimizados */
.content-section h2,
.info-section h3,
.easter-egg h4,
.fan-art-title,
.weapon-card h4 {
    font-family: 'Black Ops', sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
}

/* Párrafos y texto con Hitmarker - Tamaños optimizados */
body, p, span, a, li, div,
.info-section p,
.info-section li,
.easter-egg p,
.easter-egg li,
.fan-art-author,
.weapon-card p,
.submenu a {
    font-family: 'Hitmarker', sans-serif;
}

/* Tamaños específicos para cada elemento */
.content-section h2 {
    font-size: 2rem; /* 32px */
    color: #ff0000;
    margin-bottom: 1.25rem; /* 20px */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    border-bottom: 1px solid #444;
    padding-bottom: 0.625rem; /* 10px */
}

.info-section h3 {
    font-size: 1.5rem; /* 24px */
    color: #ff0000;
    margin-bottom: 0.9375rem; /* 15px */
}

.easter-egg h4 {
    font-size: 1rem; /* 20px */
    color: #ffcc00;
    margin-bottom: 0.625rem; /* 10px */
    text-align: center;
}

.fan-art-title {
    font-size: 0.85rem; /* 18px */
    color: #ffcc00;
    margin-bottom: 0.5rem; /* 8px */
    gap: 10px
    ;
}

.weapon-card h4 {
    font-size: 0.5rem; /* 18px */
    color: #ffcc00;
    margin-bottom: 0.3125rem; /* 5px */
}

/* Texto con Hitmarker - Tamaños optimizados */
.content-section p {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    margin-bottom: 0.9375rem; /* 15px */
    color: #b0b0b0;
}

.info-section p {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    margin-bottom: 0.9375rem; /* 15px */
    color: #b0b0b0;
}

.info-section li {
    font-size: 0.95rem; /* 15.2px */
    margin-bottom: 0.5rem; /* 8px */
    color: #b0b0b0;
}

.easter-egg p {
    font-size: 1rem; /* 16px */
    margin-bottom: 0.9375rem; /* 15px */
    color: #b0b0b0;
}

.easter-egg li {
    font-size: 0.95rem; /* 15.2px */
    margin-bottom: 0.5rem; /* 8px */
    color: #b0b0b0;
}

.fan-art-author {
    font-size: 0.875rem; /* 14px */
    color: #b0b0b0;
}

.weapon-card p {
    font-size: 0.875rem; /* 14px */
    color: #b0b0b0;
}

.submenu a {
    font-size: 1rem; /* 16px */
}

/* Resto del CSS existente (sin cambios en la estructura) */
body {
    background-color: #0a0a0a;
    color: #d4d4d4;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(20, 20, 20, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(10, 10, 10, 0.8) 0%, transparent 20%);
}

.container {
    display: flex;
    min-height: 100vh;
}

.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 110;
    transition: all 0.3s ease;
}

.logo {
    height: 60px;
    width: auto;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(200, 0, 0, 0.7));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.9));
}

.header.contraido ~ .logo-container {
    top: 10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    transition: all 0.5s ease;
    z-index: 100;
    overflow: hidden;
}

.header.contraido {
    height: 80px;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.5) contrast(1.2) sepia(0.3);
}

.header.contraido .header-img {
    opacity: 0;
    visibility: hidden;
}

.header-text {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 102;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    padding: 0 20px;
    transition: all 0.5s ease;
}

.header.contraido .header-text {
    opacity: 0;
    visibility: hidden;
}

.header-title {
    font-family: 'Black Ops', sans-serif;
    font-size: 3rem; /* 48px */
    font-weight: bold;
    margin-bottom: 1.25rem; /* 20px */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.header-subtitle {
    font-family: 'Hitmarker', sans-serif;
    font-size: 1.25rem; /* 20px */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.up-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff0000;
    font-size: 2.5rem; /* 40px */
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #8b0000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header.contraido .up-icon {
    opacity: 1;
    visibility: visible;
}

.up-icon:hover {
    background: rgba(139, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 40px;
}

.header.contraido .nav {
    height: 80px;
    background: linear-gradient(to right, #0a0a0a, #1a1a1a, #2a2a2a);
    border-bottom: 2px solid #8b0000;
}

.social-links {
    display: none;
    gap: 25px;
}

.header.contraido .social-links {
    display: flex;
}

.social-link {
    color: #d4d4d4;
    font-size: 1.75rem; /* 28px */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #ff0000;
    transform: scale(1.2);
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff0000;
    font-size: 1.25rem; /* 20px */
    z-index: 105;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    cursor: pointer;
    transition: opacity 0.5s;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #8b0000;
}

.header.contraido ~ .scroll-indicator {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.sidebar {
    width: 100px;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a, #2a2a2a);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100vh;
    transition: padding-top 0.5s ease;
    z-index: 90;
    border-right: 1px solid #333;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.5);
}

.header.contraido ~ .sidebar {
    padding-top: 100px;
}

.sphere {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px 0;
    background: radial-gradient(circle at 30% 30%, #2a2a2a, #0a0a0a);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 
                inset 0 0 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #444;
}

.sphere:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7), 
                0 0 15px rgba(139, 0, 0, 0.5),
                inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.sphere img {
    width: 100%;
    width: max-content;
    height: 100%;
    object-fit: contain;
    border-radius: 100%;
    filter: brightness(0.8) contrast(1.2) grayscale(0.3);
}

.submenu {
    position: fixed;
    left: 100px;
    top: 0;
    width: 250px;
    height: 100vh;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a, #2a2a2a);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 80;
    padding-top: 100vh;
    overflow-y: auto;
    border-right: 1px solid #333;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.5);
}

.header.contraido ~ .submenu {
    padding-top: 100px;
}

.submenu.active {
    transform: translateX(0);
}

.submenu ul {
    list-style: none;
    padding: 20px;
}

.submenu li {
    margin-bottom: 15px;
}

.submenu a {
    color: #d4d4d4;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    background-color: rgba(255, 255, 255, 0.05);
}

.submenu a:hover {
    background-color: rgba(139, 0, 0, 0.3);
    border-left: 3px solid #ff0000;
    transform: translateX(5px);
}

.main-content {
    margin-left: 100px;
    padding: 100vh 20px 20px;
    flex: 1;
    transition: padding-top 0.5s ease;
    position: relative;
    z-index: 10;
}

.header.contraido ~ .main-content {
    padding-top: 100px;
}

.content-section {
    background: linear-gradient(to bottom right, #0a0a0a, #1a1a1a);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
    display: none;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #8b0000, #ff0000, #8b0000);
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.map-image {
    flex: 1;
    min-width: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    filter: brightness(0.8) contrast(1.1);
}

.map-image:hover img {
    transform: scale(1.05);
}

.map-details {
    flex: 2;
    min-width: 300px;
}

.map-details h3 {
    color: #d4d4d4;
    border-left: 3px solid #ff0000;
    padding-left: 10px;
}

.map-details p {
    line-height: 1.6;
    color: #b0b0b0;
}

.info-section {
    margin-bottom: 30px;
    background-color: rgba(20, 20, 20, 0.5);
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #ff0000;
}

.info-section h3 {
    display: flex;
    align-items: center;
}

.info-section h3::before {
    content: '•';
    margin-right: 10px;
    font-size: 24px;
}

.info-section ul {
    list-style-type: none;
    padding-left: 0;
}

.info-section li {
    padding-left: 20px;
    position: relative;
}

.info-section li::before {
    content: '›';
    color: #ff0000;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.weapon-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.weapon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    border-color: #8b0000;
}

.weapon-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: brightness(0.9) contrast(1.1);
}

.easter-egg {
    background: rgba(139, 0, 0, 0.2);
    padding: 20px;
    border-radius: 5px;
    border: 1px dashed #ff0000;
}

.easter-egg ol {
    padding-left: 20px;
}

.main-title {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 95;
    color: #d4d4d4;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    font-size: 3rem; /* 48px */
    font-weight: bold;
    letter-spacing: 3px;
    transition: opacity 0.5s;
    pointer-events: none;
    font-family: 'Black Ops', sans-serif;
}

.header.contraido ~ .main-title {
    opacity: 0;
}

.fan-arts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.fan-art-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.fan-art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    border-color: #8b0000;
}

.fan-art-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fan-art-info {
    padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 70px;
    }
    
    .sphere {
        width: 50px;
        height: 50px;
    }
    
    .main-content {
        margin-left: 70px;
    }
    
    .submenu {
        left: 70px;
        width: 200px;
    }

    .main-title {
        font-size: 2.25rem; /* 36px */
    }

    .logo {
        height: 45px;
    }

    .logo-container {
        top: 15px;
        left: 15px;
    }

    .weapons-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .nav {
        padding: 0 20px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        font-size: 1.5rem; /* 24px */
    }

    .header-title {
        font-size: 2.25rem; /* 36px */
    }

    .header-subtitle {
        font-size: 1.125rem; /* 18px */
    }

    .up-icon {
        font-size: 2rem; /* 32px */
        width: 50px;
        height: 50px;
    }

    .fan-arts-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}