/* ==========================================================================
   S1X S1X - Hard Techno DJ Website Styles
   Dark, atmospheric design with pulsating red lights animation
   ========================================================================== */

/* Custom Font Declaration */
@font-face {
    font-family: 'Chopsic';
    src: url('assets/fonts/Chopsic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100vw;
    cursor: none;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: #ff0000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 36px;
    height: 36px;
}

.custom-cursor.hidden {
    opacity: 0;
}

/* Hide custom cursor on mobile devices */
@media (max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }
}

/* Hide default cursor on all interactive elements */
button, a, .cta-button, .nav-link, .mobile-menu-btn, .mobile-menu-close, .lang-btn, input[type="submit"], .platform-link, .download-link, .ticket-link, .notify-btn, .play-button, .social-link, .download-pdf-btn, .gallery-nav, .lightbox-close, .lightbox-prev, .lightbox-next, .press-photo, .mobile-nav-item, .add-event-btn {
    cursor: none !important;
}

/* Restore default cursor on mobile devices */
@media (max-width: 768px) {
    button, a, .cta-button, .nav-link, .mobile-menu-btn, .mobile-menu-close, .lang-btn, input[type="submit"], .platform-link, .download-link, .ticket-link, .notify-btn, .play-button, .social-link, .download-pdf-btn, .gallery-nav, .lightbox-close, .lightbox-prev, .lightbox-next, .press-photo, .mobile-nav-item, .add-event-btn {
        cursor: pointer !important;
    }
}

/* Custom red scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #1a1a1a;
}

/* Webkit scrollbar (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #1a1a1a;
}

*::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

*::-webkit-scrollbar-corner {
    background: #1a1a1a;
}

/* Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/background.png?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.6;
}

/* WebP support with fallback */
@supports (background-image: url('data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA')) {
    body::before {
        background-image: url('assets/images/background.webp?v=2');
    }
}

/* Pulsating Red Lights Overlay Animation */
.lights-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pulse-light {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0.4) 30%, rgba(255, 0, 0, 0.2) 70%, transparent 100%);
    filter: blur(10px);
    mix-blend-mode: screen;
    animation-play-state: running;
}

.pulse-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 15%;
    animation: pulse1 2.2s ease-in-out infinite;
}

.pulse-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation: pulse2 1.8s ease-in-out infinite 1s;
}

.pulse-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 10%;
    animation: pulse3 2.5s ease-in-out infinite 2s;
}

.pulse-4 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
    animation: pulse4 1.5s ease-in-out infinite 0.5s;
}

/* Keyframe Animations for Pulsating Lights */
@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.1); opacity: 0.75; }
}

@keyframes pulse4 {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.4); opacity: 0.55; }
}

/* Main Content Container */
.main-content {
    min-height: calc(100vh - 80px);
    padding: 2rem 1rem 100px 1rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   HOME PAGE STYLES
   ========================================================================== */

.hero-section {
    text-align: center;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
}

.hero-text-wrapper {
    display: inline-block;
    text-align: center;
    position: relative;
}

.hero-logo {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5)) brightness(0.85);
}

/* Red gloss shine effect */
.hero-logo-container {
    position: relative;
    display: inline-block;
    width: clamp(20rem, 45vw, 35rem);
    height: auto;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    transform: skewX(-30deg);
    animation-name: slide;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay: 0.3s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    background: linear-gradient(
        to right, 
        rgba(255, 0, 0, 0) 0%,
        rgba(255, 0, 0, 0.01) 15%,
        rgba(255, 0, 0, 0.025) 30%,
        rgba(255, 0, 0, 0.07) 40%,
        rgba(255, 0, 0, 0.18) 50%,
        rgba(255, 0, 0, 0.07) 60%,
        rgba(255, 0, 0, 0.025) 70%,
        rgba(255, 0, 0, 0.01) 85%,
        rgba(255, 0, 0, 0) 100%
    );
}

