:root {
    --primary-color: #e31837;
    /* A deeper red for Canadian theme */
    --secondary-color: #b71c1c;
    --text-color: #333;
    --background-light: #F7F7F7;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    background: radial-gradient(circle at top, #ffffff, var(--background-light));
    color: var(--text-color);
    font-size: 18px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    background: #fff;
    padding: 10px;
    z-index: 1000;
}

header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    /* Reduce height for a slimmer look */
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

header nav {
    margin-top: 10px;
}

.responsible-link {
    color: #fff;
    text-decoration: underline;
    font-size: 1rem;
}

header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
}

section {
    padding: 40px 60px;
    margin: 40px auto;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.8;
}

.tips-section {
    margin-bottom: 60px;
}


ul, ol {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding: 0;
    list-style-position: inside;
}

footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.earnings-summary {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-responsible {
    font-size: 1.1rem;
}

.footer-responsible a {
    color: #fff;
    text-decoration: underline;
}

h1, h2 {
    margin-top: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 20px;
}

/* Casino card layout */
.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.casino-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.3s;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.casino-card .logo {
    width: 80px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.tags {
    margin: 10px 0;
}

.tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    margin: 2px;
}

.visit-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.visit-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
}

a {
    transition: color 0.2s;
}

a:hover {
    color: var(--secondary-color);
}

li i {
    margin-right: 6px;
    color: var(--primary-color);
}

.casino-card p i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.average-note {
    font-size: 0.85em;
    color: #555;
    margin-top: -5px;
}


@media (max-width: 600px) {
    .casino-card {
        width: 100%;
    }
    .filter-toggle {
        display: inline-block;
        margin-bottom: 10px;
    }
    .filter-options {
        display: none;
        width: 100%;
    }
    .controls select, .controls label {
        margin: 10px 0;
        display: block;
    }
}

.controls {
    margin-bottom: 20px;
    text-align: center;
}
.controls select, .controls label {
    margin: 0 10px;
}
.vip-legend {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
}


.filter-toggle {
    display: none;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.filter-toggle:hover {
    transform: translateY(-2px);
}

.filter-options.show {
    display: block !important;
}

.read-more {
    display: inline-block;
    margin-top: 5px;
}

.filter-message {
    font-weight: bold;
    margin-bottom: 10px;
}

.review-nav {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 40px auto;
}


.review-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.review-nav a:hover {
    text-decoration: underline;
}

.review-nav .prev {
    margin-right: auto;
}

.review-nav .next {
    margin-left: auto;
}

.review-nav .home {
    margin: 0 auto;
}

.blog-post {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.blog-post h2 {
    font-size: 2rem;
    margin-top: 0;
    color: var(--secondary-color);
}
.blog-post h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    color: var(--primary-color);
}
.blog-post p,
.blog-post li {
    margin-bottom: 15px;
}

.blog-post .meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.blog-post p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post ul {
    list-style-type: disc;
    padding-left: 20px;
}

.blog-post a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-post a:hover {
    color: var(--secondary-color);
}

.blog-post blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.blog-post .conclusion {
    font-weight: bold;
    margin-top: 30px;
}

.blog-post .author-box {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.blog-post .author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.blog-post .author-box p {
    margin: 0;
}

.blog-post .author-box strong {
    display: block;
    font-size: 1.2rem;
}

.blog-post .social-share {
    margin-top: 30px;
    text-align: center;
}

.blog-post .social-share a {
    margin: 0 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.blog-post .social-share a:hover {
    color: var(--secondary-color);
}

.blog-post .comments-section {
    margin-top: 40px;
}

.blog-post .comments-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.blog-post .comment {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-post .comment:last-child {
    border-bottom: none;
}

.blog-post .comment p {
    margin: 0;
}

.blog-post .comment strong {
    display: block;
    margin-bottom: 5px;
}

.blog-post .comment-form {
    margin-top: 30px;
}

.blog-post .comment-form h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.blog-post .comment-form input,
.blog-post .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.blog-post .comment-form button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blog-post .comment-form button:hover {
    background-color: var(--secondary-color);
}

.review-logo{
    display:block;
    margin:0 auto 20px;
    width:100px;
    height:auto
}
