/* ============================================
   VIVE AGUACHICA - HOME INMERSIVO
   Diseño moderno, dinámico e interactivo
   ============================================ */

:root {
    --hero-height: 85vh;
    --story-size: 72px;
    --card-radius: 16px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   1. HERO SECTION - "EL MOMENTO"
   ============================================ */

.hero-immersive {
    position: relative;
    height: var(--hero-height);
    min-height: 500px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background video,
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s var(--transition-smooth);
}

/* Badge removido - ya no se usa */

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.rotating-text {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    min-width: 400px;
    text-align: left;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Animación sutil y elegante para el cambio de texto */
.rotating-text.fade-out {
    animation: textFadeOutSubtle 0.4s ease-out forwards;
}

.rotating-text.fade-in {
    animation: textFadeInSubtle 0.4s ease-in forwards;
}

@keyframes textFadeOutSubtle {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes textFadeInSubtle {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-stats i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.hero-weather-widget {
    position: absolute;
    top: 6rem;
    right: 2rem;
    z-index: 100;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-weather-widget i {
    font-size: 1.2rem;
}

.hero-weather-widget .spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-featured-events {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-event-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 150px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.hero-event-mini:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.hero-event-mini i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-event-mini span {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
}

.hero-stats {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   2. STORIES BAR - "HAPPENING NOW"
   ============================================ */

.stories-section {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.stories-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    margin-bottom: 1rem;
}

.stories-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ff4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.stories-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex-shrink: 0;
    width: var(--story-size);
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
    position: relative;
}

.story-item:hover {
    transform: scale(1.05);
}

/* Tooltip on hover (solo desktop) */
@media (min-width: 769px) {
    .story-item::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -2.5rem;
        left: 50%;
        transform: translateX(-50%) scale(0.9);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        font-size: 0.75rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s var(--transition-smooth);
        z-index: 1000;
    }

    .story-item:hover::after {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.story-circle {
    width: var(--story-size);
    height: var(--story-size);
    border-radius: 20%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3px;
    margin-bottom: 0.5rem;
    position: relative;
}

.story-circle.active {
    background: linear-gradient(135deg, #ff4444, #ff8844);
}

.story-image {
    width: 100%;
    height: 100%;
    border-radius: 18%;
    object-fit: cover;
    border: 3px solid white;
}

.story-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: var(--story-size);
}

.story-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #ff4444;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

/* ============================================
   3. FEED INTELIGENTE - "PARA TI"
   ============================================ */

.feed-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 0.5rem;
    position: relative;
    z-index: 10;
    background: white;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-title i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.section-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s var(--transition-smooth);
}

.section-link:hover {
    gap: 0.75rem;
}



/* Feed Grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feed-card {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
}

.feed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feed-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feed-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.feed-card:hover .feed-card-image img {
    transform: scale(1.1);
}

.feed-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.feed-card-content {
    padding: 1.25rem;
}

.feed-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feed-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.feed-card-meta i {
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.feed-card-meta span {
    display: inline-flex;
    align-items: center;
}

/* Primer span (fecha) no se comprime */
.feed-card-meta span:first-child {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Segundo span (ubicación) se puede comprimir */
.feed-card-meta span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feed-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   4. MAPA INTERACTIVO
   ============================================ */

.map-section {
    background: var(--surface);
    padding: 3rem 0;
    margin: 3rem 0;
}

.map-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.map-container {
    height: 500px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   5. CALENDARIO VISUAL
   ============================================ */

.calendar-section {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.calendar-week {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
}

.calendar-day {
    flex-shrink: 0;
    width: 90px;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.calendar-day:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.calendar-day.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.day-name {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.day-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.day-events {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.day-event-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.calendar-day.active .day-event-dot {
    background: white;
}

.day-count {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.4rem;
    opacity: 0.8;
}

/* Eventos del día seleccionado */
.calendar-events {
    margin-top: 2rem;
    min-height: 200px;
}

.calendar-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    animation: fadeInUp 0.4s ease;
}

/* Scroll horizontal en móvil para eventos del calendario */
@media (max-width: 768px) {
    .calendar-events-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .calendar-events-grid::-webkit-scrollbar {
        height: 6px;
    }

    .calendar-events-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .calendar-events-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .calendar-event-card {
        flex-shrink: 0;
        width: 280px;
        scroll-snap-align: start;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
}

.calendar-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.calendar-event-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.calendar-event-content {
    padding: 1rem;
}

.calendar-event-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.calendar-event-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-event-time i {
    font-size: 1rem;
}

.calendar-events-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.calendar-events-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ============================================
   6. GALERÍAS RECIENTES
   ============================================ */

.gallery-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   7. STATS EN VIVO
   ============================================ */

.stats-section {
    background: var(--surface);
    color: var(--text-primary);
    padding: 2rem 0;
    margin: 2rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.6s var(--transition-smooth);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
    color: var(--text-secondary);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    color: var(--primary-color);
}

/* ============================================
   8. ARTISTAS DESTACADOS
   ============================================ */

.artists-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.artists-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.artists-carousel::-webkit-scrollbar {
    display: none;
}

.artist-card {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
}

.artist-card:hover {
    transform: translateY(-8px);
}

.artist-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.artist-specialty {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   9. CTA SECTION
   ============================================ */

.cta-section {
    background: var(--surface);
    padding: 4rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-primary {
    background: var(--primary-color);
    color: white;
}

.cta-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.cta-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    :root {
        --hero-height: 60vh;
        --story-size: 60px;
    }

    .hero-immersive {
        margin-bottom: -6rem;
    }

    .stories-section {
        margin-top: 0;
        padding: 1rem 1rem 1.5rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 5;
    }
    
    .stories-header {
        padding: 0;
    }
    
    .stories-container {
        padding: 0 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .rotating-text {
        min-width: 200px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-stats {
        font-size: 0.85rem;
    }

    .hero-weather-widget {
        top: 5rem;
        right: 1rem;
        font-size: 0.75rem;
    }

    .hero-weather-widget i {
        font-size: 0.9rem;
    }

    .hero-featured-events {
        gap: 0.5rem;
    }

    .hero-event-mini {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }

    .hero-event-mini i {
        font-size: 1.5rem;
    }

    .stories-section {
        top: 70px;
    }

    .feed-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-header {
        margin-bottom: 0.75rem;
    }
    
    .section-link {
        font-size: 0.7rem;
        max-width: 80px;
        text-align: right;
        line-height: 1.3;
        gap: 0.25rem;
    }
    
    .section-link i {
        align-self: flex-end;
    }

    .calendar-day {
        width: 75px;
        padding: 0.6rem 0.4rem;
    }

    .day-number {
        font-size: 1.3rem;
    }
    
    .day-name {
        font-size: 0.6rem;
    }
    
    .day-count {
        font-size: 0.65rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SKELETON LOADERS
   ============================================ */

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    height: 300px;
    border-radius: var(--card-radius);
}

.skeleton-story {
    width: var(--story-size);
    height: var(--story-size);
    border-radius: 50%;
}
