/* ===== THEME GAMESTINY ===== */
.gamestiny-theme {
    --primary-color: #00ff8c;
    --secondary-color: #ff00ff;
    --accent-color: #00ccff;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-light: #cccccc;
    
    background-color: var(--dark-bg);
    color: var(--text-color);
}

/* ===== HEADER GAMESTINY ===== */
.gamestiny-nav {
    background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(0,20,10,0.95) 100%) !important;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 5px 25px rgba(0, 255, 140, 0.1);
}

.logo-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px;
    letter-spacing: 1px;
}

/* ===== HERO VIDEO ===== */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,20,10,0.6) 100%);
}

.hero-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-text {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 255, 140, 0.5);
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-top: 0.5rem;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== GAMES SECTION ===== */
.games-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
    padding: 5rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 15px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.game-card.active {
    display: block;
}

.game-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 140, 0.2);
}

.game-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-price {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.game-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== PARTIES SECTION ===== */
.parties-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #00140a 100%);
    padding: 5rem 0;
}

.party-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .party-content {
        grid-template-columns: 1fr 1fr;
    }
}

.party-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.party-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature i {
    color: var(--primary-color);
    width: 20px;
}

.btn-party {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 255, 140, 0.8));
    padding: 1rem;
    color: var(--dark-bg);
    font-weight: 600;
    text-align: center;
}

/* ===== POINTS SYSTEM ===== */
.points-system {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.points-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .points-content {
        grid-template-columns: 2fr 1fr;
    }
}

.earning-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.method {
    background: rgba(0, 255, 140, 0.05);
    border: 1px solid rgba(0, 255, 140, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 140, 0.2);
}