@keyframes slide {
    0% {
        left: -50%;
        opacity: 0;
    }
    10% {
        left: -40%;
        opacity: 0;
    }
    15% {
        left: -30%;
        opacity: 0.18;
    }
    25% {
        left: -20%;
        opacity: 0.45;
    }
    35% {
        left: -10%;
        opacity: 0.7;
    }
    50% {
        left: 25%;
        opacity: 0.85;
    }
    65% {
        left: 60%;
        opacity: 0.7;
    }
    75% {
        left: 80%;
        opacity: 0.45;
    }
    85% {
        left: 100%;
        opacity: 0.18;
    }
    90% {
        left: 110%;
        opacity: 0;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

@keyframes slide-contained {
    0% {
        left: -30%;
        opacity: 0;
    }
    10% {
        left: -20%;
        opacity: 0.2;
    }
    20% {
        left: -10%;
        opacity: 0.5;
    }
    30% {
        left: 0%;
        opacity: 0.8;
    }
    50% {
        left: 50%;
        opacity: 1;
    }
    70% {
        left: 80%;
        opacity: 0.8;
    }
    80% {
        left: 90%;
        opacity: 0.5;
    }
    90% {
        left: 100%;
        opacity: 0.2;
    }
    100% {
        left: 130%;
        opacity: 0;
    }
}

/* Sparkle styles */
.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 1), 0 0 16px 4px rgba(255, 255, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    animation-name: sparkle-anim;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.sparkle.s1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle.s2 { top: 15%; left: 85%; animation-delay: 0.4s; }
.sparkle.s3 { top: 35%; left: 25%; animation-delay: 0.8s; }
.sparkle.s4 { top: 45%; left: 90%; animation-delay: 1.2s; }
.sparkle.s5 { top: 75%; left: 8%; animation-delay: 1.6s; }
.sparkle.s6 { top: 85%; left: 70%; animation-delay: 2s; }
.sparkle.s7 { top: 30%; left: 65%; animation-delay: 2.4s; }
.sparkle.s8 { top: 55%; left: 40%; animation-delay: 0.2s; }
.sparkle.s9 { top: 65%; left: 35%; animation-delay: 0.6s; }
.sparkle.s10 { top: 20%; left: 55%; animation-delay: 1s; }

.hero-text-wrapper {
    position: relative;
}

.hero-subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #cccccc;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: 0.3em;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.8),
        0 0 40px rgba(255, 0, 0, 0.6),
        0 0 80px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
    text-align: center;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #bbbbbb;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: #cccccc;
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.18) 0%, rgba(255, 0, 0, 0.07) 50%, transparent 70%);
    z-index: -1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    transform: skewX(-30deg);
    background: linear-gradient( to right, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.18) 30%, rgba(255, 0, 0, 0.35) 50%, rgba(255, 0, 0, 0.18) 70%, rgba(255, 0, 0, 0) 100% );
    filter: blur(2px);
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: slide-contained 3s linear infinite;
    z-index: -1;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-color: transparent;
    color: #ffffff;
}

.cta-button:hover::after {
    opacity: 0;
}

.cta-button:hover::before {
    opacity: 0;
    animation: none;
}

.about-section,
.pendulo-section {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.about-section {
    margin-top: 4rem;
}

.about-content h3 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
}

/* ==========================================================================
   PAGE HEADERS
   ========================================================================== */

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-family: 'Chopsic', sans-serif;
    font-weight: normal;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #cccccc;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 0, 0, 0.8),
        0 0 40px rgba(255, 0, 0, 0.6),
        0 0 80px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.page-description {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
}

.page-actions {
    margin-top: 1.5rem;
}

.add-event-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
}

