* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Efecto de estrellas */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgb(255, 255, 255), transparent),
        radial-gradient(2px 2px at 40px 70px, rgb(255, 255, 255), transparent),
        radial-gradient(1px 1px at 90px 40px, rgb(255, 255, 255), transparent),
        radial-gradient(1px 1px at 130px 80px, rgb(255, 255, 255), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite alternate;
}

.logo i {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 28px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    color: #cccccc;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.description {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.game-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.game-icon {
    font-size: 30px;
    animation: bounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
    filter: grayscale(0.3);
}

.game-icon:nth-child(1) { --i: 0; }
.game-icon:nth-child(2) { --i: 1; }
.game-icon:nth-child(3) { --i: 2; }
.game-icon:nth-child(4) { --i: 3; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.link {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-decoration: none;
    border-radius: 15px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.link:hover::before {
    left: 100%;
}

.link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.link i {
    font-size: 24px;
    margin-bottom: 8px;
}

.link-desc {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Colores específicos SOLO para las redes sociales */
.discord { background: linear-gradient(45deg, #5865f2, #4752c4); }
.youtube { background: linear-gradient(45deg, #ff0000, #cc0000); }
.twitch { background: linear-gradient(45deg, #9146ff, #7928ca); }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366); }
.tiktok { background: linear-gradient(45deg, #ff0050, #000000); }
.twitter { background: linear-gradient(45deg, #1da1f2, #0d8bd9); }
.whatsapp { background: linear-gradient(45deg, #25d366, #1ebe57); }

/* Link del calendario en escala de grises */
.calendar { 
    background: linear-gradient(45deg, #4a4a4a, #2a2a2a); 
    color: #ffffff;
}

.featured-games {
    margin-bottom: 30px;
}

.featured-games h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.game-card {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(128, 128, 128, 0.2));
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(160, 160, 160, 0.3));
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.stat-label {
    color: #cccccc;
    font-size: 12px;
}

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer p {
    color: #999999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-icons {
        gap: 15px;
    }
    
    .game-icon {
        font-size: 25px;
    }
}
