* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #14387F;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 32px;
    height: 32px;
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

/* Main container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.main-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    text-align: center;
}

/* Casino list */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: 70px 200px 2fr 200px;
    gap: 15px;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* Casino item elements */
.rank {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    text-align: center;
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
}

.casino-logo img {
    max-width: 100%;
    height: auto;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.casino-score {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.feature-icon {
    color: #14387F;
    font-size: 1rem;
}

.payment-section {
    margin-top: 5px;
}

.payment-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.payment-methods {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}
.payment-methods img{
    width: 100%;
    max-width: 30px;
    height: auto;
    object-fit: contain;
}

.payment-method {
    font-size: 0.8rem;
    color: #888;
}

.action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.play-btn {
    background-color: #14387F;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #0e2b62;
}

.min-deposit {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

/* FAQ and other sections from the original code */
.faq-section,
.responsible-gaming,
.footer {
    /* keeping original styles */
    margin-top: 60px;
}
@media(max-width:1024px){
    .casino-item, .casino-info{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
/* Responsive layout */
@media (max-width: 900px) {
    .casino-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        padding: 20px;
        gap: 20px;
    }

    .rank {
        font-size: 1.5rem;
        text-align: left;
    }

    .casino-logo {
        max-width: 200px;
    }

    .casino-score {
        font-size: 1.8rem;
    }

    .action {
        width: 100%;
    }
}



/* Responsible Gaming Section */
.responsible-gaming {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #222;
}

.responsible-text {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    color: #444;
    line-height: 1.7;
}

.responsible-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.gaming-orgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 30px auto;
    padding: 20px 0;
}

.gaming-orgs img {
    height: 50px;
    width: auto;
    background-color: #000;
    padding: 10px;
    border-radius: 10px;
}


/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #14387F;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #14387F;
    margin-bottom: 15px;
}

.faq-answer {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: #14387F;
    padding: 40px 20px;
    color: #fff;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer p {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ccc;
    text-decoration: underline;
}

.age-restriction img {
    width: 60px;
    height: 60px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gaming-orgs {
        gap: 15px;
    }

    .gaming-orgs img {
        height: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}