:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: url('../img/back.jpg') fixed center/cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Affiliate Header */
.affiliate-header {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.affiliate-header p {
    margin: 0;
    text-align: center;
}

.affiliate-header i {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    color: #fff;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.trust-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 24px;
    color: var(--accent-color);
}

.trust-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .trust-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }
}

/* Listings Section */
.listings-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 40px 0;
}

.listing-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.listing-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.listing-item:hover {
    transform: translateY(-5px);
}

.editors-choice {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #FFD700;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.casino-brand {
    display: flex;
    justify-content: center;
}

.casino-brand img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.casino-brand img:hover {
    transform: scale(1.05);
}

.brand-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.features-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-visit {
    background: #28a745;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-visit:hover {
    background: #218838;
    color: #fff;
    transform: translateY(-2px);
}

.disclaimer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.disclaimer p {
    margin: 0;
}

.license {
    color: #888;
    font-size: 0.75rem;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 991px) {
    .listing-header {
        font-size: 0.9rem;
    }

    .listing-content {
        text-align: center;
    }

    .casino-brand {
        justify-content: center;
        margin-bottom: 15px;
    }

    .features-list {
        margin-bottom: 15px;
    }

    .rating, .score {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .hero-section .hero-image {
        display: none;
    }

    .features-list li:before {
        display: none;
    }

    .features-list li {
        padding-left: 0;
        text-align: center;
    }

    .listing-header {
        display: none;
    }

    .listing-content {
        flex-direction: column;
    }

    .listing-content > div {
        margin-bottom: 15px;
        width: 100%;
    }

    .btn-visit {
        width: 100%;
    }
}

/* Information Sections */
.info-sections {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 40px 0;
}

.info-block {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-block p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.info-block ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 1.1rem;
}

.info-block ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
}

.important-notice {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    font-weight: 500;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .info-sections {
        padding: 30px 0;
    }

    .info-block {
        padding: 20px;
        margin-bottom: 30px;
    }

    .info-block h2 {
        font-size: 1.5rem;
    }

    .info-block p, 
    .info-block ul li {
        font-size: 1rem;
    }

    .info-block ul li {
        padding-left: 0;
    }

    .info-block ul li:before {
        display: none;
    }

    .important-notice {
        padding: 15px;
        text-align: center;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-row {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.footer-row:last-child {
    border-bottom: none;
}

/* Disclaimer Row */
.disclaimer-row {
    text-align: center;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.age-logo {
    width: 60px;
    height: auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    max-width: 800px;
}

.disclaimer-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-text a:hover {
    text-decoration: underline;
}

/* Payment Methods Row */
.payment-row {
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 30px;
    width: auto;
}


/* Regulatory Text Row */
.regulatory-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.regulatory-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.regulatory-text a:hover {
    text-decoration: underline;
}

/* Pages Links Row */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

/* Copyright Row */
.copyright-row {
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 30px 0 20px;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 15px;
    }

    .age-logo {
        width: 50px;
    }

    .disclaimer-text {
        font-size: 0.8rem;
    }

    .payment-methods {
        gap: 15px;
    }

    .payment-methods img {
        height: 25px;
    }

    .regulatory-text {
        font-size: 0.8rem;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }
}

/* Common styles for all policy pages */
.content-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-block {
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.section-block:hover {
    transform: translateY(-5px);
}

.section-block h2 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.section-block ul {
    list-style-type: none;
    padding-left: 0;
}

.section-block ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.section-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Privacy Policy Page Specific Styles */
.privacy-policy .section-block {
    background: linear-gradient(to right, #f1f9fe, #e8f4fd);
    border-left: 4px solid #3498db;
}

.privacy-policy .section-block h2 {
    color: #2980b9;
}

.privacy-policy .section-block ul li:before {
    color: #3498db;
}

/* Terms of Service Page Specific Styles */
.terms-of-service .section-block {
    background: linear-gradient(to right, #f5f0fe, #efe7fd);
    border-left: 4px solid #9b59b6;
}

.terms-of-service .section-block h2 {
    color: #8e44ad;
}

.terms-of-service .section-block ul li:before {
    color: #9b59b6;
}

/* Bonus Policy Page Specific Styles */
.bonus-policy .section-block {
    background: linear-gradient(to right, #eefaf6, #e5f6f0);
    border-left: 4px solid #27ae60;
}

.bonus-policy .section-block h2 {
    color: #27ae60;
}

.bonus-policy .section-block ul li:before {
    color: #27ae60;
}

/* Gaming Responsibly Page Specific Styles */
.gaming-responsibly .section-block {
    background: linear-gradient(to right, #fff5f5, #ffe8e8);
    border-left: 4px solid #e74c3c;
}

.gaming-responsibly .section-block h2 {
    color: #c0392b;
}

.gaming-responsibly .section-block ul li:before {
    color: #e74c3c;
}

.gaming-responsibly .important-notice {
    background: #fee7e7;
    border: 2px solid #e74c3c;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.gaming-responsibly .important-notice h2 {
    color: #c0392b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px;
        margin: 15px;
    }

    .section-block {
        padding: 20px;
        margin-bottom: 30px;
    }

    .section-block h2 {
        font-size: 1.5rem;
    }
}

/* Back to Home Button */
.back-to-home {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    padding: 12px 24px;
    background: #ffffff;
    color: #2c3e50;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-home:hover {
    background: #f8f9fa;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-home i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .back-to-home {
        top: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Navigation Bar */
.main-nav {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 10px 0;
    }

    .nav-logo img {
        height: 30px;
    }

    .nav-logo span {
        font-size: 1.2rem;
    }
}

/* Adjust back-to-home button position to account for navbar */
.back-to-home {
    top: 90px;
}

@media (max-width: 768px) {
    .back-to-home {
        top: 70px;
    }
} 