/* ===== Landing Layout ===== */
#landing-content {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
    scroll-behavior: smooth;
}

.landing-layout {
    width: 100%;
    margin: 0;
    display: block;
    padding: 0;
    box-sizing: border-box;
}

.landing-main {
    width: 100%;
    flex: none;
}

/* ===== Hero Section ===== */
.hero-section {
    width: 100vw;
    height: 100svh;
    position: relative;
    margin: -140px 0 0 calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    min-height: 680px;
    max-height: 980px;
    background: #050505;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: saturate(0.82) contrast(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.64) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, transparent 44%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    padding: 60px 40px 0;
    box-sizing: border-box;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-eyebrow span {
    display: inline-block;
    width: 38px;
    height: 2px;
    background: #f44336;
    box-shadow: 0 0 14px rgba(244, 67, 54, 0.65);
}

.hero-title {
    max-width: 850px;
    margin: 0 0 22px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: 0.98;
    color: #fff;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.68);
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-title span {
    color: #f44336;
}

.hero-text {
    margin: 0;
    max-width: 620px;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    min-width: 190px;
    margin: 0;
    padding: 15px 26px;
    text-align: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, #f44336, transparent);
    animation: heroScrollPulse 1.8s ease-in-out infinite;
}

@keyframes heroScrollPulse {
    0%, 100% { opacity: 0.45; transform: scaleY(0.72); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100svh;
        min-height: 620px;
        margin-top: -116px;
    }
    
    .hero-content {
        top: 52%;
        padding: 50px 20px 0;
    }
    
    .hero-title {
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: 1.02;
        margin-bottom: 18px;
    }
    
    .hero-text {
        font-size: 1rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        margin-bottom: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 28px;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-scroll {
        bottom: 18px;
    }
}

/* ===== Sidebar Top 10 (removed - now full width section) ===== */
.landing-top10 {
    display: none;
}

/* Scrollbar styling for sidebar */
.landing-top10::-webkit-scrollbar {
    width: 5px;
}
.landing-top10::-webkit-scrollbar-track {
    background: transparent;
}
.landing-top10::-webkit-scrollbar-thumb {
    background: rgba(244, 67, 54, 0.3);
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .landing-layout {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .landing-layout {
        padding: 0 10px;
    }
    
    #landing-content {
        padding: 0 10px;
    }
}

/* ===== Landing content intro ===== */
#landing-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f44336;
}

#landing-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #bbb;
}

/* ===== About / Platform section (post-hero) ===== */
.about-section {
    padding: 60px 0;
    background: radial-gradient(circle at 10% 20%, rgba(40,40,40,0.9), rgba(0,0,0,0.98) 45%);
    color: #fff;
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 20px;
    box-sizing: border-box;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    box-shadow: 0 12px 50px rgba(0,0,0,0.7);
}

.about-title {
    font-size: 2.4rem;
    margin: 0 0 12px;
    color: #ffffff;
    text-align: center;
}

.about-lead {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 26px;
    color: #d7d7d7;
    line-height: 1.7;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0 20px;
}

.feature {
    background: rgba(255,255,255,0.03);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
}

.feature h3 {
    margin: 0 0 8px;
    color: #f44336;
}

.feature p {
    margin: 0;
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

@media (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-inner {
        padding: 22px 12px;
    }
}

/* ===== Sections ===== */
.top-downloads-section,
.events-section,
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

.top-downloads-section:nth-child(even),
.events-section:nth-child(even) {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #f44336;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 36px;
    color: #aaa;
}

/* ===== Top Descargas ===== */
.bandas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

@media (max-width: 1400px) {
    .bandas-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .bandas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-line {
        animation: none;
    }
}

.banda-card {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ranking-position {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(244, 67, 54, 0.65);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.banda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.banda-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.banda-info {
    padding: 18px;
}

.banda-info h3 {
    margin: 0 0 8px 0;
    color: #f44336;
    font-size: 1.15rem;
}

.banda-descargas {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.btn-download,
.btn-view {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-download {
    background: #f44336;
    color: white;
}

.btn-download:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

.btn-view {
    background: rgba(255, 255, 255, 0.12);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== Eventos ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.event-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 22px;
    border-left: 4px solid #f44336;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 12px;
}

.event-header h3 {
    margin: 0;
    color: #f44336;
}

.event-date {
    color: #aaa;
    font-size: 0.85rem;
    white-space: nowrap;
}

.event-location {
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 14px;
}

.event-organizer {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Call to Action ===== */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #e53935 0%, #f44336 50%, #ff5722 100%) !important;
    margin-bottom: 0;
    border-radius: 12px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 8px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: #f44336;
    color: white;
    box-shadow: 0 8px 24px rgba(244, 67, 54, 0.3);
}

.btn-primary:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 67, 54, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ===== No Content ===== */
.no-content {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px 20px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .landing-layout {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .landing-main {
        padding: 0;
    }

    .bandas-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        gap: 16px;
    }

    .event-header {
        flex-direction: column;
        gap: 6px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-download,
    .btn-view {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
        margin-right: 0;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
