* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}
nav {
    background: #2c3e50;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-container a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
}
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;
}
h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}
.intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1.1em;
}
.summary {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}
.summary ol {
    padding-left: 20px;
}
.summary li {
    padding: 8px 0;
}
.summary a {
    color: #2980b9;
    text-decoration: none;
}
.summary a:hover {
    text-decoration: underline;
}
.casino-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    aspect-ratio: 686 / 205;
}
.casino-banner[width="1200"] {
    aspect-ratio: 16 / 9;
}
.casino-description {
    margin: 20px 0;
}
.casino-description p {
    margin-bottom: 15px;
}
.table-wrapper {
    position: relative;
    overflow-x: auto;
    margin: 20px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.casino-table {
    min-width: 600px;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background: #3498db;
    color: white;
    font-weight: bold;
}
tr:hover {
    background: #f5f5f5;
}
.advantages, .disadvantages {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
}
.advantages {
    background: #d4edda;
}
.disadvantages {
    background: #f8d7da;
}
.advantages ul, .disadvantages ul {
    list-style: none;
    padding-left: 0;
}
.advantages li:before {
    content: "✅ ";
}
.disadvantages li:before {
    content: "❌ ";
}
.table-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.table-scroll-btn-left {
    left: 10px;
}
.table-scroll-btn-right {
    right: 10px;
}
.modification-date {
    color: #7f8c8d;
    font-size: 0.9em;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}
.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 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;
}
.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%;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info h4 {
    margin: 0 0 10px 0;
}
.author-social-links a {
    color: #3498db;
    text-decoration: none;
    margin-right: 10px;
}
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.contact-info {
    margin: 30px 0;
}
.contact-details {
    margin: 30px 0;
}
.contact-details h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}
.contact-details p {
    margin-bottom: 15px;
}
.contact-details a {
    color: #3498db;
    text-decoration: none;
}
.contact-details a:hover {
    text-decoration: underline;
}
.contact-note {
    margin-top: 30px;
    padding: 15px;
    background: #e8f4f8;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    .container {
        padding: 10px;
    }
    .author-block {
        flex-direction: column;
        text-align: center;
    }
    .casino-banner {
        width: 100%;
        height: auto;
    }
}

