/* Resetowanie i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background: #f8fafc;
}

/* Utility classes */
.niewidoczny-dostępny {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

/* Header */
.blask-naglowek {
    background: linear-gradient(120deg, #8b5cf6 0%, #06b6d4 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blask-naglowek.przewiniete {
    backdrop-filter: blur(10px);
    background: rgba(139, 92, 246, 0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gorny-pasek-menu {
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.nawigacja-gornna ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.lista-gornej-nawigacji {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Utility classes */
.niewidoczny-dostepny {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.główny-pasek-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo-obszar {
    flex: 1;
display: flex;
justify-content: center;
}

.tekst-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.główna-nawigacja {
    flex: 2;
    display: flex;
    justify-content: center;
}

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

.odnośnik-menu {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.odnośnik-menu:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* Burger menu */
.burger-przycisk {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.burger-linia {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-przycisk.aktywny .burger-linia:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-przycisk.aktywny .burger-linia:nth-child(2) {
    opacity: 0;
}

.burger-przycisk.aktywny .burger-linia:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero section */
.sekcja-powitalny {
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.główny-tytuł {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.opis-główny {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.główne-funkcje-siatka {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.funkcja-element {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.funkcja-element:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.ikona-funkcji {
    font-size: 1.5rem;
}

.tekst-funkcji {
    font-weight: 500;
}

.przyciski-działania {
    margin-top: 2rem;
}

.główny-przycisk-cta {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.główny-przycisk-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.strzałka-przycisku {
    transition: transform 0.3s ease;
}

.główny-przycisk-cta:hover .strzałka-przycisku {
    transform: translateX(4px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.tytuł-sekcji,
.tytuł-procesu,
.tytuł-cech,
.tytuł-recenzji,
.główny-tytuł {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.opis-sekcji,
.opis-procesu,
.wprowadzenie-cech,
.opis-recenzji {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Casino cards */
.karty-kasyn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.karta-kasyno {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.główne-dane-kasyno {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.zastępczy-logo {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 12px;
    font-weight: bold;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.informacje-bonus {
    margin: 1rem 0;
}

.kwota-bonus {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dodatkowy-bonus {
    font-size: 0.9rem;
    opacity: 0.9;
}

.przycisk-graj-kasyno {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.przycisk-graj-kasyno:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.zawartość-kasyno {
    padding: 1.5rem;
}

.nazwa-kasyno {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.lista-szczegóły {
    list-style: none;
    margin-bottom: 1rem;
}

.lista-szczegóły li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.lista-szczegóły li::before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.opis-kasyno {
    color: #4a5568;
    line-height: 1.6;
}

/* Payment methods */
.siatka-płatności {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.karta-płatności {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.karta-płatności:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.zawartość-karty {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.opakowanie-logo {
    flex-shrink: 0;
}

.logo-metody {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.875rem;
}

.logo-metody.skrill { background: #7b2cbf; }
.logo-metody.neteller { background: #00ac41; }
.logo-metody.revolut { background: #0075ff; }
.logo-metody.paypal { background: #003087; }
.logo-metody.bitcoin { background: #f7931a; }
.logo-metody.ethereum { background: #627eea; }
.logo-metody.litecoin { background: #345d9d; }
.logo-metody.tether { background: #26a17b; }
.logo-metody.blik { background: #1e40af; }
.logo-metody.przelewy24 { background: #d63384; }
.logo-metody.payu { background: #ff6900; }
.logo-metody.tpay { background: #0066cc; }
.logo-metody.visa { background: #1a1f71; }
.logo-metody.mastercard { background: #eb001b; }
.logo-metody.maestro { background: #6c757d; }
.logo-metody.polcard { background: #dc3545; }

.info-metody h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.info-metody p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tables */
.opakowanie-tabeli,
.opakowanie-tabeli-rankingu {
    overflow-x: auto;
    margin: 2rem 0;
}

.tabela-porównawcza,
.tabela-rankingu {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tabela-porównawcza th,
.tabela-porównawcza td,
.tabela-rankingu th,
.tabela-rankingu td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.tabela-porównawcza th,
.tabela-rankingu th {
    background: #f8fafc;
    font-weight: 600;
    color: #1a202c;
}

.tabela-porównawcza tr:hover,
.tabela-rankingu tr:hover {
    background: #f8fafc;
}

.tabela-porównawcza tr:last-child td,
.tabela-rankingu tr:last-child td {
    border-bottom: none;
}

/* Features */
.siatka-cech {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.karta-cechy {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.ikona-cechy-mała {
    margin-bottom: 1rem;
}

.znaczek-ikony {
    font-size: 2rem;
}

.karta-cechy h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.karta-cechy p {
    color: #4a5568;
    line-height: 1.6;
}

.cecha-blok {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.ikona-cechy-duża {
    flex-shrink: 0;
}

.ikona-cechy-duża .znaczek-ikony {
    font-size: 3rem;
    color: #8b5cf6;
}

.tekst-cechy-blok h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.tekst-cechy-blok p {
    color: #4a5568;
    line-height: 1.6;
}

/* Steps/Process */
.pojemnik-kroków {
    margin: 3rem 0;
}

.krok-oceny {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.krok-oceny:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nagłówek-kroku {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.numer-kroku {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.nagłówek-kroku h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
}

.zawartość-kroku {
    color: #4a5568;
    line-height: 1.6;
}

.wprowadzenie-kroku {
    margin-bottom: 1rem;
}

/* Expert section */
.obszar-eksperckiej-oceny {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 0;
}

.pojemnik-ekspercki {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nagłówek-ekspercki {
    text-align: center;
    margin-bottom: 3rem;
}

.profil-eksperta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.awatar-eksperta {
    position: relative;
}

.znaczek-awatara {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.status-eksperta {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.uprawnienia-eksperta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.uprawnienia-eksperta .tytuł-eksperta {
    color: #4a5568;
    margin-bottom: 1rem;
}

.znaczki-eksperta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.znaczek-uprawnień {
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.karta-praktyki {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.wskaźnik-karty {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transform: rotate(15deg);
    font-size: 1.1rem;
}

.karta-praktyki h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
    padding-right: 3rem;
}

.karta-praktyki p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ */
.obszar-faq-kasyn {
    background: #f8fafc;
    padding: 4rem 0;
}

.wewnętrzny-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.góra-faq {
    text-align: center;
    margin-bottom: 3rem;
}

.etykieta-faq {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.nagłówek-faq {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.opis-faq {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.lista-faq {
    margin: 2rem 0;
}

.blok-pytania {
    margin: 1rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.blok-pytania:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blok-pytania[open] {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nagłówek-pytania {
    padding: 1.5rem;
    background: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.nagłówek-pytania:hover {
    background: #f8fafc;
}

.blok-pytania summary {
    list-style: none;
}

.blok-pytania summary::-webkit-details-marker {
    display: none;
}

.numer-pytania {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.tytuł-pytania {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.ikona-pytania {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.blok-pytania[open] .ikona-pytania {
    transform: rotate(45deg);
}

.zawartość-odpowiedzi {
    padding: 0 1.5rem 1.5rem;
    background: #f8fafc;
}

.główna-odpowiedź {
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.6;
}

.blok-odpowiedzi {
    margin: 1rem 0;
}

.tytuł-bloku {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.lista-odpowiedzi {
    list-style: none;
    padding-left: 1rem;
}

.lista-odpowiedzi li {
    position: relative;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.lista-odpowiedzi li::before {
    content: "•";
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.statystyki-czasu {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.element-czasu {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 100px;
}

.etykieta-czasu {
    display: block;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.wartość-czasu {
    display: block;
    font-weight: 600;
    color: #8b5cf6;
}

.ramka-wsparcia {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.tytuł-wsparcia {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tekst-wsparcia {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.przycisk-wsparcia {
    background: white;
    color: #8b5cf6;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.przycisk-wsparcia:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

/* Dictionary */
.obszar-słowniczka {
    padding: 4rem 0;
    background: white;
}

.pojemnik-słowniczka {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nagłówek-słowniczka {
    text-align: center;
    margin-bottom: 3rem;
}

.znaczek-słowniczka {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.tytuł-słowniczka {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.wprowadzenie-słowniczka {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.karta-terminu {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.ikona-terminu {
    flex-shrink: 0;
}

.koło-ikony {
    font-size: 2rem;
}

.zawartość-terminu {
    flex: 1;
}

.tytuł-terminu {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.opis-terminu {
    color: #4a5568;
    line-height: 1.6;
   margin-bottom: 1rem;
}

.przykład-terminu {
   background: #f0f9ff;
   padding: 0.75rem;
   border-radius: 8px;
   border-left: 3px solid #0ea5e9;
   margin-top: 0.75rem;
}

.etykieta-przykładu {
   font-weight: 600;
   color: #0ea5e9;
   margin-right: 0.5rem;
}

.znaczki-terminu {
   display: flex;
   gap: 0.5rem;
   flex-wrap: wrap;
   margin-top: 0.75rem;
}

.znaczek {
   background: #e0e7ff;
   color: #6366f1;
   padding: 0.25rem 0.75rem;
   border-radius: 12px;
   font-size: 0.875rem;
   font-weight: 500;
}

.podświetlenie-terminu {
   background: #fef3c7;
   padding: 0.75rem;
   border-radius: 8px;
   border-left: 3px solid #f59e0b;
   margin-top: 0.75rem;
   font-size: 0.9rem;
}

/* Pros and Cons */
.obszar-zalet-wad {
   background: #f8fafc;
   padding: 4rem 0;
}

.pojemnik-zalet-wad {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1rem;
}

.nagłówek-sekcji-zalet {
   text-align: center;
   margin-bottom: 3rem;
}

.tytuł-wprowadzenia {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: #1a202c;
}

.tekst-wprowadzenia {
   font-size: 1.1rem;
   color: #4a5568;
   line-height: 1.6;
   max-width: 800px;
   margin: 0 auto;
}

.układ-porównania {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   margin: 3rem 0;
}

.kolumna-porównania {
   background: white;
   border-radius: 16px;
   padding: 2rem;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.kolumna-porównania.zalety {
   border-top: 4px solid #10b981;
}

.kolumna-porównania.wady {
   border-top: 4px solid #f59e0b;
}

.nagłówek-kolumny {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 2rem;
}

.ikona-kolumny {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: bold;
}

.zalety .ikona-kolumny {
   background: #d1fae5;
   color: #059669;
}

.wady .ikona-kolumny {
   background: #fef3c7;
   color: #d97706;
}

.nagłówek-kolumny h3 {
   font-size: 1.25rem;
   font-weight: 600;
   color: #1a202c;
}

.element-zalety {
   margin-bottom: 2rem;
   padding-bottom: 1.5rem;
   border-bottom: 1px solid #e5e7eb;
}

.element-zalety:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
}

.tytuł-zalety {
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 0.75rem;
   color: #1a202c;
}

.element-zalety p {
   color: #4a5568;
   line-height: 1.6;
}

/* Reviews */
.obszar-szczegółowych-recenzji {
   padding: 4rem 0;
   background: white;
}

.opakowanie-recenzji-kasyn {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1rem;
}

.wprowadzenie-recenzji {
   text-align: center;
   margin-bottom: 3rem;
}

.element-kasyna-recenzja {
   background: #f8fafc;
   border-radius: 16px;
   margin-bottom: 3rem;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.element-kasyna-recenzja:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.główne-info-kasyna {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 2rem;
   display: flex;
   align-items: center;
   gap: 2rem;
   flex-wrap: wrap;
}

.logo-kasyna-recenzja .zastępczy-logo {
   background: rgba(255,255,255,0.2);
   padding: 1rem 1.5rem;
   border-radius: 12px;
   font-weight: bold;
   backdrop-filter: blur(10px);
   min-width: 120px;
   text-align: center;
}

.info-bonusu-recenzja {
   flex: 1;
   min-width: 200px;
}

.kwota-bonusu-recenzja {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 0.25rem;
}

.dodatkowy-bonus-recenzja {
   font-size: 0.9rem;
   opacity: 0.9;
}

.przycisk-graj-kasyna-recenzja {
   background: linear-gradient(45deg, #f59e0b, #d97706);
   color: white;
   padding: 0.75rem 1.5rem;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.przycisk-graj-kasyna-recenzja:hover {
   transform: translateY(-1px);
   box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.zawartość-kasyna-recenzja {
   padding: 2rem;
}

.przegląd-kasyna-recenzja {
   margin-bottom: 2rem;
}

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

.opis-kasyna-recenzja {
   color: #4a5568;
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

.cechy-kasyna-recenzja {
   background: white;
   border-radius: 12px;
   padding: 1.5rem;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.element-cechy-recenzja {
   margin-bottom: 1rem;
   display: flex;
   gap: 1rem;
   align-items: flex-start;
}

.element-cechy-recenzja:last-child {
   margin-bottom: 0;
}

.tytuł-cechy-recenzja {
   font-weight: 600;
   color: #1a202c;
   min-width: 140px;
   flex-shrink: 0;
}

.tekst-cechy-recenzja {
   color: #4a5568;
   line-height: 1.6;
}

/* Errors section */
.obszar-błędów {
   background: #fef2f2;
   padding: 4rem 0;
}

.nagłówek-błędów {
   text-align: center;
   margin-bottom: 3rem;
}

.wprowadzenie-błędów {
   font-size: 1.1rem;
   color: #4a5568;
   line-height: 1.6;
   max-width: 800px;
   margin: 0 auto;
}

.lista-błędów {
   max-width: 900px;
   margin: 3rem auto 0;
}

.element-błędu {
   background: white;
   border-radius: 12px;
   padding: 2rem;
   margin-bottom: 2rem;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   display: flex;
   gap: 1.5rem;
   transition: all 0.3s ease;
}

.element-błędu:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.numer-błędu {
   width: 50px;
   height: 50px;
   background: linear-gradient(45deg, #ef4444, #dc2626);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.25rem;
   font-weight: bold;
   flex-shrink: 0;
}

.zawartość-błędu {
   flex: 1;
}

.zawartość-błędu h3 {
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: #1a202c;
}

.opis-błędu {
   color: #4a5568;
   line-height: 1.6;
   margin-bottom: 1rem;
}

.rozwiązanie {
   background: #f0fdf4;
   padding: 1rem;
   border-radius: 8px;
   border-left: 3px solid #22c55e;
}

.rozwiązanie strong {
   color: #16a34a;
   display: block;
   margin-bottom: 0.5rem;
}

.rozwiązanie p {
   color: #4a5568;
   margin: 0;
}

.podsumowanie-błędów {
   background: white;
   padding: 2rem;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   margin-top: 2rem;
   text-align: center;
}

.podsumowanie-błędów p {
   color: #4a5568;
   line-height: 1.6;
   font-size: 1.1rem;
}

/* Steps/Guide section */
.obszar-przewodnika {
   background: white;
   padding: 4rem 0;
}

.wprowadzenie-przewodnika {
   text-align: center;
   margin-bottom: 3rem;
}

.przepływ-kroków {
   max-width: 1000px;
   margin: 0 auto;
}

.element-przepływu {
   background: #f8fafc;
   border-radius: 16px;
   margin-bottom: 3rem;
   overflow: hidden;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.element-przepływu:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nagłówek-przepływu {
   background: linear-gradient(135deg, #8b5cf6, #7c3aed);
   color: white;
   padding: 2rem;
   display: flex;
   align-items: center;
   gap: 1rem;
}

.znacznik-kroku {
   background: rgba(255,255,255,0.2);
   padding: 0.75rem 1rem;
   border-radius: 20px;
   font-weight: 600;
   backdrop-filter: blur(10px);
}

.nagłówek-przepływu h3 {
   font-size: 1.5rem;
   font-weight: 600;
}

.zawartość-przepływu {
   padding: 2rem;
}

.podsekcja-kroku {
   margin-bottom: 2rem;
}

.podsekcja-kroku h4 {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: #1a202c;
}

.element-kroku {
   background: white;
   padding: 1.5rem;
   border-radius: 12px;
   margin-bottom: 1rem;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.element-kroku strong {
   color: #8b5cf6;
   display: block;
   margin-bottom: 0.5rem;
}

.element-kroku p {
   color: #4a5568;
   line-height: 1.6;
   margin: 0;
}

.ramka-weryfikacji,
.ramka-porad,
.ramka-ostrzeżeń {
   background: white;
   border-radius: 12px;
   padding: 1.5rem;
   margin-top: 2rem;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ramka-weryfikacji {
   border-left: 4px solid #0ea5e9;
}

.ramka-porad {
   border-left: 4px solid #22c55e;
}

.ramka-ostrzeżeń {
   border-left: 4px solid #f59e0b;
}

.ramka-weryfikacji h4,
.ramka-porad h4,
.ramka-ostrzeżeń h4 {
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: #1a202c;
}

.lista-dokumentów {
   margin: 1rem 0;
}

.element-dokumentu {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1rem;
   padding: 1rem;
   background: #f8fafc;
   border-radius: 8px;
}

.ikona-dokumentu {
   font-size: 1.5rem;
   flex-shrink: 0;
}

.info-dokumentu strong {
   display: block;
   color: #1a202c;
   margin-bottom: 0.25rem;
}

.info-dokumentu p {
   color: #4a5568;
   font-size: 0.9rem;
   margin: 0;
}

.lista-porad {
   list-style: none;
   padding-left: 0;
}

.lista-porad li {
   position: relative;
   padding-left: 1.5rem;
   margin-bottom: 0.5rem;
   color: #4a5568;
}

.lista-porad li::before {
   content: "✓";
   color: #22c55e;
   font-weight: bold;
   position: absolute;
   left: 0;
}

.element-ostrzeżenia {
   background: #fef3c7;
   padding: 1rem;
   border-radius: 8px;
   margin-bottom: 1rem;
}

.element-ostrzeżenia strong {
   color: #d97706;
   display: block;
   margin-bottom: 0.5rem;
}

.element-ostrzeżenia p {
   color: #4a5568;
   margin: 0;
}

.ważna-notatka {
   background: #dbeafe;
   padding: 1.5rem;
   border-radius: 12px;
   border-left: 4px solid #3b82f6;
   margin-top: 2rem;
}

.ważna-notatka p {
   color: #1e40af;
   margin: 0;
   line-height: 1.6;
}

.rekomendacja {
   color: #059669;
   font-style: italic;
   margin-top: 1rem;
}

/* Ranking section */
.średnia-ocena {
   text-align: center;
   margin: 2rem 0;
   padding: 1.5rem;
   background: white;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.podsumowanie-dla-graczy {
   background: #f0f9ff;
   padding: 2rem;
   border-radius: 12px;
   margin-top: 2rem;
}

.podsumowanie-dla-graczy h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 2rem;
   color: #1a202c;
   text-align: center;
}

.podsumowanie-dla-graczy h4 {
   font-size: 1.2rem;
   font-weight: 600;
   margin: 1.5rem 0 1rem;
   color: #1a202c;
}

.polecane-kasyna ul,
.na-co-zwrócić-uwagę ul {
   list-style: none;
   padding-left: 0;
}

.polecane-kasyna li,
.na-co-zwrócić-uwagę li {
   position: relative;
   padding-left: 1.5rem;
   margin-bottom: 0.75rem;
   color: #4a5568;
}

.polecane-kasyna li::before,
.na-co-zwrócić-uwagę li::before {
   content: "▶";
   color: #3b82f6;
   font-size: 0.875rem;
   position: absolute;
   left: 0;
}

.rekomendowane-metody p {
   background: white;
   padding: 1rem;
   border-radius: 8px;
   border-left: 3px solid #8b5cf6;
   margin: 0;
}

/* Footer */
.stopka-kasyna {
   background: #1a202c;
   color: white;
   padding: 3rem 0 1rem;
}

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

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

.ostrzeżenie-gry {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 2rem;
}

.ikona-ostrzeżenia {
   font-size: 2rem;
   flex-shrink: 0;
}

.tekst-ostrzeżenia strong {
   display: block;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
   color: #f59e0b;
}

.tekst-ostrzeżenia p {
   color: #e2e8f0;
   line-height: 1.6;
   margin: 0;
}

.ograniczenie-wieku {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.znaczek-wieku {
   background: #ef4444;
   color: white;
   padding: 0.5rem 1rem;
   border-radius: 20px;
   font-weight: bold;
   font-size: 1.1rem;
}

.ograniczenie-wieku p {
   color: #e2e8f0;
   margin: 0;
}

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

.kolumna-stopki h4 {
   color: #f7fafc;
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 1rem;
}

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

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

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

.kolumna-stopki a:hover {
   color: #8b5cf6;
}

.certyfikaty {
   display: flex;
   justify-content: center;
   gap: 2rem;
   margin: 3rem 0;
   flex-wrap: wrap;
}

.element-certyfikatu {
   width: 150px;
   height: 60px;
}

.element-certyfikatu svg {
   width: 100%;
   height: 100%;
}

.sekcja-pomocy-stopki {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin: 3rem 0;
}

.karta-pomocy {
   background: #2d3748;
   padding: 1.5rem;
   border-radius: 12px;
   display: flex;
   align-items: flex-start;
   gap: 1rem;
}

.ikona-pomocy {
   font-size: 1.5rem;
   flex-shrink: 0;
}

.zawartość-pomocy h5 {
   color: #f7fafc;
   font-weight: 600;
   margin-bottom: 0.5rem;
}

.zawartość-pomocy p {
   color: #cbd5e0;
   font-size: 0.9rem;
   line-height: 1.5;
   margin: 0;
}

.zawartość-pomocy a {
   color: #8b5cf6;
   text-decoration: none;
}

.zawartość-pomocy a:hover {
   text-decoration: underline;
}

.dół-stopki {
   border-top: 1px solid #4a5568;
   padding-top: 2rem;
   text-align: center;
}

.zastrzeżenie {
   margin-bottom: 1.5rem;
}

.zastrzeżenie p {
   color: #cbd5e0;
   font-size: 0.9rem;
   line-height: 1.6;
   max-width: 800px;
   margin: 0 auto;
}

.linki-prawne {
   display: flex;
   justify-content: center;
   gap: 2rem;
   margin-bottom: 1rem;
   flex-wrap: wrap;
}

.linki-prawne a {
   color: #cbd5e0;
   text-decoration: none;
   font-size: 0.9rem;
   transition: color 0.3s ease;
}

.linki-prawne a:hover {
   color: #8b5cf6;
}

.prawa-autorskie {
   color: #718096;
   font-size: 0.875rem;
}

.prawa-autorskie p {
   margin: 0;
}

/* Animations */
.animacja-pojawienia {
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s ease;
}

.widoczny {
   opacity: 1 !important;
   transform: translateY(0) !important;
}

.interaktywny-blok {
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.6s ease;
}

@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   .burger-przycisk {
       display: flex;
   }
   
   .główna-nawigacja {
       position: relative;
   }
   
   .lista-glownej-nawigacji {
       display: none;
       position: absolute;
       top: 100%;
       left: 0;
       right: 0;
       background: rgba(139, 92, 246, 0.95);
       flex-direction: column;
       padding: 1rem;
       backdrop-filter: blur(10px);
       border-radius: 0 0 12px 12px;
       box-shadow: 0 10px 30px rgba(0,0,0,0.2);
       z-index: 1000;
   }
   
   .lista-glownej-nawigacji.aktywna {
       display: flex;
   }
   
   .lista-glownej-nawigacji li {
       margin: 0.5rem 0;
   }
   
   .główny-tytuł {
       font-size: 1.875rem;
   }
   
   .opis-główny {
       font-size: 1rem;
   }
   
   .główne-funkcje-siatka {
       grid-template-columns: 1fr;
   }
   
   .siatka-płatności,
   .karty-kasyn,
   .siatka-cech,
   .siatka-praktyk,
   .siatka-terminów {
       grid-template-columns: 1fr;
   }
   
   .tabela-rankingu,
   .tabela-porównawcza {
       font-size: 0.875rem;
   }
   
   .tabela-rankingu th,
   .tabela-rankingu td,
   .tabela-porównawcza th,
   .tabela-porównawcza td {
       padding: 0.5rem;
   }
   
   .układ-porównania {
       grid-template-columns: 1fr;
       gap: 2rem;
   }
   
   .główne-info-kasyna {
       flex-direction: column;
       text-align: center;
   }
   
   .profil-eksperta {
       flex-direction: column;
       text-align: center;
   }
   
   .element-błędu {
       flex-direction: column;
       text-align: center;
   }
   
   .numer-błędu {
       align-self: center;
   }
   
   .nawigacja-stopki {
       grid-template-columns: repeat(2, 1fr);
   }
   
   .certyfikaty {
       gap: 1rem;
   }
   
   .element-certyfikatu {
       width: 120px;
       height: 50px;
   }
   
   .sekcja-pomocy-stopki {
       grid-template-columns: 1fr;
   }
   
   .linki-prawne {
       flex-direction: column;
       gap: 1rem;
   }
}

@media (max-width: 480px) {
   .pojemnik {
       padding: 0 0.75rem;
   }
   
   section {
       padding: 2rem 0;
   }
   
   .tytuł-sekcji,
   .tytuł-procesu,
   .tytuł-cech,
   .tytuł-recenzji {
       font-size: 1.5rem;
   }
   
   .główny-tytuł {
       font-size: 1.5rem;
   }
   
   .karta-kasyno {
       margin-bottom: 1.5rem;
   }
   
   .główne-dane-kasyno {
       padding: 1rem;
   }
   
   .zawartość-kasyno {
       padding: 1rem;
   }
   
   .karta-płatności,
   .karta-cechy,
   .karta-praktyki,
   .karta-terminu {
       padding: 1rem;
   }
   
   .element-przepływu {
       margin-bottom: 2rem;
   }
   
   .nagłówek-przepływu {
       padding: 1.5rem;
       flex-direction: column;
       text-align: center;
       gap: 0.5rem;
   }
   
   .zawartość-przepływu {
       padding: 1.5rem;
   }
   
   .blok-pytania {
       margin: 0.5rem 0;
   }
   
   .nagłówek-pytania {
       padding: 1rem;
   }
   
   .zawartość-odpowiedzi {
       padding: 0 1rem 1rem;
   }
}

/* Print styles */
@media print {
   .burger-przycisk,
   .przyciski-działania,
   .przycisk-graj-kasyno,
   .przycisk-graj-kasyna-recenzja,
   .przycisk-wsparcia {
       display: none;
   }
   
   body {
       background: white;
       color: black;
   }
   
   .blask-naglowek {
       background: #8b5cf6;
       -webkit-print-color-adjust: exact;
   }
   
   .karta-kasyno,
   .karta-płatności,
   .karta-cechy {
       break-inside: avoid;
       page-break-inside: avoid;
   }
   
   h1, h2, h3, h4, h5, h6 {
       break-after: avoid;
       page-break-after: avoid;
   }
}