:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #FF0000;
    --accent-glow: rgba(255, 0, 0, 0.3);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --gradient-hero: radial-gradient(circle at 50% 50%, #000000 0%, #050505 70%);
    --gradient-body: linear-gradient(180deg, #050505 0%, #111111 100%);
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.logo-loader {
    width: 150px;
    height: auto;
    animation: pulse-loader 1.5s ease-in-out infinite;
}

@keyframes pulse-loader {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Modal Styles - Global */
.modal {
    display: none !important;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex !important;
}

.modal-content {
    background: #111;
    border: 1px solid var(--accent-color);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.modal-content p {
    margin-bottom: 30px;
    color: #ccc;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.close-modal:hover {
    color: var(--accent-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-color);
    background-image: var(--gradient-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities - Faster Loading */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    z-index: 9000;
    border-bottom: 1px solid var(--card-border);
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 80px;
    /* Incrementato ulteriormente per visibilitÃ  immediata */
    width: auto;
    display: block;
}

/* Fallback text logo if needed */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.logo-text span {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

nav a:hover,
nav a.active {
    opacity: 1;
    color: #fff;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Sottomenu a tendina */
.has-submenu {
    position: relative;
}

.has-submenu .arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--card-border);
    border-top: 2px solid var(--accent-color);
    min-width: 220px;
    padding: 15px 0;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.has-submenu:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.has-submenu:hover .arrow {
    transform: rotate(180deg);
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 12px 25px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 1;
}

.submenu li a::after {
    display: none;
}

.submenu li a:hover {
    background: rgba(255, 0, 0, 0.1);
    color: var(--accent-color);
    padding-left: 30px;
}

@media (max-width: 768px) {
    .submenu {
        position: static;
        transform: none;
        visibility: visible;
        opacity: 1;
        display: none !important;
        /* Toggle via JS */
        background: transparent;
        border: none;
        padding-left: 20px;
        box-shadow: none;
        width: 100%;
    }

    .has-submenu.mobile-open .submenu {
        display: flex !important;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background: var(--gradient-hero);
    /* Ripristinato gradient originale */
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 ratio */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-big {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.2));
    animation: fadeInDown 1.2s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAwIDB2MjAwTTAgMTAwaDIwMCIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpfSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9zdmc+');
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.hero h1 {
    display: none;
    /* Rimosso come richiesto */
}

.hero p {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    padding: 10px 0;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1) 20%, rgba(255, 0, 0, 0.1) 80%, transparent);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
    width: 100%;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* Solid fallback */
    background: #000;
    /* Ensure start is black */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bgChange 3s forwards;
}

@keyframes bgChange {
    0% {
        background-color: #000000;
    }

    50% {
        background-color: #500000;
    }

    100% {
        background-color: #FF0000;
    }
}

#loader .logo-loader {
    width: 450px;
    /* Incrementato ulteriormente per il loader */
    height: auto;
    object-fit: contain;
    animation: logoFade 3s forwards;
}

@keyframes logoFade {
    0% {
        opacity: 1;
        /* Ora parte subito visibile */
        transform: scale(0.9);
    }

    80% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent-color);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    display: none;
    /* Removing the black reveal effect */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    background: #cc0000;
    /* Darker red on hover instead of black */
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}

.btn-secondary::before {
    background: #fff;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Sections General */
section {
    padding: 100px 5%;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Partners */
.partners {
    background: #000;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 60px 5%;
}

.partners h2 {
    font-size: 1rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

/* Services Overview (Index) */
.services-overview {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Detail Pages */
.page-header {
    position: relative;
    padding: 180px 5% 120px;
    text-align: center;
    background: radial-gradient(circle at center, #2a0000 0%, #050505 80%);
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--header-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.service-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 500px;
}

/* Contact Page */
.contact-container {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 60px;
    backdrop-filter: blur(10px);
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

/* Fidbak Promo Card */
.fidbak-promo {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(5, 5, 5, 0.4) 100%) !important;
    border: 1px solid var(--accent-color) !important;
    padding: 40px !important;
    border-radius: 20px !important;
    margin-bottom: 50px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fidbak-promo:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 0, 0, 0.1);
}

.fidbak-promo h3 {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 800;
}

.fidbak-promo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fidbak-promo .btn {
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1rem;
}

/* Disclaimer Mission Section */
.disclaimer-mission {
    padding: 80px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.05) 50%, #000 100%);
    text-align: center;
    border-top: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.disclaimer-mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg,
            transparent 0%,
            transparent 35%,
            rgba(255, 0, 0, 0.1) 45%,
            rgba(255, 0, 0, 0.2) 50%,
            rgba(255, 0, 0, 0.1) 55%,
            transparent 65%,
            transparent 100%);
    background-size: 300% 100%;
    animation: red-band-move 160s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.disclaimer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.disclaimer-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    /* Cambiato da 50px a squadrato */
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--accent-glow);
}

.disclaimer-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px var(--accent-glow);
    background: #e60000;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-info {
    margin-top: 10px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 10px 0;
}

.social-links a {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 40px;
        border-bottom: 1px solid var(--card-border);
        display: none;
        height: 100vh;
    }

    nav.active {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-container {
        padding: 30px;
        gap: 50px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Modal styles moved to top */

/* Modal styles moved to top */

/* Page specific: Format Label Style */
.formats-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.format-card {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.format-card:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.format-image {
    width: 100%;
    height: 100%;
}

.format-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.format-card:hover .format-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.format-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
    text-align: center;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.format-card:hover .format-info {
    transform: translateY(0);
}

.format-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.format-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.format-card:hover .format-info p {
    opacity: 1;
}

@media (max-width: 768px) {
    .formats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Dynamic Refinement: Animated Red Band --- */
.label-header::after {
    background: linear-gradient(110deg,
            rgba(5, 5, 5, 0.8) 0%,
            rgba(5, 5, 5, 0.6) 35%,
            rgba(255, 0, 0, 0.15) 45%,
            rgba(255, 0, 0, 0.3) 50%,
            rgba(255, 0, 0, 0.15) 55%,
            rgba(5, 5, 5, 0.6) 65%,
            rgba(5, 5, 5, 0.8) 100%) !important;
    background-size: 300% 100% !important;
    animation: red-band-move 160s ease-in-out infinite !important;
    opacity: 1 !important;
}

@keyframes red-band-move {
    0% {
        background-position: 50% 50%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 50% 50%;
    }

    75% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 50% 50%;
    }
}

.footer-logo {
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-logo:hover {
    transform: scale(1.05);
}