:root {
    --primary-color: #6C63FF;
    --secondary-color: #2C2F3F;
    --background-dark: #1A1C24;
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --card-bg: #2A2D3A;
    --success-color: #4CAF50;
}

body.dark-theme {
    background-color: var(--background-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Topbar Styles */
.topbar {
    background-color: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-dark) 100%);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #8B7FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Listing Section */
.listing-section {
    padding: 50px 0;
}

.offer-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-img img {
    max-width: 120px;
    border-radius: 10px;
}

.welcome-bonus h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.welcome-bonus p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.rating .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating p {
    margin: 0;
    color: var(--text-muted);
}

.pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.pros ul li:before {
    color: var(--success-color);
    margin-right: 5px;
}

.btn-enter {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enter:hover {
    background-color: #5750FF;
    transform: scale(1.05);
}

/* Content Sections */
.content-sections {
    padding: 50px 0;
}

.content-block {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block h2 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.responsible-gaming-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.responsible-gaming-list li {
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.responsible-gaming-list li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.step h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.disclaimer {
    background-color: rgba(var(--secondary-color), 0.5);
    border: 2px solid var(--secondary-color);
}

.disclaimer p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .content-block {
        padding: 25px;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Payment Methods Section */
.payment-methods {
    margin-bottom: 40px !important;
}

.payment-icon {
    height: 40px;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Footer Content */
.footer-column {
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Support Info */
.support-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.support-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-info a:hover {
    color: #8B7FFF;
}

/* Footer Links */
.footer-links {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Copyright Section */
.copyright-section {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-icon {
        height: 30px;
        margin: 0 10px 15px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

/* Back Home Button */
.btn-back-home {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: #5750FF;
    transform: translateX(-5px);
}

.btn-back-home i {
    margin-right: 8px;
}

/* Policy Pages Styles */
.privacy-section,
.cookie-section,
.regulation-section,
.responsible-gaming-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h1 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.content-block h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.content-block h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.content-block h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.content-block ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-block ul li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.content-block ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-resources {
    background: rgba(var(--primary-color), 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.cookie-types h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.responsible-gaming-tips {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .content-block h1 {
        font-size: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.2rem;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .offer-img img {
        max-width: 100px;
        margin-bottom: 15px;
    }
    
    .welcome-bonus, .rating, .pros {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .btn-enter {
        width: 100%;
    }
}