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

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

       .naglowek-glowny-obszar {
           background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
           color: white;
           position: relative;
           overflow: hidden;
           min-height: 100vh;
       }

       .naglowek-glowny-obszar::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
           opacity: 0.3;
       }

       .górna-nawigacja-pasek {
           background: rgba(0,0,0,0.15);
           padding: 1rem 0;
           backdrop-filter: blur(10px);
           position: relative;
           z-index: 100;
       }

       .kontener-maksymalny {
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 1rem;
       }

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

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

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

       .menu-przyciski:hover {
           background: rgba(255,255,255,0.1);
       }

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

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

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

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

       .hero-sekcja-główna {
           text-align: center;
           padding: 8rem 0 6rem;
           position: relative;
           z-index: 10;
       }

       .hero-sekcja-główna::before {
           content: '';
           position: absolute;
           top: 30%;
           left: 50%;
           transform: translateX(-50%);
           width: 300px;
           height: 300px;
           background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
           border-radius: 50%;
           animation: pulsowanie 6s ease-in-out infinite;
       }

       @keyframes pulsowanie {
           0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
           50% { transform: translateX(-50%) scale(1.3); opacity: 0.7; }
       }

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

       .podtytul-hero-opis {
           font-size: 1.4rem;
           margin-bottom: 3rem;
           max-width: 950px;
           margin-left: auto;
           margin-right: auto;
           opacity: 0.95;
           line-height: 1.7;
           position: relative;
           z-index: 15;
       }

       .cechy-siatka-hero {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
           gap: 2.5rem;
           margin: 4rem 0;
           position: relative;
           z-index: 15;
       }

       .karta-cechy-hero {
           background: rgba(255, 255, 255, 0.15);
           padding: 2.5rem;
           border-radius: 25px;
           backdrop-filter: blur(20px);
           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-hero:hover {
           transform: translateY(-10px) scale(1.03);
           background: rgba(255, 255, 255, 0.25);
           box-shadow: 0 20px 60px rgba(0,0,0,0.2);
       }

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

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

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

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

       .przycisk-cta-hero:hover {
           transform: translateY(-4px);
           box-shadow: 0 18px 40px rgba(245, 158, 11, 0.6);
           background: linear-gradient(45deg, #d97706, #b45309);
       }

       .sekcja-kasyn-listing {
           padding: 6rem 0;
           background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
           position: relative;
       }

       .naglowek-sekcji-wspólny {
           text-align: center;
           margin-bottom: 5rem;
       }

       .tytul-sekcji-wspólny {
           font-size: 3rem;
           font-weight: 800;
           color: #1a202c;
           margin-bottom: 1.5rem;
           background: linear-gradient(135deg, #667eea, #764ba2);
           -webkit-background-clip: text;
           background-clip: text;
       }

       .opis-sekcji-wspólny {
           font-size: 1.3rem;
           color: #4a5568;
           max-width: 850px;
           margin: 0 auto;
           line-height: 1.8;
       }

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

       .karta-kasyna-główna {
           background: white;
           border-radius: 30px;
           overflow: hidden;
           box-shadow: 0 15px 50px rgba(0,0,0,0.12);
           transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
           position: relative;
           border: 2px solid transparent;
       }

       .karta-kasyna-główna::before {
           content: '';
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           height: 6px;
           background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
       }

       .karta-kasyna-główna:hover {
           transform: translateY(-15px);
           box-shadow: 0 30px 80px rgba(0,0,0,0.25);
           border-color: #667eea;
       }

       .header-kasyna-karta {
           background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
           padding: 3rem 2.5rem;
           color: white;
           text-align: center;
           position: relative;
       }

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

       .bonus-info-kasyna {
           margin: 2rem 0;
           min-height: 120px;
           display: flex;
           flex-direction: column;
           justify-content: center;
       }

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

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

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

       .przycisk-graj-kasyna:hover {
           transform: translateY(-3px);
           box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
       }

       .tresc-kasyna-karta {
           padding: 3rem 2.5rem;
       }

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

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

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

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

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

       .intro-tekst-blok {
           background: white;
           border-radius: 25px;
           padding: 3rem;
           margin: 3rem 0;
           box-shadow: 0 10px 40px rgba(0,0,0,0.1);
           border-left: 6px solid #667eea;
       }

       .intro-tekst-blok p {
           font-size: 1.2rem;
           line-height: 1.8;
           margin-bottom: 1.5rem;
           color: #2d3748;
       }

       .punkty-lista-styled {
           list-style: none;
           margin: 2rem 0;
       }

       .punkty-lista-styled li {
           margin-bottom: 1.2rem;
           padding-left: 2.5rem;
           position: relative;
           color: #2d3748;
           font-size: 1.1rem;
           line-height: 1.7;
       }

       .punkty-lista-styled li::before {
           content: "🎯";
           position: absolute;
           left: 0;
           font-size: 1.3rem;
       }

       .najlepsze-kasyna-sekcja {
           background: white;
           padding: 6rem 0;
       }

       .kasyna-lista-szczegolowa {
           margin: 4rem 0;
       }

       .kasyno-item-szczegoly {
           background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
           border-radius: 25px;
           margin-bottom: 3rem;
           overflow: hidden;
           box-shadow: 0 15px 50px rgba(0,0,0,0.1);
           border: 1px solid #e0f2fe;
       }

       .kasyno-header-szczegoly {
           background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
           color: white;
           padding: 3rem;
           display: flex;
           align-items: center;
           gap: 2.5rem;
           flex-wrap: wrap;
       }

       .kasyno-content-szczegoly {
           padding: 3rem;
       }

       .kasyno-content-szczegoly h4 {
           color: #667eea;
           font-size: 1.4rem;
           margin: 2rem 0 1rem 0;
       }

       .kasyno-content-szczegoly p {
           line-height: 1.8;
           margin-bottom: 1.5rem;
           color: #4a5568;
       }

       .info-sekcja-wyplat {
           background: #f8fafc;
           padding: 6rem 0;
       }

       .blok-informacyjny-szczegoly {
           background: white;
           border-radius: 25px;
           padding: 3rem;
           margin: 3rem 0;
           box-shadow: 0 10px 40px rgba(0,0,0,0.1);
       }

       .blok-informacyjny-szczegoly h3 {
           color: #667eea;
           font-size: 1.8rem;
           font-weight: 700;
           margin-bottom: 2rem;
       }

       .blok-informacyjny-szczegoly h4 {
           color: #1a202c;
           font-size: 1.4rem;
           font-weight: 600;
           margin: 2rem 0 1rem 0;
       }

       .blok-informacyjny-szczegoly h5 {
           color: #4a5568;
           font-size: 1.2rem;
           font-weight: 600;
           margin: 1.5rem 0 1rem 0;
       }

       .zalety-wady-sekcja {
           background: white;
           padding: 6rem 0;
       }

       .zalety-wady-siatka {
           display: grid;
           grid-template-columns: 1fr 1fr;
           gap: 4rem;
           margin: 4rem 0;
       }

       .zalety-blok {
           background: #d1fae5;
           border-radius: 25px;
           padding: 3rem;
           border-left: 6px solid #10b981;
       }

       .wady-blok {
           background: #fef3c7;
           border-radius: 25px;
           padding: 3rem;
           border-left: 6px solid #f59e0b;
       }

       .zalety-tytul {
           color: #059669;
           margin-bottom: 2rem;
           display: flex;
           align-items: center;
           gap: 1rem;
           font-size: 1.5rem;
       }

       .wady-tytul {
           color: #d97706;
           margin-bottom: 2rem;
           display: flex;
           align-items: center;
           gap: 1rem;
           font-size: 1.5rem;
       }

       .zalety-item, .wady-item {
           margin-bottom: 2rem;
       }

       .zalety-item h4 {
           color: #047857;
           margin-bottom: 1rem;
           font-size: 1.2rem;
       }

       .wady-item h4 {
           color: #b45309;
           margin-bottom: 1rem;
           font-size: 1.2rem;
       }

       .zalety-item p {
           color: #064e3b;
           line-height: 1.7;
       }

       .wady-item p {
           color: #92400e;
           line-height: 1.7;
       }

       .ocena-sekcja {
           background: #f8fafc;
           padding: 6rem 0;
       }

       .krok-oceny {
           background: white;
           border-radius: 25px;
           margin-bottom: 3rem;
           overflow: hidden;
           box-shadow: 0 10px 40px rgba(0,0,0,0.1);
       }

       .header-kroku {
           background: linear-gradient(135deg, #667eea, #764ba2);
           color: white;
           padding: 3rem;
           display: flex;
           align-items: center;
           gap: 2rem;
       }

       .numer-kroku {
           background: rgba(255,255,255,0.2);
           color: white;
           width: 50px;
           height: 50px;
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           font-weight: 800;
           font-size: 1.2rem;
       }

       .content-kroku {
           padding: 3rem;
       }

       .cechy-kluczowe-sekcja {
           background: white;
           padding: 6rem 0;
       }

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

       .karta-cechy-szczegolowa {
           background: #f8fafc;
           border-radius: 25px;
           padding: 3rem;
           border-left: 6px solid #667eea;
           transition: all 0.3s ease;
           box-shadow: 0 8px 30px rgba(0,0,0,0.08);
       }

       .karta-cechy-szczegolowa:hover {
           transform: translateY(-8px);
           box-shadow: 0 20px 50px rgba(0,0,0,0.15);
       }

       .karta-cechy-szczegolowa h3 {
           color: #667eea;
           font-size: 1.4rem;
           margin-bottom: 1.5rem;
       }

       .recenzje-szczegolowe-sekcja {
           background: #f8fafc;
           padding: 6rem 0;
       }

       .przewodnik-sekcja {
           background: white;
           padding: 6rem 0;
       }

       .krok-przewodnika {
           background: #f8fafc;
           border-radius: 25px;
           margin-bottom: 3rem;
           overflow: hidden;
           box-shadow: 0 10px 40px rgba(0,0,0,0.1);
       }

       .metody-platnosci-sekcja {
           background: #f8fafc;
           padding: 6rem 0;
       }

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

       .kategoria-platnosci h3 {
           color: #1a202c;
           font-size: 1.6rem;
           margin-bottom: 1.5rem;
       }

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

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

       .karta-platnosci:hover {
           transform: translateY(-8px);
           box-shadow: 0 15px 45px rgba(0,0,0,0.15);
       }

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

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

       .info-platnosci h4 {
           font-weight: 700;
           margin-bottom: 1rem;
           color: #1a202c;
           font-size: 1.2rem;
       }

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

       .tabela-porownawcza {
           width: 100%;
           border-collapse: collapse;
           background: white;
           border-radius: 20px;
           overflow: hidden;
           box-shadow: 0 10px 40px rgba(0,0,0,0.1);
           margin: 4rem 0;
       }

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

       .tabela-porownawcza th {
           background: linear-gradient(135deg, #667eea, #764ba2);
           color: white;
           font-weight: 700;
           font-size: 1.1rem;
       }

       .doswiadczenie-gracza-sekcja {
           background: white;
           padding: 6rem 0;
       }

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

       .profil-eksperta {
           display: flex;
           align-items: center;
           gap: 3rem;
           margin-bottom: 4rem;
           padding: 3rem;
           background: white;
           border-radius: 25px;
           box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
    .awatar-eksperta {
        width: 120px;
        height: 120px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        font-weight: 800;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

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

    .karta-porady {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        position: relative;
        border-top: 5px solid #667eea;
    }

    .numer-porady {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.4rem;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    }

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

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

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

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

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

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

    .numer-pytania {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.2rem;
    }

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

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

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

    .wskaznik-rozwijania {
        font-size: 2rem;
        color: #667eea;
        transition: transform 0.3s ease;
        font-weight: 300;
    }

    .slowniczek-sekcja {
        background: #f8fafc;
        padding: 6rem 0;
    }

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

    .slowniczek-item {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        border-left: 5px solid #667eea;
    }

    .slowniczek-item h3 {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: #1a202c;
        font-size: 1.3rem;
    }

    .slowniczek-item .przyklad {
        background: #fef3c7;
        padding: 1.5rem;
        border-radius: 12px;
        border-left: 4px solid #f59e0b;
        margin-top: 1rem;
    }

    .kalkulator-sekcja {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 6rem 0;
    }

    .kalkulator-container {
        background: rgba(255,255,255,0.1);
        border-radius: 25px;
        padding: 3rem;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.2);
        max-width: 600px;
        margin: 0 auto;
    }

    .kalkulator-input {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        border: none;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .kalkulator-button {
        background: #f59e0b;
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .kalkulator-button:hover {
        background: #d97706;
    }

    .wynik-kalkulator {
        background: rgba(255,255,255,0.2);
        padding: 2rem;
        border-radius: 15px;
        margin-top: 2rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .cta-finalna-sekcja {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 6rem 0;
        text-align: center;
    }

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

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

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

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

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

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

    .kolumna-stopki a:hover {
        color: #667eea;
    }

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

    .ostrzezenie-odpowiedzialna-gra {
        background: #2d3748;
        padding: 3rem;
        border-radius: 20px;
        margin-bottom: 4rem;
    }

    .ostrzezenie-flex {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .wiek-ograniczenie {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .oznaczenie-18 {
        background: #ef4444;
        color: white;
        padding: 1rem 2rem;
        border-radius: 30px;
        font-weight: 800;
        font-size: 1.4rem;
    }

    @media (max-width: 768px) {
        .menu-przyciski {
            display: flex;
        }
        
        .lista-nawigacji {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(102, 126, 234, 0.95);
            flex-direction: column;
            padding: 2rem;
            backdrop-filter: blur(15px);
            border-radius: 0 0 20px 20px;
            z-index: 100;
        }
        
        .lista-nawigacji.active {
            display: flex;
        }
        
        .tytul-glowny-hero {
            font-size: 2.8rem;
        }
        
        .kasyna-siatka-kart {
            grid-template-columns: 1fr;
        }
        
        .zalety-wady-siatka {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .profil-eksperta {
            flex-direction: column;
            text-align: center;
        }

        .nawigacja-flex {
            position: relative;
        }

        .cechy-siatka-hero {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .kasyna-siatka-kart {
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }

        .header-kasyna-karta {
            padding: 2rem 1.5rem;
        }

        .kwota-bonusu-kasyna {
            font-size: 1.2rem;
        }

        .logo-kasyna-nazwa {
            font-size: 1.3rem;
            padding: 1rem 2rem;
        }
    }

    .niewidoczny-element {
        position: absolute;
        left: -10000px;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
    .ocena-platformy-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e0f2fe 100%);
    border-radius: 28px;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ocena-platformy-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ocena-platformy-wrapper:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.szczegoly-kasyno-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.szczegoly-kasyno-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.marka-i-ocena {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.nazwa-kasyna-badge {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem 2.5rem;
    border-radius: 18px;
    font-weight: 800;
    backdrop-filter: blur(20px);
    font-size: 1.6rem;
    border: 2px solid rgba(255,255,255,0.25);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: inline-block;
}

.punktacja-system {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ikona-gwiazda {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ikona-gwiazda.filled {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.wynik-numeryczny {
    font-size: 1.4rem;
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.promocja-destacada {
    text-align: center;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.oferta-glowna {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.etykieta-dodatkowa {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(10px);
    display: inline-block;
}

.akcja-button-main {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 1.8rem 3rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.akcja-button-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.6);
    background: linear-gradient(45deg, #d97706, #b45309);
}

.przycisk-content {
    font-weight: 700;
}

.kierunek-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.akcja-button-main:hover .kierunek-arrow {
    transform: translateX(5px);
}

.analiza-kasyno-content {
    padding: 3.5rem 3rem;
}

.opis-podstawowy {
    margin-bottom: 3rem;
}

.opis-podstawowy p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

.plusy-minusy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.korzyści-sekcja {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 6px solid #10b981;
    position: relative;
    overflow: hidden;
}

.korzyści-sekcja::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.korzyści-header {
    color: #059669;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lista-korzyści {
    list-style: none;
    margin: 0;
}

.lista-korzyści li {
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
    color: #047857;
    font-weight: 600;
    line-height: 1.6;
}

.lista-korzyści li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.4rem;
    font-weight: 800;
}

.dane-techniczne-sekcja {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border-left: 6px solid #667eea;
    position: relative;
    overflow: hidden;
}

.dane-techniczne-sekcja::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.tech-specs-header {
    color: #5b21b6;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.parametr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.parametr-item:last-child {
    border-bottom: none;
}

.parametr-nazwa {
    color: #6b46c1;
    font-weight: 600;
    font-size: 1rem;
}

.parametr-wartosc {
    color: #5b21b6;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255,255,255,0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .szczegoly-kasyno-header {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    
    .plusy-minusy-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .analiza-kasyno-content {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .ocena-platformy-wrapper {
        margin-bottom: 2.5rem;
        border-radius: 20px;
    }
    
    .szczegoly-kasyno-header {
        padding: 2rem 1.5rem;
    }
    
    .nazwa-kasyna-badge {
        font-size: 1.4rem;
        padding: 1.2rem 2rem;
    }
    
    .oferta-glowna {
        font-size: 1.2rem;
    }
    
    .akcja-button-main {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .analiza-kasyno-content {
        padding: 2rem 1.5rem;
    }
    
    .opis-podstawowy p {
        font-size: 1.1rem;
    }
    
    .korzyści-sekcja,
    .dane-techniczne-sekcja {
        padding: 2rem;
    }
    
    .parametr-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .parametr-wartosc {
        align-self: flex-end;
    }
}