        /* IDENTYCZNY UKŁAD TŁA regulaminu ORAZ ZABLOKOWANY SCROLL */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        body { 
            font-family: 'Inter', sans-serif; 
            /* Dokładnie ten sam nasycony, zielono-niebieski gradient */
            background: linear-gradient(135deg, #021f38 0%, #05342a 50%, #0b5334 100%);
            color: #e1e1e6; 
            display: flex; 
            flex-direction: column;
            justify-content: center; 
            align-items: center; 
            box-sizing: border-box; 
        }
        
/* ZAKTUALIZOWANA wysoka KARTA DIV CARD */
.card { 
    background: #12141d; 
    padding: 35px; 
    border-radius: 24px; 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); 
    max-width: 420px; 
    width: 90%; 
    /* Zmiana na stałą wysokość */
    height: 449px; 
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.1); 
    box-sizing: border-box;
    text-align: center;
}

        h2 { 
            margin: 0 0 6px 0; 
            color: #fff; 
            font-size: 28px; 
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .login-subtitle {
            font-size: 12px; 
            color: #586570;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            font-weight: 800;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding-bottom: 10px;
            flex-shrink: 0; /* Zapobiega kurczeniu nagłówka */
        }


		/* ZAKTUALIZOWANY KONTENER NA TREŚĆ REGULAMINU (PRZEWIJANY)*/
.rules-content {
    text-align: left;
    overflow-y: auto;
    padding-right: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #b3b3b8;
    
    /* Wypełnia całą przestrzeń karty między nagłówkiem a stopką */
    flex: 1; 
    
    /* Zapobiega nachodzeniu tekstu na padding dolny karty */
    margin-bottom: 10px; 
}

        /* Stylizacja scrollbara (ładny, ciemny, pasujący do designu) */
        .rules-content::-webkit-scrollbar {
            width: 6px;
        }
        .rules-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
        }
        .rules-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        .rules-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .rules-content h3 {
            color: #fff;
            font-size: 15px;
            margin-top: 20px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .rules-content p {
            margin: 0 0 12px 0;
        }

        .rules-content ul {
            margin: 0 0 12px 0;
            padding-left: 20px;
        }

        .warning-box {
            background: rgba(230, 0, 18, 0.1);
            color: #ff4d5a;
            border: 1px solid rgba(230, 0, 18, 0.2);
            padding: 12px;
            border-radius: 12px;
            margin: 15px 0;
            font-weight: 500;
        }
        /* -------------------------------------------------------- */
        
        .footer { margin-top: 25px; font-size: 12px; color: rgba(255, 255, 255, 0.4); text-align: center; flex-shrink: 0;}
        .footer a { color: #8a949d; text-decoration: none; transition: color 0.2s; }
        .footer a:hover { color: #fff; }