/* Estilos Generales */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff3399;
    --accent-color: #00ccff;
    --dark-bg: #001133;
    --darker-bg: #000a1f;
    --light-text: #ffffff;
    --gray-text: #99b3cc;
    --card-bg: rgba(0, 26, 77, 0.8);
    --header-height: 80px;
    --transition-speed: 0.3s;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.4);
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.btn.primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn.secondary {
    border-color: var(--secondary-color);
}

.btn.secondary:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 0, 229, 0.4);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-text);
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.logo:hover {
    border-color: var(--primary-color);
    transform: rotate(10deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all var(--transition-speed);
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.contact-button .btn {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.secondary-hero {
    height: 60vh;
}

/* Presentación del Canal */
.presentation {
    padding: 5rem 0;
    background-color: var(--darker-bg);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Videos Destacados */
.featured-videos {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-speed);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.video-card:hover .play-button {
    opacity: 1;
}

.video-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 1rem 1rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.more-videos {
    text-align: center;
}

/* Canales y Redes Sociales */
.social-channels {
    padding: 5rem 0;
    background-color: var(--darker-bg);
}

.channels-section,
.social-section {
    margin-bottom: 4rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.channel-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.channel-card h3 {
    margin-bottom: 0.5rem;
}

.channel-card p {
    color: var(--gray-text);
}

.channel-card.youtube {
    border-top: 4px solid #ff0000;
}

.channel-card.youtube i {
    color: #ff0000;
}

.channel-card.twitch {
    border-top: 4px solid #9146ff;
}

.channel-card.twitch i {
    color: #9146ff;
}

.channel-card.discord {
    border-top: 4px solid #7289da;
}

.channel-card.discord i {
    color: #7289da;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon i {
    font-size: 1.5rem;
    transition: all var(--transition-speed);
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

.social-icon:hover i {
    color: var(--darker-bg);
}

/* Llamado a la acción */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--darker-bg);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.5);
}

.cta-btn i {
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--gray-text);
    transition: all var(--transition-speed);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.footer-contact p i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: var(--darker-bg);
}

/* Estilos adicionales */
.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-speed);
}

.social-link:hover {
    background-color: rgba(0, 247, 255, 0.1);
    transform: translateX(5px);
}

.social-link i {
    color: var(--primary-color);
}

.discord-btn {
    background-color: #7289da;
    border: none;
    color: white;
    margin-top: 1rem;
}

.discord-btn:hover {
    background-color: #5f73bc;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

/* Equipo */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.member-role {
    padding: 0 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-description {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-text);
}

.member-social {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.member-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.member-social a:hover i {
    color: var(--darker-bg);
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 3%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .form-group {
        width: 100%;
    }
}

@media (max-width: 576px) {
    header {
        flex-wrap: wrap;
        height: auto;
        padding: 1rem 5%;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .contact-button {
        order: 2;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-date {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline::before {
        left: 20px;
    }
}

/* Estilos para el menú móvil */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-nav ul li {
        margin: 0.5rem 0;
    }
}

/* Animaciones */
.animate {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para mensajes de éxito en formularios */
.success-message {
    background-color: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Estilos para campos con error */
.error {
    border-color: #ff3860 !important;
    box-shadow: 0 0 0 2px rgba(255, 56, 96, 0.2) !important;
}

/* Calendario de Lanzamientos */
.games-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-card {
    display: flex;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--primary-color);
}

.game-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(0, 247, 255, 0.1);
    min-width: 100px;
    text-align: center;
}

.game-date .month {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.game-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.game-info {
    padding: 1.5rem;
    flex: 1;
}

.game-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.game-platform {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-description {
    margin-bottom: 1rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-tags span {
    background-color: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Galería de Imágenes */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-speed);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Formulario de Sugerencias */
.form-container {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--light-text);
    font-family: inherit;
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 247, 255, 0.2);
}

.submit-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--darker-bg);
    font-weight: 700;
    padding: 1rem 2rem;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
}

/* Historia del Canal */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
}

.timeline-date {
    width: 120px;
    text-align: center;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    flex: 1;
    margin-left: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-image {
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Estadísticas del Canal */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--gray-text);
    font-size: 1rem;
}

.stats-achievements {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-achievements h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.achievements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.achievements-list li {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.achievements-list li:hover {
    background-color: rgba(0, 247, 255, 0.1);
}

.achievements-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Estilos para la sección de Próximos Juegos */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Estilos para la sección de Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Estilos para la sección de Posts Destacados */
.featured-blog-posts {
    padding: 5rem 0;
    background-color: var(--darker-bg);
}

.more-posts {
    text-align: center;
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.blog-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.blog-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-top-right-radius: var(--border-radius);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.blog-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-categories {
    margin-top: 4rem;
    text-align: center;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--card-bg);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-speed);
    border: 1px solid var(--primary-color);
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.blog-subscribe {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(255, 51, 153, 0.2));
    padding: 3rem;
    border-radius: var(--border-radius);
}

.blog-subscribe h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-subscribe p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray-text);
}

