    :root {
    --primary-color: #6a1b9a;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #00c853;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --accent-color: #ff4081;
}

/* Age Disclaimer Topbar */
.age-verification-popup {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a0072 100%);
    color: white;
    padding: 2rem 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.age-verification-popup .container {
    max-width: 800px;
}

.age-verification-popup h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.age-verification-popup p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.9;
}

.age-verification-popup .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.age-verification-popup .btn {
    min-width: 150px;
}

.age-verification-popup .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.age-verification-popup .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 575.98px) {
    .age-verification-popup {
        padding: 18rem 0;
    }
    
    .age-verification-popup h2 {
        font-size: 1.2rem;
    }
    
    .age-verification-popup p {
        font-size: 0.9rem;
    }
    
    .age-verification-popup .buttons {
        flex-direction: column;
    }
    
    .age-verification-popup .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.age-disclaimer-topbar {
    background: linear-gradient(135deg, var(--danger-color) 0%, #c62828 100%);
    color: white;
    padding: 0.75rem 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.age-disclaimer-topbar p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.age-disclaimer-topbar i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.site-logo {
    background-color: var(--dark-color);
    padding: 1.5rem 0;
}

.site-logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-section {
    background-image: url('../img/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.85) 0%, rgba(40, 53, 147, 0.85) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-color);
}

.hero-features .feature-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-features .feature-item i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--accent-color);
}

.hero-features .feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.last-updated i {
    margin-right: 0.75rem;
    color: var(--accent-color);
}

.listing-section {
    padding: 4rem 0;
    background-color: #f9f5ff;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 1.2rem auto 0;
}

.casino-offer {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(106, 27, 154, 0.1);
}

.casino-offer:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.15);
}

.casino-logo {
    text-align: center;
}

.casino-logo img {
    max-width: 150px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 8px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.welcome-bonus h4 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.bonus-extra {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 500;
}

.casino-pros h4 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.casino-pros ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.casino-pros ul li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.casino-pros ul li i {
    color: var(--success-color);
    margin-right: 0.6rem;
    font-size: 1rem;
}

.casino-score {
    text-align: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #9c27b0 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 0.6rem;
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.score-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.casino-cta {
    text-align: center;
}

.btn-cta {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f50057 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
    font-size: 0.9rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.4);
    color: white;
}

.disclaimer {
    margin-top: 1.2rem;
    text-align: center;
    color: var(--secondary-color);
    font-style: italic;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.page-header {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.page-content {
    padding: 4rem 0;
    background-color: #f8f5ff;
}

.content-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.content-card h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-card ul, .content-card ol {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-card strong {
    color: #333;
}

.content-card .last-updated {
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
    margin-top: 3rem;
    text-align: right;
}

.responsible-tool {
    background-color: #f8f5ff;
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.responsible-tool:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.responsible-tool i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.responsible-tool h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.responsible-tool p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.support-resource {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.support-resource h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.support-resource h4 i {
    margin-right: 0.5rem;
}

.responsible-cta {
    background: linear-gradient(135deg, #f9f5ff 0%, #f0e6ff 100%);
    padding: 2rem;
    border-radius: 10px;
}

.responsible-cta h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .responsible-tool {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .responsible-tool i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .support-resource {
        padding-left: 1rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
    
    .page-content {
        padding: 3rem 0;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card h2 {
        font-size: 1.3rem;
    }
    
    .content-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .content-card {
        padding: 1.2rem;
    }
}

.text-sections {
    padding: 4rem 0;
    background-color: #f8f5ff;
}

.text-section {
    margin-bottom: 5rem;
}

.text-section:last-child {
    margin-bottom: 0;
}

.text-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    line-height: 1.7;
}

.text-content p {
    margin-bottom: 1.2rem;
    color: #555;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.feature-list li strong {
    font-weight: 600;
    color: #333;
}

.age-disclaimer-content {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f9f5ff 0%, #f0e6ff 100%);
}

.age-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.age-warning {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer {
    background-color: #2a0845;
    color: #fff;
    padding: 4rem 0 1.5rem;
    background-image: linear-gradient(135deg, #2a0845 0%, #4a0072 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-disclaimer p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.addiction-warning, .age-disclaimer {
    background-color: rgba(220, 53, 69, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 2px solid var(--danger-color);
}

.addiction-warning h4, .age-disclaimer h4 {
    color: var(--danger-color) !important;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.addiction-warning p, .age-disclaimer p {
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 500;
}

.partner-images {
    margin: 2rem 0;
}

.partner-images img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.partner-images a:hover img {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}


@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        margin-bottom: 0;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .casino-offer {
        padding: 1.5rem;
    }
    
    .casino-offer .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .casino-pros ul li {
        justify-content: center;
    }
    
    .hero-features .row > div {
        margin-bottom: 1rem;
    }
    
    .hero-features .feature-item {
        justify-content: center;
    }
    
    .footer-menu {
        gap: 1rem;
        flex-direction: column;
    }
    
    .partner-images .col-4 {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .partner-images img {
        height: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .text-content {
        padding: 1.5rem;
    }
    
    .text-section {
        margin-bottom: 3rem;
    }
    
    .age-icon {
        font-size: 3.5rem;
    }
    
    .age-warning {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .listing-section {
        padding: 4rem 0;
    }
    
    .score-circle {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .text-content {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .text-sections {
        padding: 3rem 0;
    }
    
    .text-section {
        margin-bottom: 2.5rem;
    }
    
    .feature-list li i {
        font-size: 1rem;
    }
    
    .age-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .age-warning {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .age-disclaimer-content {
        padding: 1.5rem 1rem;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-disclaimer h4 {
        font-size: 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.85rem;
    }
    
    .partner-images img {
        height: 35px;
        padding: 0.3rem;
    }
}