.add-event-btn:hover {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   MUSIC SETS PAGE
   ========================================================================== */

.sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.set-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.set-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.set-image {
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #2a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #ff0000;
    transform: scale(1.1);
}

.set-info {
    padding: 1.5rem;
}

.set-info iframe {
    margin-top: 1.5rem;
}

.set-title {
    font-size: 1.3rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.set-description {
    color: #aaaaaa;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.set-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.duration, .genre {
    background: rgba(255, 0, 0, 0.2);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 15px;
}

.embed-placeholder {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    text-align: center;
    border: 1px dashed rgba(255, 0, 0, 0.3);
}

.embed-placeholder p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.embed-placeholder small {
    color: #888888;
    font-style: italic;
}

.streaming-links {
    text-align: center;
    max-width: 1000px;
    margin: 3rem auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.streaming-links h2 {
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 100%;
}

.platform-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #ff0000;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: #ff0000;
    color: #ffffff;
}

.platform-link i {
    margin-right: 0.5rem;
    font-size: 1.2em;
    display: inline-block;
}

/* ==========================================================================
   PRESS KIT PAGE
   ========================================================================== */

.press-content {
    max-width: 1000px;
    margin: 0 auto;
}

.press-section {
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.press-section h2 {
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.bio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #cccccc;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    text-align: center;
}

.press-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.press-photo:hover {
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.photo-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #2a0a0a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px dashed rgba(255, 0, 0, 0.3);
}

.photo-placeholder span {
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.photo-placeholder small {
    color: #888888;
    font-style: italic;
}

.download-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #ff0000;
    color: #ff0000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: #ff0000;
    color: #ffffff;
}

/* Photo Gallery Carousel Styles */
.photo-gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.photo-gallery {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.photo-gallery-track {
    display: flex;
    gap: 1.5rem;
}

.photo-gallery-track .photo-item {
    flex: 0 0 calc((100% / 3) - 1rem);
    box-sizing: border-box;
}

.photo-gallery-track .photo-item .press-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.gallery-nav {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    color: #ff0000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.tech-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item h3 {
    color: #ff0000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 0, 0, 0.6);
    position: relative;
    z-index: 10;
}

.info-item p {
    color: #cccccc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-item h3 {
    color: #ff0000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 0, 0, 0.6);
    position: relative;
    z-index: 10;
}

.contact-item p {
    color: #cccccc;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ff0000;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.download-section {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.download-pdf-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.download-pdf-btn:hover {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
}

.download-pdf-btn span {
    margin-right: 0.5rem;
}

.emoji {
    text-transform: none !important;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Twemoji Mozilla', 'Android Emoji', 'EmojiSymbols', sans-serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    letter-spacing: 0 !important;
    display: inline-block;
    margin-right: 0.5rem;
}

.download-note {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* ==========================================================================
   FUTURE DATES PAGE
   ========================================================================== */

.events-section {
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.events-section h2 {
    text-align: center;
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.day {
    font-size: 2rem;
    font-weight: 900;
    color: #ff0000;
    line-height: 1;
}

.month {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
}

.year {
    font-size: 0.8rem;
    color: #888888;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1.4rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.event-venue {
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-description {
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
}

.time, .price {
    background: rgba(255, 0, 0, 0.2);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
}

.event-actions {
    display: flex;
    align-items: center;
}

.ticket-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #ff0000;
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    background: #ff0000;
    color: #ffffff;
}

/* Past Event Styles */
.event-card.past-event {
    opacity: 0.6;
    border-color: rgba(150, 150, 150, 0.3);
}

.event-card.past-event:hover {
    border-color: rgba(150, 150, 150, 0.5);
    box-shadow: 0 0 20px rgba(150, 150, 150, 0.2);
}

.event-card.past-event .event-title {
    color: #888888;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(150, 150, 150, 0.6),
        0 0 30px rgba(150, 150, 150, 0.4);
}

.event-card.past-event .day {
    color: #888888;
}

.past-event-message {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(150, 150, 150, 0.2);
    border: 1px solid #888888;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: default;
}

/* Notification Section */
.notification-section {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.notify-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.notify-container h2 {
    color: #ff0000;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 0, 0, 0.6),
        0 0 30px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.notify-container p {
    color: #aaaaaa;
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #888888;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.notify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
}

.privacy-note {
    color: #888888;
    font-size: 0.8rem;
    line-height: 1.5;
}

.loading-events {
    text-align: center;
    color: #ffaa00;
    font-style: italic;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.error-message {
    text-align: center;
    color: #ff4444;
    font-style: italic;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

/* ==========================================================================
   BOTTOM NAVIGATION
   ========================================================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    flex: 1;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1.5rem 1rem;
    color: #cccccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.nav-link:hover,
.nav-link.active {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-top: 2px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1001;
    text-align: center;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 1);
    color: #ffffff;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 400px;
}

.mobile-menu-close {
    position: absolute;
    top: -2rem;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

/* Raise mobile menu close button higher on mobile to prevent overlap */
@media (max-width: 768px) {
    .mobile-menu-close {
        top: -4rem;
    }
}

.mobile-menu-close:hover {
    color: #ff0000;
    transform: scale(1.1);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 2rem;
}

.mobile-menu-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding: 1rem;
    border: 2px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: #ff0000;
    border-color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

.lightbox-image {
    max-width: calc(100vw - 4rem);
    max-height: calc(100vh - 8rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    z-index: 3001;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.8);
    border-color: #ff0000;
    color: #ffffff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 0, 0, 0.8);
    border-color: #ff0000;
    color: #ffffff;
}

.lightbox-prev {
    margin-left: 0;
}

.lightbox-next {
    margin-right: 0;
}

@media (max-width: 768px) {
    .lightbox-content {
        padding: 3rem 1rem;
    }
    
    .lightbox-image {
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 6rem);
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.8rem;
        width: 3rem;
        height: 3rem;
    }
    
    .lightbox-nav {
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .lightbox-close {
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 0, 0, 0.5);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Mobile Navigation with Icons */
.mobile-nav-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.8rem 0;
    width: 100%;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #cccccc;
    transition: all 0.3s ease;
    padding: 0.5rem;
    flex: 1;
    min-width: 0;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #ff0000;
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover .mobile-nav-icon,
.mobile-nav-item.active .mobile-nav-icon {
    transform: scale(1.1);
}

.mobile-nav-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.mobile-nav-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0.5rem 100px 0.5rem;
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .hero-logo-container {
        max-width: 90vw;
        background: transparent;
    }
    
    .sets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-date {
        margin-bottom: 1rem;
    }
    
    .event-actions {
        justify-content: center;
    }
    
    .platform-links {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-info,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-container {
        flex-direction: row;
        gap: 0;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-prev {
        left: 0.5rem;
    }

    .gallery-next {
        right: 0.5rem;
    }

    .photo-gallery {
        width: 100%;
    }

    .photo-gallery-track {
        gap: 0;
    }

    .photo-gallery-track .photo-item {
        flex: 0 0 100%;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav-icons {
        display: flex;
    }
    
    .language-selector.mobile-navbar {
        display: flex;
    }
    
    .pulse-light {
        opacity: 0.4;
    }
    
    .pulse-1 { width: 200px; height: 200px; }
    .pulse-2 { width: 150px; height: 150px; }
    .pulse-3 { width: 180px; height: 180px; }
    .pulse-4 { width: 120px; height: 120px; }
    
    /* Prevent scrolling on index page only */
    body.index-page {
        overflow: hidden;
        height: 100vh;
    }
}

@media (min-width: 769px) {
    .mobile-nav-icons {
        display: none;
    }
    
    .language-selector.homepage-mobile {
        display: none;
    }
    
    .language-selector:not(.homepage-mobile) {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .press-section,
    .notify-container {
        padding: 1rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notify-form {
        gap: 0.8rem;
    }
}

/* ==========================================================================
   LANGUAGE SELECTOR STYLES
   ========================================================================== */

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0 1rem;
    margin-left: auto;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.lang-btn.active {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.lang-btn.mobile {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    font-size: 1rem;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn.mobile:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
}

.lang-btn.mobile.active {
    background: #ff0000;
    border-color: #ff0000;
}

.language-selector.mobile {
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.language-selector.mobile-navbar {
    display: none;
    gap: 0.3rem;
    align-items: center;
    margin-right: 1rem;
    padding: 1.5rem 1rem;
    height: 100%;
}

.language-selector.homepage-mobile {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0;
}

.language-selector.homepage-mobile .lang-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(10px);
    border-radius: 0;
}

.language-selector.homepage-mobile .lang-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.language-selector.homepage-mobile .lang-btn.active {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .language-selector.homepage-mobile {
        display: flex;
        position: absolute;
        top:65%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .language-selector:not(.homepage-mobile) {
        display: none;
    }
}

.lang-btn.mobile-navbar {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn.mobile-navbar:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.lang-btn.mobile-navbar.active {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* Individual sparkle animations */
@keyframes sparkle-anim {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    15%, 40% {
        opacity: 1;
        transform: scale(1.2);
    }
    60% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Download Page Styles */
.download-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.download-message {
    background: rgba(26, 26, 26, 0.9);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
}

.download-message h1 {
    font-family: 'Chopsic', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.download-status {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.download-fallback {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.download-link {
    color: #ff0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #ffffff;
}

.download-info {
    background: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.download-info p {
    margin: 0.5rem 0;
    color: #ffffff;
    font-size: 0.95rem;
}

.back-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #ff0000;
    text-decoration: none;
    border: 1px solid #ff0000;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-link:hover {
    background: #ff0000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Language selector for fotos page */
.download-page-content .language-selector {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.download-page-content .lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    color: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: 50px;
}

.download-page-content .lang-btn:hover {
    background: #ff0000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}

.download-page-content .lang-btn.active {
    background: #ff0000;
    color: #ffffff;
}

/* No scroll for fotos page */
body.fotos-page {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

body[style*="overflow: hidden"] {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .download-page-content {
        padding: 1rem;
    }
    
    .download-message {
        padding: 2rem 1.5rem;
    }
    
    .download-message h1 {
        font-size: 2rem;
    }
    
    .download-status {
        font-size: 1rem;
    }
    
    .download-page-content .language-selector {
        margin-top: 1rem;
        gap: 0.3rem;
    }
    
    .download-page-content .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
}

 