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

        .gorna-czesc-strony {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #f7fafc;
        }

        .glowny-header-obszar {
            background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .glowny-header-obszar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.8;
        }

        .pasek-gorny-nawigacja {
            background: rgba(0,0,0,0.2);
            padding: 0.75rem 0;
            backdrop-filter: blur(5px);
        }

        .maksymalna-szerokosc-kontenera {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .lista-menu-gornego {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2.5rem;
        }

        .link-menu-nawigacji {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .link-menu-nawigacji:hover {
            color: #fbbf24;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        }

        .glowny-pasek-nawigacyjny {
            padding: 1.5rem 0;
            position: relative;
            z-index: 10;
        }

        .nawigacja-wewnetrzna {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-witryny {
            font-size: 1.75rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .przycisk-hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 12px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .przycisk-hamburger:hover {
            background: rgba(255,255,255,0.1);
        }

        .linia-hamburgera {
            width: 28px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .menu-glowne-lista {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .sekcja-banner-hero {
            text-align: center;
            padding: 6rem 0;
            position: relative;
            z-index: 5;
        }

        .sekcja-banner-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        .tytul-strony-glowny {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            position: relative;
            z-index: 10;
        }

        .podtytul-hero-banner {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.7;
            position: relative;
            z-index: 10;
        }

        .siatka-kluczowych-cech {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            position: relative;
            z-index: 10;
        }

        .karta-cechy {
            background: rgba(255, 255, 255, 0.15);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }

        .karta-cechy:hover {
            transform: translateY(-8px) scale(1.02);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .ikona-cechy {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
        }

        .tytul-cechy {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .opis-cechy {
            opacity: 0.9;
            font-size: 1rem;
        }

        .przycisk-cta-glowny {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
            margin-top: 3rem;
            font-size: 1.1rem;
            position: relative;
            z-index: 10;
        }

        .przycisk-cta-glowny:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
            background: linear-gradient(45deg, #d97706, #b45309);
        }

        .sekcja-ranking-kasyn {
            padding: 5rem 0;
            background: white;
            position: relative;
        }

        .naglowek-sekcji-ogolny {
            text-align: center;
            margin-bottom: 4rem;
        }

        .tytul-sekcji-ogolny {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #4338ca, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .opis-sekcji-ogolny {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .siatka-kart-kasyn {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .karta-kasyna {
            background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .karta-kasyna::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
        }

        .karta-kasyna:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.25);
        }

       .naglowek-kasyna {
   padding: 2.5rem 2rem;
   color: white;
   text-align: center;
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
}

@media (min-width: 768px) {
   .naglowek-kasyna {
       flex-direction: row;
       justify-content: space-between;
       align-items: center;
       text-align: left;
   }
}

.logo-kasyna {
   background: rgba(255,255,255,0.2);
   padding: 1.2rem 2.5rem;
   border-radius: 15px;
   font-weight: 800;
   backdrop-filter: blur(10px);
   font-size: 1.4rem;
   border: 1px solid rgba(255,255,255,0.3);
   flex-shrink: 0;
}

.informacje-bonusu {
   flex: 1;
   min-width: 0;
   margin: 0 1rem;
}

@media (max-width: 767px) {
   .informacje-bonusu {
       margin: 1rem 0;
       text-align: center;
   }
}

.kwota-bonusu {
   font-size: 1.3rem;
   font-weight: 800;
   margin-bottom: 0.5rem;
   text-shadow: 0 2px 10px rgba(0,0,0,0.3);
   line-height: 1.2;
}

.dodatki-bonusu {
   font-size: 1rem;
   opacity: 0.9;
   line-height: 1.3;
}

.przycisk-graj-teraz {
   background: linear-gradient(45deg, #f59e0b, #d97706);
   color: white;
   padding: 1.2rem 2.5rem;
   border-radius: 12px;
   text-decoration: none;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   transition: all 0.3s ease;
   box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
   flex-shrink: 0;
   white-space: nowrap;
}

        .przycisk-graj-teraz:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
        }

        .tresc-kasyna {
            background: white;
            padding: 2.5rem 2rem;
        }

        .nazwa-kasyna {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
        }

        .lista-funkcji-kasyna {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .lista-funkcji-kasyna li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            color: #4a5568;
            line-height: 1.6;
        }

        .lista-funkcji-kasyna li::before {
            content: "⚡";
            position: absolute;
            left: 0;
            color: #4338ca;
            font-size: 1.2rem;
        }

        .opis-kasyna-szczegoly {
            color: #4a5568;
            line-height: 1.7;
            font-style: italic;
        }

        .sekcja-informacji-wyplat {
            background: #f8fafc;
            padding: 5rem 0;
        }

        .blok-informacyjny {
            background: #e0f2fe;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2.5rem 0;
            border-left: 6px solid #0ea5e9;
            box-shadow: 0 8px 30px rgba(14, 165, 233, 0.1);
        }

        .blok-informacyjny h3 {
            color: #0c4a6e;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .blok-informacyjny p {
            color: #0f172a;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .lista-punktow {
            list-style: none;
            margin: 1.5rem 0;
        }

        .lista-punktow li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: #0f172a;
        }

        .lista-punktow li::before {
            content: "💼";
            position: absolute;
            left: 0;
        }

        .sekcja-kluczowych-cech {
            background: white;
            padding: 5rem 0;
        }

        .siatka-cech {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }

        .karta-cechy-szczegolowa {
            background: #f8fafc;
            border-radius: 20px;
            padding: 2.5rem;
            border-left: 5px solid #4338ca;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .karta-cechy-szczegolowa:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .sekcja-metodologii {
            background: #f8fafc;
            padding: 5rem 0;
        }

        .blok-metodologii {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .blok-metodologii h4 {
            color: #1a202c;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .numer-kroku {
            background: linear-gradient(45deg, #4338ca, #7c3aed);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

        .tabela-porownawcza {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            margin: 3rem 0;
        }

        .tabela-porownawcza th,
        .tabela-porownawcza td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        .tabela-porownawcza th {
            background: linear-gradient(135deg, #4338ca, #7c3aed);
            color: white;
            font-weight: 700;
        }

        .sekcja-recenzji-szczegolowych {
            background: white;
            padding: 5rem 0;
        }

        .karta-recenzji {
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
            border-radius: 25px;
            margin-bottom: 3rem;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            border: 1px solid #e0f2fe;
        }

        .naglowek-recenzji {
            background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
            color: white;
            padding: 2.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .tresc-recenzji {
            padding: 2.5rem;
        }

        .sekcja-przewodnika {
            background: #f8fafc;
            padding: 5rem 0;
        }

        .krok-przewodnika {
            background: white;
            border-radius: 20px;
            margin-bottom: 2.5rem;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .naglowek-kroku {
            background: linear-gradient(135deg, #4338ca, #7c3aed);
            color: white;
            padding: 2.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .tresc-kroku {
            padding: 2.5rem;
        }

        .sekcja-metod-platnosci {
            background: white;
            padding: 5rem 0;
        }

        .kategoria-platnosci {
            margin: 3rem 0;
        }

        .siatka-platnosci {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }

        .karta-platnosci {
            background: #f8fafc;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            border: 1px solid #e0f2fe;
        }

        .karta-platnosci:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .logo-platnosci {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .logo-platnosci.blik { background: linear-gradient(45deg, #1e40af, #3b82f6); }
        .logo-platnosci.skrill { background: linear-gradient(45deg, #7b2cbf, #9333ea); }
        .logo-platnosci.neteller { background: linear-gradient(45deg, #00ac41, #22c55e); }
        .logo-platnosci.bitcoin { background: linear-gradient(45deg, #f7931a, #fbbf24); }

        .informacje-platnosci h4 {
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: #1a202c;
            font-size: 1.1rem;
        }

        .informacje-platnosci p {
            color: #4a5568;
            line-height: 1.6;
        }

        .sekcja-eksperta {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 5rem 0;
        }

        .profil-eksperta {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .awatar-eksperta {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #4338ca, #7c3aed);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 800;
            box-shadow: 0 8px 25px rgba(67, 56, 202, 0.3);
        }

        .siatka-porad {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .karta-porady {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            border-top: 4px solid #4338ca;
        }

        .numer-porady {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #4338ca, #7c3aed);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(67, 56, 202, 0.3);
        }

        .sekcja-faq {
            background: white;
            padding: 5rem 0;
        }

        .lista-faq {
            max-width: 900px;
            margin: 0 auto;
        }

        .pytanie-faq {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .pytanie-faq:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .naglowek-pytania {
            padding: 2rem;
            background: #f8fafc;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .naglowek-pytania:hover {
            background: #e0f2fe;
        }

        .numer-pytania {
            background: linear-gradient(45deg, #4338ca, #7c3aed);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
        }

        .odpowiedz-faq {
            padding: 2rem;
            background: white;
            display: none;
        }

        .pytanie-faq.active .odpowiedz-faq {
            display: block;
        }

        .pytanie-faq.active .wskaznik-rozwijania {
            transform: rotate(45deg);
        }

        .wskaznik-rozwijania {
            font-size: 1.8rem;
            color: #4338ca;
            transition: transform 0.3s ease;
            font-weight: 300;
        }

        .stopka-witryny {
            background: #1a202c;
            color: white;
            padding: 4rem 0 2rem;
        }

        .siatka-stopki {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .kolumna-stopki h4 {
            color: #f7fafc;
            margin-bottom: 1.5rem;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .kolumna-stopki ul {
            list-style: none;
        }

        .kolumna-stopki li {
            margin-bottom: 0.8rem;
        }

        .kolumna-stopki a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .kolumna-stopki a:hover {
            color: #4338ca;
        }

        .prawa-autorskie {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid #4a5568;
            color: #cbd5e0;
        }

        @media (max-width: 768px) {
            .przycisk-hamburger {
                display: flex;
            }
            
            .menu-glowne-lista {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(67, 56, 202, 0.95);
                flex-direction: column;
                padding: 1.5rem;
                backdrop-filter: blur(10px);
                border-radius: 0 0 15px 15px;
                z-index: 100;
            }
            
            .menu-glowne-lista.active {
                display: flex;
            }
            
            .tytul-strony-glowny {
                font-size: 2.5rem;
            }
            
            .siatka-kart-kasyn {
                grid-template-columns: 1fr;
            }
            
            .naglowek-recenzji {
                flex-direction: column;
                text-align: center;
            }
            
            .profil-eksperta {
                flex-direction: column;
                text-align: center;
            }

            .nawigacja-wewnetrzna {
                position: relative;
            }
        }

        .niewidoczny-element {
            position: absolute;
            left: -10000px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        .sekcja-ranking-kasyn-nowa {
   padding: 5rem 0;
   background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
   position: relative;
}

.siatka-kart-kasyn-nowa {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   margin: 4rem 0;
}

.karta-kasyna-nowa {
   background: white;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 8px 30px rgba(0,0,0,0.12);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   border: 1px solid #e0f2fe;
}

.karta-kasyna-nowa::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 5px;
   background: linear-gradient(90deg, #4338ca, #7c3aed, #4338ca);
}

.karta-kasyna-nowa:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.naglowek-kasyna-nowy {
   background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
   padding: 2.5rem 2rem;
   color: white;
   text-align: center;
   position: relative;
}

.logo-kasyna-nowy {
   background: rgba(255,255,255,0.2);
   padding: 1rem 2rem;
   border-radius: 12px;
   font-weight: 800;
   backdrop-filter: blur(10px);
   font-size: 1.4rem;
   border: 1px solid rgba(255,255,255,0.3);
   margin-bottom: 1.5rem;
   display: inline-block;
}

.informacje-bonusu-nowe {
   margin: 1.5rem 0;
   min-height: 100px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.kwota-bonusu-nowa {
   font-size: 1.3rem;
   font-weight: 800;
   margin-bottom: 0.8rem;
   text-shadow: 0 2px 10px rgba(0,0,0,0.3);
   line-height: 1.2;
   max-height: 60px;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
}

.dodatki-bonusu-nowe {
   font-size: 1rem;
   opacity: 0.9;
   line-height: 1.3;
   max-height: 25px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.przycisk-graj-teraz-nowy {
   background: linear-gradient(45deg, #f59e0b, #d97706);
   color: white;
   padding: 1.2rem 2.5rem;
   border-radius: 12px;
   text-decoration: none;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   transition: all 0.3s ease;
   box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
   margin-top: 1rem;
}

.przycisk-graj-teraz-nowy:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.tresc-kasyna-nowa {
   padding: 2rem;
}

.nazwa-kasyna-nowa {
   font-size: 1.5rem;
   font-weight: 700;
   color: #1a202c;
   margin-bottom: 1.5rem;
   text-align: center;
}

.lista-funkcji-kasyna-nowa {
   list-style: none;
   margin: 0;
}

.lista-funkcji-kasyna-nowa li {
   margin-bottom: 1rem;
   padding-left: 2rem;
   position: relative;
   color: #4a5568;
   line-height: 1.6;
   font-size: 0.95rem;
}

.lista-funkcji-kasyna-nowa li::before {
   content: "⚡";
   position: absolute;
   left: 0;
   color: #4338ca;
   font-size: 1.1rem;
}

.lista-funkcji-kasyna-nowa li:last-child {
   margin-bottom: 0;
}

@media (max-width: 768px) {
   .siatka-kart-kasyn-nowa {
       grid-template-columns: 1fr;
       gap: 1.5rem;
       margin: 2rem 0;
   }
   
   .naglowek-kasyna-nowy {
       padding: 2rem 1.5rem;
   }
   
   .kwota-bonusu-nowa {
       font-size: 1.2rem;
   }
   
   .logo-kasyna-nowy {
       font-size: 1.2rem;
       padding: 0.8rem 1.5rem;
   }
}