* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background-color: #ff6a00;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ee0979;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px;
}

.site-header {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
}

.site-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.25;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: #1b5e20;
}

@media (max-width: 767px) {
    .site-logo {
        font-size: 1.5rem;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    background-image: url('../images/hero-section.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff6a00;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-title:hover {
    transform: translateY(-10px);
}


.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.hero-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #2e7d32;
}

.hero-card i {
    font-size: 40px;
    color: #2e7d32;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.hero-card i:hover {
    color: #ff6a00;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #2e7d32;
}

.hero-card p {
    font-size: 1rem;
    color: #333;
}

.scroll-button {
    background-color: #2e7d32;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background-color: #1b5e20;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cards {
        flex-direction: column;
        gap: 15px;
    }

    .hero-card {
        width: 100%;
    }
}

.casino-catalog {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.casino-card {
    width: 350px;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.casino-logo img {
    background-color: #ff6a00;
    padding: 6px;
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: contain;
}

.casino-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.bonus-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.casino-rating i {
    color: #ff6a00;
    font-size: 1.2rem;
}

.casino-rating i.fas.fa-star-half-alt {
    color: #ffb400;
}

.casino-rating i.far.fa-star {
    color: #ccc;
}

.disclaimer {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.casino-button {
    display: inline-block;
    background-color: #2e7d32;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.casino-button:hover {
    background-color: #1b5e20;
}

.site-benefits {
    padding: 60px 20px;
    background-color: #f2f2f2;
    text-align: center;
    transform: skewY(-3deg);
    margin-top: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #3e3e3e;
    text-transform: uppercase;
    margin-bottom: 40px;
    transform: skewY(3deg);
    display: inline-block;
}

.benefit-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit-card {
    background-color: #ffffff;
    width: 250px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(3deg);
}

.benefit-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    color: #ff6a00;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover i {
    color: #e65100;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .benefit-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .benefit-card {
        width: 100%;
        transform: rotate(0deg);
    }

    .benefit-card i {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

.certificates {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.certificate-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.certificate-card {
    background-color: #ffffff;
    width: 250px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.certificate-logo {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    object-fit: contain;
}

.certificate-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.certificate-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .certificate-cards {
        gap: 20px;
    }

    .certificate-card {
        width: 100%;
        padding: 20px;
    }

    .certificate-logo {
        margin-bottom: 15px;
    }

    .certificate-card h3 {
        font-size: 1.3rem;
    }

    .certificate-card p {
        font-size: 0.9rem;
    }
}

.site-footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #ccc;
}

.disclaimer strong {
    color: #ff6a00;
}

.helpful-links {
    margin-bottom: 40px;
}

.helpful-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.resource-logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.resource-logo:hover {
    transform: scale(1.1);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-link {
    color: #ff6a00;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.footer-link:hover {
    color: #ee0979;
}

.footer-copy {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 20px;
}

.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
    padding: 20px;
}

.cookie-consent-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.cookie-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.accept-btn {
    background-color: #28a745;
    color: white;
}

.decline-btn {
    background-color: #dc3545;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.age-gate-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
}

.age-gate-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.age-gate-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.age-gate-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
}

.age-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.confirm-btn {
    background-color: #28a745;
    color: white;
}

.decline-btn {
    background-color: #dc3545;
    color: white;
}

.age-btn:hover {
    opacity: 0.8;
}