:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --text-color: #2b2d42;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

.age-verification {
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.age-verification-content {
    max-width: 600px;
    margin: 0 auto;
}

.age-verification h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.age-verification p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.age-btn {
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.age-btn-yes {
    background-color: var(--primary-color);
    color: var(--white);
}

.age-btn-yes:hover {
    background-color: #d32f2f;
    color: var(--white);
}

.age-btn-no {
    background-color: #666;
    color: var(--white);
}

.age-btn-no:hover {
    background-color: #555;
    color: var(--white);
}

@media (max-width: 768px) {
    .age-verification {
        padding: 320px 10px;
    }

    .age-verification h2 {
        font-size: 20px;
    }

    .age-verification p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .age-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.topbar i {
    margin-right: 6px;
}

.age-disclaimer, .responsible-gaming {
    display: flex;
    align-items: center;
}

.hero-section {
    background-color: var(--light-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.last-update {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-section {
    padding: 60px 0;
    background-color: var(--white);
}

.info-sections {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.info-block {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
}

.section-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-block h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.offer-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

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

.welcome-bonus h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.bonus-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bonus-terms {
    font-size: 14px;
    color: #666;
}

.pros-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.pros-list i {
    color: #28a745;
    margin-right: 8px;
}

.score-box {
    text-align: center;
}

.score {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.score-stars {
    color: #ffc107;
    font-size: 18px;
}

.visit-site-btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offer-disclaimer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.offer-disclaimer i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .topbar {
        font-size: 12px;
    }

    .offer-card {
        padding: 20px;
    }

    .offer-card .row > div {
        margin-bottom: 20px;
        text-align: center;
    }

    .pros-list ul {
        display: inline-block;
        text-align: left;
    }

    .visit-site-btn {
        width: auto;
        display: inline-flex;
    }

    .info-block {
        margin-bottom: 30px;
        text-align: center;
    }
}

.site-footer {
    padding: 60px 0 30px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-partners {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-partners img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-partners a:hover img {
    opacity: 1;
}

.footer-info {
    margin-bottom: 40px;
}

.footer-info .info-block {
    margin-bottom: 35px;
    background: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
}

.footer-info .info-block:hover {
    transform: none;
}

.footer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-links {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-partners {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .footer-partners .col-4 {
        margin-bottom: 20px;
    }

    .footer-links .col-auto {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-links a {
        display: block;
        padding: 8px 0;
    }

    .footer-links a::after {
        left: 25%;
        right: 25%;
    }
}

.policy-content {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.back-home {
    position: fixed;
    top: 100px;
    left: 30px;
    z-index: 100;
}

.back-home-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-home-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-home {
        position: static;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .back-home-btn {
        display: inline-flex;
    }
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
}

.policy-section {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.policy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #666;
}

.policy-section ul li:before {
    content: "\F26C";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .policy-content {
        padding: 40px 0;
    }

    .policy-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policy-section {
        padding: 20px;
    }
}
