* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after {
    max-width: 100%;
    box-sizing: border-box;
}
html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}
nav {
    background: #2c3e50;
    color: white;
    padding: 15px 0;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}
nav .nav-links a {
    font-weight: normal;
    font-size: 1em;
    margin-left: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
    flex-wrap: wrap;
}
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a1a;
}
h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}
h2[id] {
    scroll-margin-top: 80px;
}
h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}
h4 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}
.intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1.1em;
}
.casino-banner {
    width: 100%;
    max-width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}
.casino-description p {
    margin-bottom: 20px;
}
.casino-list {
    list-style: none;
    padding: 0;
}
.casino-item {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.casino-item h3 {
    margin-top: 0;
    color: #2c3e50;
}
table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-sizing: border-box;
    table-layout: auto;
}
.table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    display: block;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    box-sizing: border-box;
}
.table-wrapper::-webkit-scrollbar {
    height: 12px;
}
.table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.table-wrapper table {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: table;
    table-layout: auto;
    word-wrap: break-word;
}
.table-wrapper th,
.table-wrapper td {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.table-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 62, 80, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s;
}
.table-scroll-btn:hover {
    background: rgba(44, 62, 80, 1);
}
.table-scroll-btn-left {
    left: 10px;
}
.table-scroll-btn-right {
    right: 10px;
}
.table-wrapper:hover .table-scroll-btn {
    display: flex;
}
.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: table;
    min-width: 100%;
}
.casino-table thead {
    background: #2c3e50;
}
.casino-table th {
    background: #2c3e50;
    color: white;
    font-weight: bold;
    padding: 15px;
    text-align: left;
}
.casino-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}
.casino-table tbody tr:hover {
    background: #f8f9fa;
}
.casino-table tbody tr:last-child td {
    border-bottom: none;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background: #3498db;
    color: white;
    font-weight: bold;
}
tr:hover {
    background: #f5f5f5;
}
.cta-button {
    display: none;
}
.summary {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}
.summary ul {
    list-style: none;
    padding-left: 0;
}
.summary li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}
.summary li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}
.summary a {
    color: #2c3e50;
    text-decoration: none;
}
.summary a:hover {
    text-decoration: underline;
}
.author-block {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    overflow: hidden;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-social-links {
    display: none;
}
.author-info h4 {
    margin: 0 0 10px 0;
}
.modification-date {
    color: #7f8c8d;
    font-size: 0.9em;
    margin: 20px 0;
}
.advantages, .disadvantages {
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
}
.advantages {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}
.disadvantages {
    background: #ffebee;
    border-left: 4px solid #f44336;
}
.advantages ul, .disadvantages ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}
.advantages li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}
.disadvantages li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}
.advantages li:before {
    content: "✅ ";
    position: absolute;
    left: 0;
}
.disadvantages li:before {
    content: "❌ ";
    position: absolute;
    left: 0;
}
.comparator-shortcode {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}
.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
@media (max-width: 480px) {
    .casino-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-left: 0;
        margin-right: 0;
    }
}
.feature-box {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    text-align: center;
}
.feature-box strong {
    display: block;
    color: #3498db;
    margin-bottom: 5px;
}
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}
footer > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}
footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    word-break: break-word;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    nav .nav-container {
        flex-wrap: wrap;
        gap: 8px;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }
    nav a:first-child {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 100%;
        word-break: break-word;
    }
    nav .nav-links {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        min-width: 0;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    nav .nav-links a {
        margin-left: 0;
        white-space: normal;
        word-break: break-word;
        flex-shrink: 1;
        max-width: 100%;
        box-sizing: border-box;
    }
    nav a {
        font-size: 1em;
        word-break: break-word;
    }
    .container {
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    nav {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    nav .nav-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
        min-width: 0;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .casino-banner {
        height: 50px !important;
        max-width: 100vw;
    }
    table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        display: block;
        -webkit-overflow-scrolling: touch;
    }
    table thead, table tbody, table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0;
        display: block;
        position: relative;
        box-sizing: border-box;
    }
    .table-wrapper table {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: table;
        table-layout: auto;
        min-width: 0;
    }
    .table-wrapper th,
    .table-wrapper td {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    .table-scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .table-scroll-btn-left {
        left: 5px;
    }
    .table-scroll-btn-right {
        right: 5px;
    }
    .table-wrapper::-webkit-scrollbar {
        height: 8px;
    }
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    .container > * {
        max-width: 100%;
        overflow-x: hidden;
    }
    .container .table-wrapper {
        overflow-x: auto;
        max-width: 100%;
    }
    ul, ol {
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 20px;
    }
    p, h1, h2, h3, h4, h5, h6 {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow-x: hidden;
    }
    .intro {
        padding: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        padding: 20px 0;
    }
    footer > div {
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 10px !important;
        width: 100%;
    }
    footer p {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 5px;
    }
    footer a {
        margin: 0 5px;
        display: inline-block;
    }
    table {
        font-size: 0.9em;
    }
    .advantages ul, .disadvantages ul {
        padding-left: 0;
    }
    .advantages li, .disadvantages li {
        padding: 8px 0;
        padding-left: 30px;
        font-size: 0.95em;
    }
    .advantages, .disadvantages {
        padding: 12px;
        margin: 10px 0;
    }
}

