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

        html {
            background: #0b0b0b;
        }

        body {
            min-height: 100vh;
            background: #0b0b0b;
            color: #fff;
            font-family: "Poppins", sans-serif;
        }

.header{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:18px 20px;
    background:linear-gradient(90deg,#000,#1a0000,#000);
    border-bottom:1px solid #222;
}

.header::after{
    display:none;
}

        .logo {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo a {
            display: block;
        }

        .logo img {
            display: block;
            width: auto;
            height: 55px;
            max-width: 100%;
        }

        .agenda-frame-wrapper {
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .agenda-frame-wrapper iframe {
            display: block;
            width: 100%;
            height: 500px;
            border: 0;
            outline: 0;
            background: #0b0b0b;
        }

        .wrapper {
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .section-title {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title h2 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title h2 span {
            color: #ff0000;
        }

        .section-title .line {
            width: 80px;
            height: 4px;
            margin: 12px auto 0;
            border-radius: 3px;
            background: rgba(255, 0, 0, 0.6);
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .card {
            position: relative;
            overflow: hidden;
            border: 1px solid #1f1f1f;
            border-radius: 14px;
            background: #111;
            transition:
                transform 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-6px);
            border-color: #ff0000;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.35);
        }

        .card img {
            display: block;
            width: 100%;
            height: 120px;
            padding: 10px;
            background: #000;
            object-fit: contain;
        }

        .card-content {
            padding: 15px;
            text-align: center;
        }

        .card-content h3 {
            margin-bottom: 10px;
            font-size: 16px;
            font-weight: 500;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 14px;
            border: 1px solid #ff0000;
            border-radius: 6px;
            background: transparent;
            color: #ff0000;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition:
                background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease;
        }

        .btn:hover {
            background: #ff0000;
            color: #fff;
            box-shadow: 0 0 10px #ff0000;
        }

        .live {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 2;
            padding: 4px 8px;
            border-radius: 5px;
            background: #ff0000;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
        }

        .footer {
            margin-top: 40px;
            padding: 20px;
            border-top: 1px solid #222;
            color: #fff;
            font-weight: 600;
            text-align: center;
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .logo img {
                height: 48px;
            }

            .agenda-frame-wrapper {
                margin: 25px auto;
                padding: 0 12px;
            }

            .agenda-frame-wrapper iframe {
                height: 500px;
            }

            .wrapper {
                margin: 30px auto;
                padding: 0 15px;
            }

            .section-title {
                margin-bottom: 30px;
            }

            .section-title h2 {
                font-size: 25px;
                line-height: 1.3;
            }

            .grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 15px;
            }

            .card img {
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 44px;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .card img {
                height: 120px;
            }

            .section-title h2 {
                font-size: 22px;
            }
        }