:root {
    --primary-green: #F5FF00;
    --electric-blue: #0096FF;
    --vivid-red: #FF3131;
    --body-bg: #54f880;
    --wrapper-bg: #0F1F14;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-white: #FFFFFF;
    --text-grey: #AAAAAA;
    --wrapper-width: 1400px;
    --section-padding: 6rem 4rem;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(343deg, #54f880, #2dd860, #1abc6e, #dddd1d, #3deb7c, #54f880);
    background-size: 400% 400%;
    animation: bgShift 12s ease infinite;
}

@keyframes bgShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 25%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 0% 75%; }
    100% { background-position: 0% 50%; }
}

.wrapper {
    max-width: var(--wrapper-width);
    margin: 0 auto;
    background: var(--wrapper-bg);
    position: relative;
    /* Removed overflow: hidden to fix vertical scroll */
    min-height: 100vh;
    box-shadow: 0 0 100px rgba(0,0,0,1);
}

/* Header & Nav */
header {
    text-align: center;
}

/* Logo Section — background image + instruments + logo */
.logo-section {
    background: url('assets/backgroundHeader.png') center/cover no-repeat;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    min-height: 200px;
}

/* Center Logo */
.header-logo {
    max-height: 180px;
    width: auto;
    position: relative;
    z-index: 2;
    animation: logoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.4));
}

/* Header Social Icons */
.header-socials {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 10;
}

.h-social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    padding: 10px;
}

.h-social-icon:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: var(--primary-green);
    color: var(--primary-green);
    box-shadow: 0 0 20px rgba(245, 255, 0, 0.3);
    background: rgba(245, 255, 0, 0.1);
}

.h-social-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.4)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 35px rgba(57, 255, 20, 0.6)); }
}

/* Instrument images */
.header-instrument {
    max-height: 160px;
    width: auto;
    position: relative;
    z-index: 1;
}

.instrument-left {
    animation: floatLeft 4s ease-in-out infinite;
}

