:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #2C3E50;
    --light-bg: #ECF0F1;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: url('../img/back.jpeg') repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.97), rgba(52, 152, 219, 0.97));
    z-index: -1;
}

/* Topbar Styles */
.topbar {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.9rem;
}

.topbar i {
    color: #FFF;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Hero Section Styles */
.hero-section {
    padding: 5rem 0;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.features-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    text-align: center;
    flex: 1;
}

.feature-item i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.compliance-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 1.5rem 0;
    padding: 0.5rem 0;
    border-left: 4px solid #28a745;
    padding-left: 1rem;
    background-color: rgba(40, 167, 69, 0.05);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }

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

    .features-row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Listing Section Styles */
.listing-section {
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin: 2rem 0;
}

.listing-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.casino-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.casino-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.casino-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.rank-badge {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.casino-brand h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.features-list li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.features-list i {
    color: #2ecc71;
    margin-right: 0.5rem;
}

.rating {
    color: #f1c40f;
    font-size: 1.2rem;
}

.score {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-visit {
    background-color: #2ecc71;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-visit:hover {
    background-color: #27ae60;
    color: white;
    transform: translateY(-2px);
}

.disclaimer-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #666;
}

.disclaimer-row i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Responsive Styles for Listing */
@media (max-width: 991.98px) {
    .listing-header {
        display: none;
    }
    
    .casino-item .row {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-item .col-md-3,
    .casino-item .col-md-2 {
        margin-bottom: 1rem;
    }
    
    .casino-brand {
        justify-content: center;
    }
    
    .features-list {
        display: inline-block;
        text-align: left;
    }
    
    .btn-visit {
        max-width: 200px;
    }

    .casino-logo {
        max-width: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .casino-logo {
        max-width: 120px;
    }
}

/* Information Sections Styles */
.info-sections {
    padding: 4rem 0;
}

.info-block {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.7;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.info-block h2 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(44, 62, 80, 0.1);
    position: relative;
}

.info-block h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.info-block p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Special styling for disclaimers */
.info-block.disclaimers {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    border: none;
    color: white;
    position: relative;
}

.info-block.disclaimers::before {
    background: #E74C3C;
}

.info-block.disclaimers h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.info-block.disclaimers h2::after {
    background: #E74C3C;
}

.info-block.disclaimers p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.info-block.disclaimers::after {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
}

/* Enhanced responsive styles */
@media (max-width: 767.98px) {
    .info-sections {
        padding: 2rem 0;
    }

    .info-block {
        padding: 1.8rem;
    }

    .info-block h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .info-block p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .info-block.disclaimers::after {
        font-size: 1.2rem;
        right: 15px;
        top: 15px;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(255, 255, 255, 0.98);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

/* Footer Links */
.footer-links {
    margin-bottom: 3rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -5px;
    color: rgba(44, 62, 80, 0.3);
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(44, 62, 80, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.footer-disclaimer p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.payment-icon {
    height: 40px;
    width: auto;
    margin: 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Regulatory Info */
.regulatory-info {
    margin-bottom: 2rem;
}

.regulatory-info p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.regulatory-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.regulatory-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Copyright */
.copyright {
    text-align: center;
}

.copyright p {
    color: var(--text-color);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-links {
        margin-bottom: 2rem;
    }

    .footer-link {
        display: block;
        text-align: center;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .footer-link:not(:last-child)::after {
        display: none;
    }

    .payment-methods .row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-icon {
        margin: 10px;
    }

    .regulatory-info p {
        font-size: 0.8rem;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
}

.policy-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-content h1 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-block h3 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.policy-block p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-block ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.policy-block li {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-block.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.policy-block.alert-warning h2 {
    color: #856404;
}

/* Responsive Policy Styles */
@media (max-width: 767.98px) {
    .policy-section {
        padding: 2rem 0;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-block {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .policy-block h2 {
        font-size: 1.3rem;
    }

    .policy-block p {
        font-size: 1rem;
    }
}

.age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-verification-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-verification-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.age-verification-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verification-buttons button {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.age-verification-popup.hidden {
    display: none;
} 