:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #2C3E50;
    --light-gray: #F5F6FA;
    --dark-gray: #34495E;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Topbar */
.topbar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.topbar p {
    margin: 0;
    text-align: center;
}

.topbar i {
    margin-right: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    padding: 80px 0;
    color: white;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Text Sections */
.text-sections {
    padding: 60px 0;
    background: white;
}

.text-block {
    margin-bottom: 50px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: translateY(-5px);
}

.text-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.text-block h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.text-block p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.support-resources {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.support-resources h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.support-resources li {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.support-resources strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.support-resources a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-resources a:hover {
    color: var(--secondary-color);
}

/* Trust Badges */
.trust-badges {
    background-color: white;
    padding: 60px 0;
}

.badge-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.badge-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Betting Sites Listing */
.betting-listing {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.betting-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.betting-logo {
    position: relative;
    text-align: center;
}

.betting-logo img {
    max-width: 150px;
    border-radius: 10px;
}


.welcome-bonus h4 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.welcome-bonus p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.betting-score {
    text-align: center;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.score-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.betting-pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.betting-pros li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.betting-pros i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.btn-visit {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-visit:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.betting-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.betting-disclaimer p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Age Disclaimer Section */
.age-disclaimer-section {
    background: var(--light-gray);
    padding: 40px 0;
}

.disclaimer-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.disclaimer-box i {
    color: var(--accent-color);
}

.disclaimer-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.disclaimer-box p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

/* Age Verification Popup */
.age-verify-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verify-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.age-verify-header {
    margin-bottom: 30px;
}

.age-verify-header i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.age-verify-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.age-verify-body p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.age-verify-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-confirm, .btn-leave {
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: var(--secondary-color);
    color: white;
}

.btn-confirm:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-leave {
    background: #f1f1f1;
    color: var(--text-color);
}

.btn-leave:hover {
    background: #e1e1e1;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .age-verify-content {
        padding: 30px 20px;
    }

    .age-verify-buttons {
        flex-direction: column;
    }

    .btn-confirm, .btn-leave {
        width: 100%;
    }

    .disclaimer-box {
        text-align: center;
        padding: 20px;
    }

    .disclaimer-box i {
        margin-bottom: 15px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
    padding: 50px 0;
    color: white;
    margin-bottom: 40px;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

.breadcrumb {
    margin: 15px 0 0;
    padding: 0;
    background: none;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.content-block h3 {
    color: var(--secondary-color);
    margin: 30px 0 20px;
    font-size: 1.5rem;
}

.content-block h4 {
    color: var(--primary-color);
    margin: 20px 0 15px;
    font-size: 1.2rem;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-block ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.support-box {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.support-box h3 {
    color: var(--accent-color);
    margin-top: 0;
}

.support-box p {
    margin: 0;
}

.warning-signs, .control-tools, .help-resources {
    margin: 20px 0;
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-block {
        padding: 20px;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }

    .content-block h3 {
        font-size: 1.3rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

/* Footer Badges */
.footer-badges {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-badges .row {
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-badges .col {
    flex: 0 0 auto;
    width: auto;
    text-align: center;
}

.footer-badges img {
    height: 45px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    object-fit: contain;
}

.footer-badges a {
    display: inline-block;
}

.footer-badges a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* Footer Info Blocks */
.footer-info {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-block p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Footer Links */
.footer-links {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright .small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-badges .row {
        gap: 20px;
    }

    .footer-badges img {
        height: 40px;
    }
}

@media (max-width: 767px) {
    .footer-badges {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .footer-badges .row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-badges .col {
        flex: 0 0 auto;
        width: calc(33.33% - 10px);
        margin-bottom: 15px;
    }

    .footer-badges img {
        height: 35px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-badges .col {
        width: calc(50% - 10px);
    }

    .footer-badges img {
        height: 30px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .betting-item {
        padding: 20px;
    }
    
    .betting-logo img {
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .badge-item {
        margin-bottom: 30px;
    }
    
    .betting-item .row > div {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .betting-pros ul {
        display: inline-block;
        text-align: left;
    }
    
    .btn-visit {
        width: 100%;
    }
}