@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 1px, transparent 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 4px),
        radial-gradient(circle at 20% 80%, rgba(120, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 120, 0.15) 0%, transparent 50%);
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #8b0000;
    box-shadow: 
        0 4px 20px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.3rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    filter: brightness(0.9) contrast(1.2);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.logo h1 {
    font-size: 2.2rem;
    color: #8b0000;
    text-shadow: 
        3px 3px 0px #000,
        6px 6px 0px rgba(139, 0, 0, 0.5);
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    padding: 0.3rem;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    padding: 0.6rem 1.2rem;
    border: 2px solid #4a4a4a;
    border-radius: 6px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    padding: 0.8rem 1.5rem;
    border: 3px solid #4a4a4a;
    border-radius: 8px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-link.external {
    background: linear-gradient(45deg, #8b0000, #660000);
    color: #ffffff;
    border-color: #8b0000;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

/* Indicador de página activa en el menú */
.nav-link.active, .nav-link[aria-current="page"] {
    background: linear-gradient(45deg, #e0e0e0, #8b0000);
    color: #0a0a0a !important;
    border-color: #e0e0e0;
    box-shadow: 
        0 0 10px #8b0000cc,
        0 0 20px rgba(139, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 4rem 2rem;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    padding: 0 1rem;
}

.hero h2 {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #c0c0c0;
    padding-right: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 0.5rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #8b0000, #660000);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    color: #e0e0e0;
    border: 2px solid #4a4a4a;
}



.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.hero-pokemon {
    width: 300px;
    height: 300px;
    filter: brightness(0.9) contrast(1.1);
    object-fit: contain;
}

/* Secciones generales */
section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #4a4a4a;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b0000;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Sección Destacados */
.highlights-section {
    padding: 4rem 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0;
}

.highlight-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.highlight-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1rem;
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-content p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-link {
    color: #8b0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}



/* Sección Estadísticas */
.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0;
}

.stat-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #8b0000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: bold;
}

.stat-card p {
    color: #c0c0c0;
    font-size: 0.9rem;
}

/* Sección Noticias */
.news-section {
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
}

.news-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.news-date {
    color: #8b0000;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-item h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-item p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}



/* Página Pokémon */
.pokemon-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(102, 0, 0, 0.1));
    border-radius: 20px;
    margin: 2rem 0;
}

.pokemon-hero-content h1 {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.pokemon-hero-content p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sección Starters */
.starters-section {
    padding: 4rem 0;
}

.starters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    padding: 0;
}

.starter-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.evolution-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.evolution-stage {
    text-align: center;
}

.evolution-stage img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
}

.evolution-stage h4 {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.evolution-stage p {
    color: #c0c0c0;
    font-size: 0.8rem;
}

.evolution-arrow {
    color: #8b0000;
    font-size: 1.5rem;
    font-weight: bold;
}

.starter-info h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.starter-info p {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.pokemon-detail-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #4a4a4a, #2a2a2a);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}



/* Sección Legendarios */
.legendary-section {
    padding: 4rem 0;
}

.legendary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.legendary-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #8b0000;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.legendary-card img {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}



.legendary-info h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legendary-info p {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legendary-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #8b0000, #660000);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}



/* Sección Tipos */
.types-section {
    padding: 4rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.type-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.type-card h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.type-card p {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Sección Curiosidades */
.curiosities-section {
    padding: 4rem 0;
}

.curiosities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.curiosity-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.curiosity-card h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.curiosity-card p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Página Blog */
.blog-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(102, 0, 0, 0.1));
    border-radius: 20px;
    margin: 2rem 0;
}

.blog-hero-content h1 {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.blog-hero-content p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* Artículo Principal */
.featured-article {
    padding: 4rem 0;
}

.main-article {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #8b0000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    position: relative;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.article-meta {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
}

.article-date, .article-category {
    background: rgba(30, 30, 30, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.article-date {
    color: #c0c0c0;
}

.article-category {
    color: #8b0000;
}

.article-content {
    padding: 3rem;
}

.article-content h2 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: left;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-content h3 {
    color: #e0e0e0;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.article-content p {
    color: #c0c0c0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-footer {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-link {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #4a4a4a, #2a2a2a);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}



/* Artículos Secundarios */
.blog-articles {
    padding: 4rem 0;
}

.blog-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-date, .post-category {
    font-size: 0.9rem;
    font-weight: bold;
}

.post-date {
    color: #c0c0c0;
}

.post-category {
    color: #8b0000;
}

.post-content h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-content p {
    color: #c0c0c0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}



/* Sección Análisis */
.analysis-section {
    padding: 4rem 0;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.analysis-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.analysis-card h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.analysis-card p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.analysis-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}



/* Sección Próximos Artículos */
.upcoming-section {
    padding: 4rem 0;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.upcoming-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



.upcoming-item h4 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.upcoming-item p {
    color: #c0c0c0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.upcoming-date {
    color: #8b0000;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Página Galería */
.gallery-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(102, 0, 0, 0.1));
    border-radius: 20px;
    margin: 2rem 0;
}

.gallery-hero-content h1 {
    font-size: 3rem;
    color: #8b0000;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.gallery-hero-content p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* Filtros de Galería */
.gallery-filters {
    padding: 2rem 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #4a4a4a;
    border-radius: 25px;
    background: linear-gradient(45deg, #4a4a4a, #2a2a2a);
    color: #e0e0e0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}



/* Galería Principal */
.main-gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.gallery-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}



.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #e0e0e0;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}



.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}



/* Estadísticas de Galería */
.gallery-stats {
    padding: 4rem 0;
}

.gallery-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.stat-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 3px solid #4a4a4a;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}



/* Sección Descarga */
.download-section {
    padding: 4rem 0;
    text-align: center;
}

.download-section h2 {
    margin-bottom: 1rem;
}

.download-section p {
    color: #c0c0c0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #8b0000, #660000);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 3px solid #8b0000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-section h4 {
    color: #8b0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #c0c0c0;
    padding: 2rem 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .nav {
        flex-direction: column;
        align-items: center;
    }
    
    .highlights-grid,
    .stats-grid,
    .news-grid,
    .starters-grid,
    .legendary-grid,
    .types-grid,
    .curiosities-grid,
    .blog-grid,
    .analysis-grid,
    .upcoming-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .evolution-chain {
        flex-direction: column;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .gallery-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Efectos especiales */
.pokemon-card,
.blog-post,
.gallery-item,
.highlight-card,
.starter-card,
.legendary-card,
.type-card,
.curiosity-card,
.analysis-card,
.upcoming-item,
.stat-card,
.news-item {
    position: relative;
    overflow: hidden;
}

.pokemon-card::before,
.blog-post::before,
.gallery-item::before,
.highlight-card::before,
.starter-card::before,
.legendary-card::before,
.type-card::before,
.curiosity-card::before,
.analysis-card::before,
.upcoming-item::before,
.stat-card::before,
.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

 

/* Mejor contraste para enlaces */
a, .nav-link, .highlight-link, .news-link, .gallery-link, .read-more, .analysis-link {
    outline: none;
}
a:focus, .nav-link:focus, .highlight-link:focus, .news-link:focus, .gallery-link:focus, .read-more:focus, .analysis-link:focus {
    outline: 2px solid #e0e0e0;
    outline-offset: 2px;
}

/* Efecto CRT más pronunciado */
.crt {
    position: fixed;
    pointer-events: none;
    left: 0; 
    top: 0; 
    width: 100vw; 
    height: 100vh;
    z-index: 9999;
    mix-blend-mode: overlay;
    opacity: 0.25;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255,255,255,0.1) 2px, transparent 3px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(255,255,255,0.05) 2px, transparent 3px);
    animation: flicker 0.15s infinite linear;
}

@keyframes flicker {
    0% { opacity: 0.25; }
    50% { opacity: 0.3; }
    100% { opacity: 0.25; }
}

/* Efecto de distorsión en hover */


@keyframes scanlines {
    0% { transform: translateY(0px); }
    100% { transform: translateY(2px); }
}

/* Cursor normal para enlaces */
a, button, .nav-link, .btn {
    cursor: pointer;
}

/* Efecto de distorsión en imágenes */
img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: contrast(1.1) brightness(0.95);
}

/* Efecto de ruido sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.08"/></svg>');
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Efecto de bordes pixelados */
.header, section, .highlight-card, .stat-card, .news-item, .starter-card, .legendary-card, .type-card, .curiosity-card, .analysis-card, .upcoming-item, .blog-post, .gallery-item, .main-article {
    border-image: repeating-linear-gradient(45deg, #4a4a4a, #4a4a4a 2px, transparent 2px, transparent 4px) 1;
    border-image-slice: 1;
}

/* Efecto de texto pixelado */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    letter-spacing: 1px;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px rgba(139, 0, 0, 0.5);
    image-rendering: pixelated;
}

/* Efectos adicionales retro */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Efecto de scanlines más pronunciado */
.crt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 3px
    );
    animation: scanlines 0.1s infinite linear;
} 

/* Grid de blog en una sola columna */
.blog-list-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0;
} 

/* Blog clásico */
.blog-classic-list {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 0;
}
.blog-classic-post {
    margin-bottom: 3rem;
    padding: 2.5rem 2rem 2rem 2rem;
    background: rgba(30,30,30,0.92);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    text-align: center;
}
.blog-classic-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #181818 60%, #2a2a2a 100%);
    box-shadow: 0 2px 12px rgba(139,0,0,0.12);
}
.blog-classic-title {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px #000, 4px 4px 0px rgba(139,0,0,0.3);
}
.blog-classic-meta {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    letter-spacing: 1px;
}
.blog-classic-meta .post-category {
    color: #8b0000;
}
.blog-classic-summary {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
    line-height: 1.7;
}
.blog-classic-readmore {
    margin-top: 1.2rem;
}
.blog-classic-readmore .read-more {
    display: inline-block;
    padding: 0.7rem 2.2rem;
    background: linear-gradient(45deg, #8b0000, #660000);
    color: #fff;
    border-radius: 18px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    box-shadow: 0 2px 8px rgba(139,0,0,0.18);
    transition: background 0.2s;
}
.blog-classic-divider {
    border: none;
    border-top: 2px dashed #4a4a4a;
    margin: 2.5rem 0 2.5rem 0;
    opacity: 0.5;
} 

/* Tabla de Tipos Pokémon */
.types-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0 2rem 0;
    border-radius: 14px;
    background: rgba(20,20,20,0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 1.5rem 1rem;
}
.types-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.95rem;
    color: #f8f8f8;
    background: none;
}
.types-table th, .types-table td {
    border: 2px solid #333;
    padding: 0.7rem 0.5rem;
    text-align: center;
    background: rgba(30,30,30,0.98);
}
.types-table th {
    background: #222;
    color: #ff5252;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.type {
    font-weight: bold;
    border-radius: 8px;
    padding: 0.3em 0.7em;
    color: #fff;
    text-shadow: 1px 1px 0 #000, 0 0 2px #000;
    letter-spacing: 1px;
}
.type-normal { background: #a8a878; }
.type-fire { background: #f08030; }
.type-water { background: #6890f0; }
.type-grass { background: #78c850; }
.type-electric { background: #f8d030; color: #222; }
.type-ice { background: #98d8d8; color: #222; }
.type-fighting { background: #c03028; }
.type-poison { background: #a040a0; }
.type-ground { background: #e0c068; color: #222; }
.type-flying { background: #a890f0; }
.type-psychic { background: #f85888; }
.type-bug { background: #a8b820; }
.type-rock { background: #b8a038; }
.type-ghost { background: #705898; }
.type-dragon { background: #7038f8; }
.type-dark { background: #705848; }
.type-steel { background: #b8b8d0; color: #222; }
.type-fairy { background: #ee99ac; color: #222; }

.types-desc {
    color: #ff5252;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.types-analysis {
    background: rgba(30,30,30,0.97);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(139,0,0,0.10);
    padding: 2rem 1.5rem;
    margin: 2rem 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.types-analysis h3 {
    color: #ff5252;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}
.types-analysis ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #f8f8f8;
    font-size: 1rem;
}
.types-analysis li {
    margin-bottom: 0.7rem;
}
.types-analysis p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
} 