* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: transparent;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.carousel-wrapper {
    width: 360px;
    height: 1080px;
    position: relative;
    overflow: hidden;
    background: rgba(15, 10, 25, 0.85);
}

.carousel-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 60s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-1260px);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 360px;
    height: 130px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(60, 40, 90, 0.9), rgba(30, 20, 50, 0.9));
    border: 2px solid rgba(180, 120, 255, 0.4);
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(138, 99, 210, 0.3);
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(180, 120, 255, 0.15);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
}

.carousel-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: rgba(180, 120, 255, 0.15);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(20deg);
}

/* Efecto de máscara de desvanecimiento en los bordes */
.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        rgba(15, 10, 25, 0.95) 0%, 
        rgba(15, 10, 25, 0.7) 40%,
        transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.carousel-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, 
        rgba(15, 10, 25, 0.95) 0%, 
        rgba(15, 10, 25, 0.7) 40%,
        transparent 100%);
    pointer-events: none;
    z-index: 10;
}

.icon {
    font-size: 48px;
    min-width: 60px;
    text-align: center;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(180, 120, 255, 0.6));
}

.info {
    flex: 1;
    z-index: 2;
}

.info h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(180, 120, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

/* Contenedor de etiquetas (Status + Type) */
.tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.status {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 2;
    position: relative;
}

.status.live {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.status.toolate {
    background: #ff3366;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.6);
}

/* Etiquetas de tipo: Badge y Emote (Twitch) */
.type {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 2;
    position: relative;
}

.type.badge {
    background: #a855f7;
    color: #fff;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.type.emote {
    background: #fbbf24;
    color: #000;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

/* Etiquetas de tipo: Orbs y Deco (Discord) */
.type.orbs {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.type.deco {
    background: #fbbf24;
    color: #000;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.date {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
}

.carousel-item:hover {
    border-color: rgba(180, 120, 255, 0.8);
    box-shadow: 0 4px 20px rgba(180, 120, 255, 0.5);
}

/* Partículas flotantes decorativas */
.carousel-wrapper .sparkle-1 {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 20px;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

.carousel-wrapper .sparkle-2 {
    content: '✨';
    position: absolute;
    bottom: 15%;
    right: 10%;
    font-size: 25px;
    opacity: 0.4;
    animation: float 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
