/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Futura', sans-serif;
}

body {
    background: #f5f5f5; /* Light gray background */
    color: #333; /* Dark gray text */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: url('img/horserace.jpg') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed; /* Subtle parallax */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(183 37 217 / 82%), rgb(0 0 0 / 70%)); /* Light overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.site-logo {
    width: 250px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    /* text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); /* Softer gold shadow */
    color: #fff;
}

.subheadline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #fff;
}

.subline {
    margin: 0 auto 30px;
    width: 75%;
    font-size: 1.2rem;
    opacity: 0.9;
    color: #555;

}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ab0bff, #ffb900); /* Keep vibrant gradient */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Lighter shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsible Gaming Logos */
.responsible-gaming {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: #b725d9; /* Subtle gray background */
    padding: 15px;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gaming-logo {
    width: 150px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.gaming-logo:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff; /* White background */
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222; /* Softer gold */
}

.benefits-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #b725d9; /* Very light gray */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #fff;
}

/* Comparison Section */
.comparison {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

th {
    background: #b725d9;
    color: #fff;
    font-weight: 700;
}

td {
    border-bottom: 1px solid #ddd;
    color: #555;
}

tr:hover {
    background: #e5e5e5; /* Light hover effect */
}

.casino-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.offer-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ab0bff, #ffb900);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Social Proof Section */
.social-proof {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.stats {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

blockquote {
    font-style: italic;
    color: #b725d9;
    margin-top: 20px;
}

/* Latest Blogs Section */
.latest-blogs {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.blogs-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #b725d9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.2rem;
    color: #fff;
    padding: 15px 15px 10px;
    margin: 0;
}

.blog-card p {
    font-size: 0.9rem;
    padding: 0 15px 15px;
    color: #fff;
    margin: 0;
}

/* Payment Methods Section */
.payment-methods {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.payment-logo {
    width: 150px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.payment-logo:hover {
    transform: scale(1.05);
}

.payment-info {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.info-column {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    margin-bottom: 15px;
    stroke: #b725d9; /* Adjust icon color */
}

.info-column h3 {
    font-size: 1.3rem;
    color: #b725d9;
    margin-bottom: 10px;
}

.info-column p {
    font-size: 0.9rem;
    color: #555;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #b725d9;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.9rem;
    color: #555;
}

/* Footer */
footer {
    padding: 30px 20px;
    text-align: center;
    background: #e5e5e5; /* Light gray footer */
    font-size: 0.9rem;
    border-top: 1px solid #b725d9;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #b725d9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff4d4d;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Slightly lighter overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    font-size: 1.8rem;
    color: #b725d9;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.popup-button {
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff4d4d, #ffd700);
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Age Restricted Message */
.age-restricted {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
}

.age-restricted h2 {
    font-size: 2rem;
    color: #b725d9;
    margin-bottom: 20px;
}

.age-restricted p {
    font-size: 1.2rem;
    color: #555;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .subheadline {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .casino-logo {
        width: 100px;
        height: 100px;
    }

    .offer-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .responsible-gaming {
        gap: 15px;
        padding: 10px;
    }

    .gaming-logo {
        width: 120px;
        height: 40px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blogs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-content {
        max-width: 900px;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .responsible-gaming {
        flex-direction: column;
    }

    .gaming-logo {
        width: 100px;
        height: 35px;
    }

    .casino-logo {
        width: 35px;
        height: 35px;
    }

    .offer-button {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .payment-logo {
        width: 120px;
        height: 40px;
    }
}