* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    background: #1a1f2c;
    color: #fff;
    padding: 20px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav a {
    color: #ddd;
    text-decoration: none;
}
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-primary {
    background: #ff9900;
    color: #111;
}
.btn-primary:hover {
    background: #e68a00;
}
.btn-action {
    background: #28a745;
    color: #fff;
    padding: 8px 16px;
}
.btn-action:hover {
    background: #218838;
}
.btn-secondary {
    background: #007bff;
    color: #fff;
}
.casino-list, .seo-content, .faq-section {
    padding: 50px 0;
}
.casino-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.casino-table th, .casino-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.casino-table th {
    background: #f1f3f5;
}
.cta-box {
    background: #e9ecef;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}
.faq-item {
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}
.footer {
    background: #111;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}
.footer .disclaimer {
    margin-top: 10px;
    font-size: 12px;
}