.instrument-right {
    animation: floatRight 4s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

/* Navigation Bar */
.main-menu {
    background: #17191D;
    padding: 0.9rem 2rem;
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.main-menu a {
    text-decoration: none;
    color: #F5FF00;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.main-menu a:hover {
    color: #B8FDBC;
    text-shadow: 0 0 12px rgba(184, 253, 188, 0.5);
}

/* Dropdown Styles */
.main-menu li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #17191D;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    padding: 0.5rem 0;
    border-radius: 8px;
    border: 1px solid rgba(245, 255, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    display: block !important;
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
    color: #fff !important;
    text-align: center;
}

.dropdown a:hover {
    background: rgba(245, 255, 0, 0.1);
    color: #F5FF00 !important;
}

.arrow {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Section Common */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.section h3:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--vivid-red);
    margin-top: 10px;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 65vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-content span {
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

/* Owner Marquee */
.owner-marquee {
    background: var(--primary-green);
    color: #000;
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(245, 255, 0, 0.4);
}

.marquee-content {
    display: inline-flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.marquee-dot {
    margin: 0 3rem;
    color: var(--vivid-red);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Section Header & Controls */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    margin-bottom: 0;
}

.scroll-controls {
    display: flex;
    gap: 1rem;
}

.scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.scroll-btn:hover {
    background: var(--primary-green);
    color: black;
    border-color: var(--primary-green);
    transform: scale(1.1);
}

/* Artists */
.artists-section {
    background: #091510;
}

/* News */
.news-section {
    background: #081209;
}

.news-feed-container {
    background: rgb(28 27 27);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2rem;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.artist-scroll-container {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.artist-card {
    min-width: 350px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

.artist-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.artist-info {
    padding: 2rem;
}

.artist-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.artist-info p {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
}

/* About */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-grey);
}

.accent-list {
    margin-top: 2rem;
    list-style: none;
}

.accent-list li {
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.accent-list li:before {
    content: '▶';
    color: var(--vivid-red);
    margin-right: 15px;
    font-size: 0.8rem;
}

.rounded-corners {
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    width: 100%;
}

/* Networks */
.networks-section {
    background: #081209;
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.network-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.network-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.network-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.network-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.network-card span {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
}

.network-card:nth-child(1) .network-icon { color: #1877F2; }
.network-card:nth-child(2) .network-icon { color: #E4405F; }
.network-card:nth-child(3) .network-icon { color: #FF0000; }

/* Traditional Section */
.traditional-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    background: #091510;
    align-items: center;
}

.traditional-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.traditional-text {
    padding: 3rem;
}

.traditional-text p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.traditional-text p:last-child {
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-brand {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.contact-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: #9FF4FD !important;
    letter-spacing: 1px;
}

.contact-location,
.contact-email {
    font-size: 1.1rem;
    color: var(--text-white) !important;
    font-weight: 600;
}

.mailto-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    text-align: center;
}

.mailto-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(57, 255, 20, 0.6);
}

/* Radio Player Fixed */
#lunaradio {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1000px, 92%);
    z-index: 10000;
    background: rgba(23, 25, 29, 0.95) !important;
    backdrop-filter: blur(20px);
    border-radius: 80px;
    border: 1px solid rgba(245, 255, 0, 0.25);
    box-shadow: 0 15px 45px rgba(0,0,0,0.8), 0 0 0 1px rgba(245, 255, 0, 0.1) inset;
    overflow: hidden;
    height: 70px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

#lunaradio:hover {
    border-color: rgba(245, 255, 0, 0.5);
    box-shadow: 0 15px 50px rgba(0,0,0,0.9), 0 0 15px rgba(245, 255, 0, 0.1);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #050a07 0%, #020503 100%);
    padding: 0;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    animation: footerGlow 4s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* 3-Column Grid */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr auto 1fr;
    align-items: stretch;
    padding: 4rem 3rem;
    gap: 0;
}

/* Individual Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

/* Left Column */
.footer-col-left {
    gap: 1.8rem;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo-img {
    max-height: 130px;
    width: auto;
    filter: drop-shadow(0 0 18px rgba(57, 255, 20, 0.35));
    transition: var(--transition);
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.6));
    transform: scale(1.05);
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    transition: var(--transition);
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.15);
}

.social-fb:hover {
    color: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
    background: rgba(24, 119, 242, 0.1);
}

.social-ig:hover {
    color: #E4405F;
    border-color: #E4405F;
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.4);
    background: rgba(228, 64, 95, 0.1);
}

.social-yt:hover {
    color: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    background: rgba(255, 0, 0, 0.1);
}

.social-tk:hover {
    color: #00F2EA;
    border-color: #00F2EA;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
    background: rgba(0, 242, 234, 0.1);
}

/* Animated Column Dividers */
.footer-col-divider {
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(57, 255, 20, 0.15) 10%,
        rgba(57, 255, 20, 0.5) 50%,
        rgba(57, 255, 20, 0.15) 90%,
        transparent 100%
    );
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.15);
}

.footer-col-divider::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.8), transparent);
    animation: dividerShimmer 3s ease-in-out infinite;
}

@keyframes dividerShimmer {
    0% { top: -60%; }
    100% { top: 160%; }
}

/* Center Column — Mission Text */
.footer-col-center {
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem 2.5rem;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-green);
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.footer-mission {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
    max-width: 380px;
}

.footer-accent-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--vivid-red), var(--primary-green));
    border-radius: 3px;
    margin: 0 auto;
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { width: 60px; opacity: 0.7; }
    50% { width: 100px; opacity: 1; }
}

/* Right Column */
.footer-col-right {
    gap: 1.2rem;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.app-badge {
    display: block;
    transition: var(--transition);
    opacity: 0.8;
}

.app-badge svg {
    height: 40px;
    width: auto;
}

.app-badge:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.03);
}