.method-header h4 {
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.points-badge {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.method-list li:last-child {
    border-bottom: none;
}

.method-list strong {
    color: var(--primary-color);
}

/* Rewards Section */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.reward-card {
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reward-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.reward-points {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Current Challenges */
.current-challenges {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.challenges-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.challenge {
    background: rgba(0, 255, 140, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1rem;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.challenge-game {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.challenge-desc {
    color: var(--text-light);
    flex: 1;
}

.challenge-reward {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    white-space: nowrap;
}

/* ===== SNACKS SECTION ===== */
.snacks-section {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
    padding: 5rem 0;
}

.snacks-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 15px;
}

.category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.category:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.category h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 255, 140, 0.2);
}

.snack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.snack-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.snack-list li:last-child {
    border-bottom: none;
}

.price {
    color: var(--accent-color);
    font-weight: 600;
}

.points {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #00140a 100%);
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 2fr 1fr;
    }
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission, .vision {
    background: rgba(0, 255, 140, 0.05);
    border: 1px solid rgba(0, 255, 140, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.mission h4, .vision h4 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 255, 140, 0.8));
    padding: 1rem;
    color: var(--dark-bg);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
    padding: 5rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
    }
}

.location-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-details {
    margin-bottom: 2rem;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.location-details i {
    color: var(--primary-color);
    width: 20px;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.btn-location {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    height: 300px;
}

/* ===== FOOTER GAMESTINY ===== */
.gamestiny-footer {
    background: linear-gradient(135deg, #000000 0%, #00140a 100%);
    border-top: 3px solid var(--primary-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 15px 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 140, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff4757;
    margin: 0 0.3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 140, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 140, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .earning-methods {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .challenge {
        min-width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.8rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 200px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
}

/* ===== GAME CARD ANIMATION DELAYS ===== */
.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }
.game-card:nth-child(7) { animation-delay: 0.7s; }
.game-card:nth-child(8) { animation-delay: 0.8s; }
.game-card:nth-child(9) { animation-delay: 0.9s; }
.game-card:nth-child(10) { animation-delay: 1s; }

/* ===== FILTER SYSTEM FOR GAMES ===== */
.game-card {
    animation: fadeInUp 0.5s ease forwards;
}

.game-card:not(.active) {
    display: none;
}

/* ===== NAVIGATION ACTIVE STATES ===== */
.gamestiny-nav nav ul li a {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.gamestiny-nav nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.gamestiny-nav nav ul li a:hover::before {
    width: 80%;
}

.gamestiny-nav nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.gamestiny-nav nav ul li a.active::before {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 10px rgba(0, 255, 140, 0.5);
}

/* Efecto de partículas para enlace activo */
.gamestiny-nav nav ul li a.active::after {
    content: '•';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Para móviles */
@media (max-width: 768px) {
    .mobile-menu ul li a.active {
        background: rgba(0, 255, 140, 0.15);
        color: var(--primary-color);
        border-left: 3px solid var(--primary-color);
    }
    
    .mobile-menu ul li a.active::before {
        display: none;
    }
}

/* Indicador de sección activa */
.active-section-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    background: rgba(10, 10, 10, 0.8);
    padding: 15px 10px;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 140, 0.2);
    backdrop-filter: blur(10px);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator-dot:hover {
    background: rgba(0, 255, 140, 0.5);
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 140, 0.5);
    transform: scale(1.3);
}

.indicator-dot.active::after {
    content: attr(data-section);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 140, 0.9);
    color: var(--dark-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    animation: slideInRight 0.3s ease forwards;
    animation-delay: 0.1s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}


/* ===== CORRECCIÓN HEADER MENÚ CONTRAÍBLE ===== */
.gamestiny-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Logo más pequeño cuando hay scroll */
.gamestiny-nav.scrolled .logo img {
    height: 45px;
}

.gamestiny-nav.scrolled .logo-text {
    font-size: 1rem;
}

/* Navegación principal - ajustable */
.gamestiny-nav nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}

.gamestiny-nav nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.8rem;
    flex-wrap: nowrap;
    transition: all 0.3s ease;
}

.gamestiny-nav nav ul li {
    flex-shrink: 0;
}

.gamestiny-nav nav ul li a {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
}

/* Botón de login más pequeño */
.btn-login {
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem !important;
    margin-left: 0.5rem;
    color: #000000;
}

/* Ajustes responsive para pantallas medianas */
@media (max-width: 1200px) {
    .gamestiny-nav nav ul {
        gap: 0.5rem;
    }
    
    .gamestiny-nav nav ul li a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
}

@media (max-width: 1100px) {
    .gamestiny-nav nav ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
    
    .logo-text {
        display: none;
    }
}

/* En tablets, ocultar menú y mostrar botón hamburguesa */
@media (max-width: 992px) {
    .gamestiny-nav nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: all 0.3s ease;
        z-index: 1003;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }
    
    /* Menú móvil con scroll si hay muchos items */
    .mobile-menu {
        max-width: 100%;
        width: 320px;
        overflow-y: auto;
    }
    
    .mobile-menu ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .mobile-menu ul li a {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
    }
    
    .mobile-menu ul li a:hover {
        background: rgba(0, 255, 140, 0.1);
        border-left-color: var(--primary-color);
        padding-left: 2rem;
    }
    
    .mobile-menu .btn-login {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
    }
}

/* En móviles pequeños */
@media (max-width: 576px) {
    .gamestiny-nav {
        padding: 0.8rem 3%;
    }
    
    .logo img {
        height: 40px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: none;
        padding-top: 80px;
    }
    
    .mobile-menu ul li a {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
}

/* ===== FOOTER GAMESTINY - CORRECCIÓN SOCIAL LINKS RESPONSIVE ===== */
.gamestiny-footer {
    background: linear-gradient(135deg, #000000 0%, #00140a 100%);
    border-top: 3px solid var(--primary-color);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 0 15px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Sección de redes sociales - FORZAR CENTRADO */
.footer-section:last-child {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 1rem !important;
}

.footer-section:last-child h4 {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
}

/* CONTENEDOR DE SOCIAL LINKS - CRÍTICO */
.footer-section:last-child .social-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* Enlaces individuales */
.footer-section:last-child .social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: var(--card-bg) !important;
    color: var(--text-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.footer-section:last-child .social-links a:hover {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 255, 140, 0.3) !important;
}

/* ===== RESPONSIVE ESPECÍFICO PARA SOCIAL LINKS ===== */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1 !important;
        margin-top: 1rem !important;
        order: 4; /* Asegurar que vaya al final */
    }
    
    .footer-section:last-child .social-links {
        justify-content: center !important;
        padding: 1rem 0 !important;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .gamestiny-footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }
    
    /* FORZAR CENTRADO ABSOLUTO EN MÓVILES */
    .footer-section:last-child {
        grid-column: 1 !important;
        order: 4 !important;
        margin: 1rem auto 0 !important;
        padding: 1rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .footer-section:last-child h4 {
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section:last-child .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        margin: 0 auto !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .footer-section:last-child .social-links a {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
        margin: 0 !important;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .footer-section:last-child {
        margin-top: 0.5rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .footer-section:last-child .social-links {
        gap: 0.6rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .footer-section:last-child .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.95rem !important;
    }
}

/* ===== GAME CARDS CON IMÁGENES RESPONSIVAS ===== */

/* Contenedor de la imagen */
.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen responsiva - TODAS del mismo tamaño */
.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

/* Efecto hover en la imagen */
.game-card:hover .game-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Texto y contenido de la card */
.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px; /* Altura fija para todas */
}

/* Contenido interno */
.game-card > *:not(.game-image) {
    padding: 0 1.5rem;
}

.game-card h3 {
    margin: 0.8rem 0 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.game-price {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.game-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0.5rem 0 1.5rem;
    flex-grow: 1;
}

/* Estado activo */
.game-card.active {
    display: flex;
}

/* Hover effects */
.game-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 140, 0.2);
}

/* Icono de fallback si no hay imagen */
.game-image:before {
    content: '\f11b'; /* Icono de gamepad de FontAwesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.3;
    display: none; /* Solo mostrar si no hay imagen */
}

.game-image:has(img[src=""])::before,
.game-image:not(:has(img))::before {
    display: block;
}

/* Responsive para game cards */
@media (max-width: 1200px) {
    .game-card {
        height: 380px;
    }
    
    .game-image {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .game-card {
        height: 360px;
    }
    
    .game-image {
        height: 160px;
    }
    
    .game-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .game-card {
        height: 350px;
    }
    
    .game-image {
        height: 150px;
    }
    
    .game-card > *:not(.game-image) {
        padding: 0 1rem;
    }
    
    .game-card h3 {
        font-size: 1.1rem;
    }
    
    .game-price {
        font-size: 0.9rem;
    }
    
    .game-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .game-card {
        height: 340px;
    }
    
    .game-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .game-card {
        height: 380px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .game-image {
        height: 170px;
    }
}

/* Si usas imágenes placeholder mientras consigues las reales */
.game-image img[src*="placeholder"] {
    object-fit: contain;
    padding: 1rem;
    filter: brightness(0.8);
}

/* ===== IMÁGENES DE EJEMPLO SI NO TIENES LAS FOTOS ===== */
/* Agrega este CSS si usas imágenes de placeholder */
.game-image {
    position: relative;
}

/* Colores de fondo por categoría si no hay imagen */
.game-card[data-category="consolas"] .game-image {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.game-card[data-category="arcade"] .game-image {
    background: linear-gradient(45deg, #2a1a2a, #3a2a3a);
}

.game-card[data-category="deportes"] .game-image {
    background: linear-gradient(45deg, #1a2a1a, #2a3a2a);
}

.game-card[data-category="especiales"] .game-image {
    background: linear-gradient(45deg, #2a2a1a, #3a3a2a);
}

.game-card img {
  width: 100%;
  height: auto;
  max-height: 200px; /* Controla la altura máxima */
  object-fit: contain; /* Muestra toda la imagen sin recortar */
}

/* ===== SISTEMA DE PUNTOS ===== */

/* Estilos para la sección de puntos */
.puntos-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.puntos-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ff88;
}

.puntos-section .subtitle {
  text-align: center;
  color: #b0b0d0;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Grid de las 4 tablas */
.tablas-puntos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.tabla-puntos {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tabla-puntos:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
}

.tabla-header {
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid;
}

.tabla-header.jugando {
  background: linear-gradient(90deg, #ff6b6b, #ffa36c);
  border-color: #ff6b6b;
}

.tabla-header.consumiendo {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
  border-color: #4ecdc4;
}

.tabla-header.retos {
  background: linear-gradient(90deg, #c266ff, #ac47ff);
  border-color: #ffd166;
}

.tabla-header.torneos {
  background: linear-gradient(90deg, #9d50bb, #6e48aa);
  border-color: #9d50bb;
}

.tabla-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: white;
}

.puntos-total {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: bold;
}

.tabla-body {
  padding: 20px;
}

.tabla-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabla-item:last-child {
  border-bottom: none;
}

.tabla-item .juego {
  font-weight: 500;
}

.tabla-item .puntos {
  background: rgba(0, 255, 136, 0.15);
  color: #00ff88;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.nota {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.nota small {
  color: #b0b0d0;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Estilos para la sección de premios */
.premios-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}

.premios-section h2 {
  color: #ffd700;
}

.categorias-premios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.categoria-premio {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.categoria-header {
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid;
}

.categoria-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.rango-puntos {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Colores para cada categoría */
.micro .categoria-header {
  background: linear-gradient(90deg, #ff9a9e, #fad0c4);
  border-color: #ff9a9e;
}

.nano .categoria-header {
  background: linear-gradient(90deg, #a1c4fd, #c2e9fb);
  border-color: #a1c4fd;
}

.chicos .categoria-header {
  background: linear-gradient(90deg, #84fab0, #8fd3f4);
  border-color: #84fab0;
}

.medianos .categoria-header {
  background: linear-gradient(90deg, #d4fc79, #96e6a1);
  border-color: #d4fc79;
}

.grandes .categoria-header {
  background: linear-gradient(90deg, #fbc2eb, #a6c1ee);
  border-color: #fbc2eb;
}

.premios-lista {
  padding: 15px;
}

.premio-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premio-item:last-child {
  border-bottom: none;
}

.premio-nombre {
  font-size: 0.9rem;
  flex: 1;
  padding-right: 10px;
}

.premio-puntos {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}

.nota-premios {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 10px;
  border-left: 4px solid #00ff88;
}

.nota-premios p {
  margin: 8px 0;
  color: #b0ffd9;
}

/* Responsive */
@media (max-width: 768px) {
  .tablas-puntos {
    grid-template-columns: 1fr;
  }
  
  .categorias-premios {
    grid-template-columns: 1fr;
  }
  
  .premios-section {
    padding: 25px;
  }
  
  .puntos-section {
    padding: 40px 15px;
  }
}

/* ===== PUNTOS SECTION - ESTILOS UNIFICADOS ===== */
.puntos-section {
    background: var(--dark-bg) !important;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Superposición de estilo similar a otras secciones */
.puntos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 20, 10, 0.9) 100%);
    z-index: 1;
}

.puntos-section .container {
    position: relative;
    z-index: 2;
}

.puntos-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.puntos-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.puntos-section .subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Ajustar las tablas de puntos */
.tablas-puntos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tabla-puntos {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tabla-puntos:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 140, 0.2);
    border-color: var(--primary-color);
}

.tabla-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid;
    color: var(--dark-bg);
    font-weight: 600;
}

.tabla-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.puntos-total {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
}

/* Colores de headers - manteniendo tu esquema */
.tabla-header.jugando {
    background: linear-gradient(135deg, #ff6b6b, #ffa36c);
    border-bottom-color: #ff6b6b;
}

.tabla-header.consumiendo {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-bottom-color: #4ecdc4;
}

.tabla-header.retos {
    background: linear-gradient(135deg, #c266ff, #ac47ff);
    border-bottom-color: #ffd166;
}

.tabla-header.torneos {
    background: linear-gradient(135deg, #9d50bb, #6e48aa);
    border-bottom-color: #9d50bb;
}

.tabla-body {
    padding: 1.5rem;
}

.tabla-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.tabla-item:last-child {
    border-bottom: none;
}

.tabla-item .juego {
    font-weight: 500;
    flex: 1;
}

.tabla-item .puntos {
    background: rgba(0, 255, 140, 0.15);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: max-content;
    margin-left: 1rem;
}

.nota {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.nota small {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.5rem;
}

/* Premios Section - dentro de puntos */
.premios-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 1px solid rgba(0, 255, 140, 0.2);
}

.premios-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.premios-section .subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.categorias-premios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.categoria-premio {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.categoria-premio:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.categoria-header {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 2px solid;
    color: var(--dark-bg);
}

.categoria-header h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.rango-puntos {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Colores de categorías de premios */
.categoria-premio.micro .categoria-header {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    border-bottom-color: #ff9a9e;
}

.categoria-premio.nano .categoria-header {
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    border-bottom-color: #a1c4fd;
}

.categoria-premio.chicos .categoria-header {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
    border-bottom-color: #84fab0;
}

.categoria-premio.medianos .categoria-header {
    background: linear-gradient(135deg, #d4fc79, #96e6a1);
    border-bottom-color: #d4fc79;
}

.categoria-premio.grandes .categoria-header {
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
    border-bottom-color: #fbc2eb;
}

.premios-lista {
    padding: 1.2rem;
}

.premio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.premio-item:last-child {
    border-bottom: none;
}

.premio-nombre {
    font-size: 0.9rem;
    flex: 1;
    padding-right: 1rem;
}

.premio-puntos {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.nota-premios {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 140, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.nota-premios p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.nota-premios strong {
    color: var(--primary-color);
}

/* Responsive para puntos */
@media (max-width: 768px) {
    .puntos-section {
        padding: 3rem 1rem;
    }
    
    .tablas-puntos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categorias-premios {
        grid-template-columns: 1fr;
    }
    
    .premios-section {
        padding: 1.5rem;
    }
    
    .tabla-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tabla-item .puntos {
        margin-left: 0;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .puntos-section {
        padding: 2rem 0.5rem;
    }
    
    .premios-section {
        padding: 1rem;
    }
    
    .tabla-body {
        padding: 1rem;
    }
    
    .premios-lista {
        padding: 1rem;
    }
}

/* Mantener consistencia con game cards */
.tabla-puntos {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

/* Aplicar animaciones escalonadas */
.tabla-puntos:nth-child(1) { animation-delay: 0.1s; }
.tabla-puntos:nth-child(2) { animation-delay: 0.2s; }
.tabla-puntos:nth-child(3) { animation-delay: 0.3s; }
.tabla-puntos:nth-child(4) { animation-delay: 0.4s; }

/* Efecto brillo en hover */
.tabla-puntos::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 15px;
}

.tabla-puntos:hover::before {
    opacity: 0.3;
}

.puntos-section,
.puntos-section h2,
.puntos-section h3,
.puntos-section p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.puntos-section h2 {
    font-weight: 700;
}

.puntos-section h3 {
    font-weight: 600;
}

/* ===== PARTY CONTENT - GRID 50/50 ===== */
.party-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% - 50% */
    gap: 3rem;
    align-items: center;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Party info (lado izquierdo) */
.party-info {
    padding-right: 1rem;
}

/* Party video (lado derecho) */
.party-video {
    width: 100%;
    position: relative;
}

.youtube-direct-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.youtube-direct-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive: En móviles apilar verticalmente */
@media (max-width: 768px) {
    .party-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .party-info {
        padding-right: 0;
        text-align: center;
    }
    
    .youtube-direct-container {
        border-width: 1px;
    }
}

