:root {
    --primary-color: #2C3E50;
    --secondary-color: #E74C3C;
    --dark-bg: #1a1a1a;
    --text-color: #ECEFF1;
    --feature-bg: #2c2c2c;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
    padding: 40px 0;
}

.feature-box {
    background-color: var(--feature-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}

/* Listing Section */
.listings {
    padding: 40px 0;
}

.listing-item {
    background-color: var(--feature-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.listing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.site-logo {
    text-align: center;
    padding: 10px;
}

.site-logo img {
    max-width: 120px;
    height: auto;
}

.bonus-info {
    text-align: center;
}

.bonus-info h4 {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 10px;
    opacity: 0.8;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.bonus-details {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.score-info {
    text-align: center;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.score span {
    font-size: 1rem;
    opacity: 0.7;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.pros ul li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.btn-register {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    color: #ffffff;
}

/* Responsive Styles for Listing Section */
@media (max-width: 768px) {
    .listing-item {
        padding: 15px;
    }

    .site-logo img {
        max-width: 80px;
    }

    .bonus-amount {
        font-size: 1.4rem;
    }

    .score {
        font-size: 1.6rem;
    }

    .pros ul li {
        font-size: 0.8rem;
    }

    .btn-register {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    [class*="col-"] {
        margin-bottom: 15px;
    }
}

/* Text Sections */
.text-sections {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.text-block {
    background-color: var(--feature-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-block h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-block .content {
    color: var(--text-color);
}

.text-block p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.text-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.text-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.text-block ul li:before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.2em;
    position: absolute;
    left: 5px;
}

.age-warning {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-weight: 600;
}

.age-warning i {
    margin-right: 10px;
    font-size: 1.2em;
}

.help-info {
    background-color: rgba(44, 62, 80, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.help-info p {
    margin-bottom: 10px;
}

.help-contact, .help-website {
    font-weight: 500;
}

.help-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-info a:hover {
    color: #ffffff;
}

/* Responsive Styles for Text Sections */
@media (max-width: 768px) {
    .text-sections {
        padding: 40px 0;
    }

    .text-block {
        padding: 20px;
        margin-bottom: 20px;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

    .age-warning {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding-top: 40px;
}

/* Trusted Partners Section */
.trusted-partners {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Footer Content */
.footer-content {
    padding: 40px 0;
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.help-line, .contact-info {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 15px;
}

/* Footer Links */
.footer-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .partner-logos {
        justify-content: center;
    }

    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-block {
        text-align: center;
    }
}

/* Policy Pages Styles */
.policy-page {
    background-color: var(--dark-bg);
    color: var(--text-color);
    padding: 60px 0;
    min-height: 100vh;
}

.policy-content {
    background-color: var(--feature-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-section ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 5px;
    font-size: 1.2em;
}

.help-resources {
    background-color: rgba(44, 62, 80, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.btn-back {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    color: #ffffff;
}

.back-to-home {
    text-align: center;
}

/* Responsive Styles for Policy Pages */
@media (max-width: 768px) {
    .policy-page {
        padding: 30px 0;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section p, 
    .policy-section ul li {
        font-size: 0.95rem;
    }
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal-content {
    background-color: var(--feature-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(231, 76, 60, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.age-modal-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.age-modal-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.age-modal-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.age-btn-enter {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
    color: #ffffff;
}

.age-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.age-btn-leave {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.age-btn-leave:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .age-modal-content {
        padding: 30px;
    }
    
    .age-modal-title {
        font-size: 1.5rem;
    }
    
    .age-modal-text {
        font-size: 1rem;
    }
    
    .age-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
} 