.footer-contact-line {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.footer-contact-line:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer Bottom — Copyright */
.footer-bottom {
    padding: 0 3rem 10rem;
    text-align: center;
}

.footer-bottom-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), rgba(255, 255, 255, 0.08), rgba(57, 255, 20, 0.2), transparent);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Hamburger Toggle — hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #9FF4FD;
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .about-container, .traditional-layout {
        grid-template-columns: 1fr;
    }
    .about-container { gap: 3rem; }
    .hero { height: 50vh; min-height: 350px; }
    .hero-content h2 { font-size: 2.5rem; }
    .section { padding: 4rem 2rem; }
    .section h3 { font-size: 2rem; }
    .traditional-text { padding: 3rem; }
    .contact-card { padding: 3rem 2rem; }
    .networks-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    /* Hamburger visible */
    .menu-toggle { display: block; }

    .main-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 1.5rem;
        position: relative;
    }

    .main-menu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
        border-top: 1px solid rgba(159, 244, 253, 0.15);
        box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    }

    .main-menu ul.open {
        display: flex;
    }

    .main-menu li {
        text-align: center;
    }

    .main-menu a {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .main-menu li:last-child a { border-bottom: none; }

    /* Hamburger X animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Logo Section */
    .logo-section {
        padding: 1.5rem 0.5rem;
        gap: 0.3rem;
        min-height: 140px;
        flex-direction: column;
    }
    .header-socials {
        position: static;
        transform: none;
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    .header-logo { max-height: 100px; }
    .header-instrument { max-height: 80px; }

    /* Hero */
    .hero { height: 45vh; min-height: 280px; }
    .hero-content h2 { font-size: 1.6rem; padding: 0 1rem; }

    /* Sections */
    .section { padding: 3rem 1.2rem; }
    .section h3 { font-size: 1.6rem; margin-bottom: 2rem; }
    .section h3:after { width: 50px; height: 3px; }

    /* Artists */
    .artist-card { min-width: 280px; }
    .artist-card img { height: 320px; }
    .artist-info { padding: 1.2rem; }
    .artist-info h4 { font-size: 1.1rem; }

    /* About */
    .about-container { gap: 2rem; }
    .about-text p { font-size: 1rem; }
    .rounded-corners { border-radius: 20px; }

    /* Networks */
    .networks-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .network-card { padding: 2rem 1.5rem; border-radius: 16px; }
    .network-icon { width: 50px; height: 50px; }

    /* Traditional */
    .traditional-layout { border-radius: 20px; }
    .traditional-text { padding: 2rem 1.5rem; }
    .traditional-layout img { max-height: 250px; object-fit: cover; width: 100%; }

    /* Contact */
    .contact-card {
        padding: 2rem 1.2rem;
        border-radius: 20px;
    }
    #contact-form input, #contact-form textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* Player */
    #lunaradio {
        bottom: 1rem;
        width: 96%;
        height: 60px;
        border-radius: 40px;
    }

    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
    .footer-col { padding: 1rem 0; }
    .footer-col-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent);
    }
    .footer-col-divider::after {
        width: 60%;
        height: 100%;
        top: 0;
        left: -60%;
        background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.8), transparent);
        animation: dividerShimmerH 3s ease-in-out infinite;
    }
    @keyframes dividerShimmerH {
        0% { left: -60%; }
        100% { left: 160%; }
    }
    .footer-logo-img { max-height: 80px; }
    .footer-socials { gap: 1rem; }
    .social-icon { width: 38px; height: 38px; padding: 8px; }
    .footer-mission { font-size: 0.9rem; }
    .footer-apps { flex-direction: row; }
    .footer-bottom { padding: 0 1.5rem 8rem; }
    .footer-copyright { font-size: 0.7rem; padding: 0 1rem; }
}

/* Responsive — Small phones */
@media (max-width: 400px) {
    .header-instrument { display: none; }
    .header-logo { max-height: 90px; }
    .hero-content h2 { font-size: 1.3rem; }
    .section h3 { font-size: 1.4rem; }
    .network-card { padding: 1.5rem 1rem; }
}
