        :root {
            --primary-blue: #001489;
            --primary-red: #E4002B;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .navbar {
            background: var(--primary-blue);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }

        .navbar-brand .liberta {
            color: var(--primary-blue);
            background: white;
            padding: 0 10px;
            border-radius: 5px;
        }

        .navbar-brand .eguale {
            color: var(--primary-red);
            background: white;
            padding: 0 10px;
            border-radius: 5px;
            margin-left: 5px;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
            transform: translateY(-2px);
        }

        .hero-section {
            background: var(--primary-blue);
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-top: 56px;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.3rem;
            opacity: 0.95;
        }

        .live-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin: -50px auto 50px;
            position: relative;
            z-index: 10;
        }

        .live-badge {
            background: var(--primary-red);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .live-badge i {
            margin-right: 8px;
        }

        .embed-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
            border-radius: 10px;
        }

        .embed-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .section-title {
            color: var(--primary-blue);
            font-weight: bold;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-red);
        }

        .info-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .info-card i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        footer {
            background: var(--primary-blue);
            color: white;
            padding: 40px 0 20px;
            margin-top: 80px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary-red);
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1.1rem;
            }
        }

        /* Responsive logo rules to prevent overflow on small / iOS screens */
        .logo,
        .logo-large {
            display: block;
            max-width: 100%;
            height: auto;
        }

        /* Navbar logo: keep it compact but responsive */
        .logo {
            width: 100%;
            max-width: 200px;
            background-color: white;
            padding: 10px;
            border-radius: 10px;
        }

        /* Large hero logo: scale with viewport width without overflowing */
            .logo-large {
                display: block;
                margin: 0 auto 18px;
                width: 80%;
                max-width: 80vw;
                height: auto;
        }
