/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a55eea;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --card-bg: #242424;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

/* Disclaimer Header */
.disclaimer-header {
    background-color: var(--darker-bg);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

/* Hero Image */
.hero-image {
    text-align: right;
    padding: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-image {
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* Listing Section */
.listing-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.listing-header {
    background-color: var(--darker-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.listing-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.listing-item:hover {
    transform: translateY(-5px);
}

.offer-img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.choice-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.btn-visit {
    background-color: #2ecc71;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
}

.btn-visit:hover {
    background-color: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.disclaimer-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive adjustments for listing section */
@media (max-width: 991.98px) {
    .listing-header {
        display: none;
    }

    .listing-item {
        padding: 1.5rem;
    }

    .listing-item .row > div {
        margin-bottom: 1rem;
        text-align: center;
    }

    .features-list {
        display: inline-block;
        text-align: left;
    }

    .score {
        font-size: 1.2rem;
    }

    .btn-visit {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .listing-section {
        padding: 2rem 0;
    }

    .offer-img {
        max-width: 150px;
    }
}

/* Content Sections */
.content-sections {
    padding: 4rem 0;
    background-color: var(--darker-bg);
}

.content-block {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
}

.content-block h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for content sections */
@media (max-width: 991.98px) {
    .content-sections {
        padding: 3rem 0;
    }

    .content-block {
        padding: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .content-sections {
        padding: 2rem 0;
    }

    .content-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding-top: 2rem;
}

.footer-disclaimer {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 1rem;
    color: #666666;
}

.footer-links {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-regulatory {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.footer-regulatory p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666666;
    text-align: center;
    margin: 0;
}

.footer-regulatory a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-regulatory a:hover {
    color: var(--secondary-color);
}

.footer-badges {
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.trust-badge {
    height: 40px;
    width: auto;
    margin: 0.5rem 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

.footer-copyright {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #666666;
}

/* Responsive Footer Adjustments */
@media (max-width: 991.98px) {
    .footer-links a {
        margin: 0 1rem;
        font-size: 0.9rem;
    }

    .trust-badge {
        height: 35px;
        margin: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer-links {
        padding: 1.5rem 0;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .footer-regulatory p {
        font-size: 0.8rem;
    }

    .trust-badge {
        height: 30px;
        margin: 0.3rem;
    }
}

/* Policy Pages Styles */
.policy-content {
    color: var(--light-text);
}

.policy-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.policy-content h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-content h3 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.policy-content p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.policy-content ul li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive adjustments for policy pages */
@media (max-width: 991.98px) {
    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-content {
        padding: 1rem;
    }
} 