body {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #00247d; /* British blue */
}

.page-header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid #00247d;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 5px;
    font-style: italic;
}

.content-wrapper h2 {
    margin-top: 30px;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}

.casino-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.casino-item img {
    flex-shrink: 0;
    width: 180px;
    height: auto;
    border-radius: 8px;
}

.casino-item-content {
    flex: 1;
}

.casino-item h3 {
    margin-top: 0;
    color: #00247d; /* British blue */
    font-size: 1.8rem;
    font-weight: bold;
}

.casino-item p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.casino-item .btn-visit {
    margin-top: 15px;
    background-color: #d62828; /* British red */
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.casino-item .btn-visit:hover {
    background-color: #a32020;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.casino-showcase, .guide-section, .comparison-section {
    margin-top: 40px;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.casino-table th, .casino-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.casino-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.rich-text-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    margin-top: 40px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.rich-text-section h2 {
    font-size: 2rem;
    color: #002f6c;
    margin-bottom: 20px;
}

.rich-text-section h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    color: #003e9d;
}

.rich-text-section p {
    margin-bottom: 18px;
}

.rich-text-section ul {
    margin-left: 20px;
    list-style-type: disc;
}

@media (max-width: 768px) {
    .casino-list {
        flex-direction: column;
        gap: 15px;
    }

    .casino-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .casino-item img {
        width: 100%;
        max-width: 300px;
    }

    .casino-item-content {
        text-align: center;
    }

    .rich-text-section {
        padding: 20px;
    }

    .casino-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border: none;
    }

    .casino-table th, .casino-table td {
        display: inline-block;
        width: auto;
        min-width: 120px;
        border: 1px solid #ccc;
        padding: 8px;
        text-align: left;
    }

    .casino-table th {
        background-color: #f1f1f1;
        font-weight: bold;
    }

    .comparison-section {
        display: none;
    }
}
