
        * {
            box-sizing: border-box;
        }


        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #101820;
            color: white;
        }

        header {
            text-align: center;
            padding: 30px 20px;
        }

        header h1 {
            margin: 0;
            font-size: 2.5em;
        }

        header p {
            color: #bbb;
            margin-top: 8px;
        }

        .special 
        {
            font-size: 1.5em;
            font-family: "Story Script", sans-serif;
            font-weight: 400;
            font-style: normal;
        }
        

        #partidos {
            max-width: 900px;
            margin: auto;
            padding: 20px;
        }

        .partido {
            background: white;
            color: #222;
            border-radius: 12px;
            margin-bottom: 15px;
            padding: 20px;

            box-shadow: 0 3px 10px rgba(0,0,0,0.25);
        }

        .equipos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;

            font-size: 22px;
            font-weight: bold;
        }

        .marcador {
            font-size: 32px;
            min-width: 100px;
            text-align: center;
        }

        .estado {
            text-align: center;
            margin-top: 15px;
            font-weight: bold;
        }

        .en-juego {
            color: #d60000;
        }

        .finalizado {
            color: #16803c;
        }

        .pendiente {
            color: #777;
        }

        .suspendido {
            color: #d97706;
        }

        .error {
            text-align: center;
            padding: 30px;
            color: #ff8080;
        }

        @media (max-width: 600px) {

            .equipos {
                gap: 10px;
                font-size: 17px;
            }

            .marcador {
                font-size: 25px;
                min-width: 70px;
            }

        }

        .logo
        {
            width: 250px;
        }

        .hora 
        {
            text-align: center;
            color: #555;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }