/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f4e4c1;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.flag {
    height: 30px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #f4e4c1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-toggle {
    display: none;
    color: #f4e4c1;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a0f08;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6c547 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #1a0f08;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section with Background Image */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9) 0%, rgba(26, 15, 8, 0.9) 100%);
}

.hero-with-background {
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/odin-play-tzW7oo9wu1vlB24QFBtIphrVf9AG7B.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hero-with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(26, 15, 8, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f4e4c1;
    margin-bottom: 2rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f4e4c1;
}

.feature i {
    color: #d4af37;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: none; /* Hide the side image since we're using background */
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: rgba(26, 15, 8, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #f4e4c1;
    font-size: 1.1rem;
}

/* Brand Logo Section */
.brand-logo {
    padding: 60px 0;
    text-align: center;
}

.brand-logo-content {
    text-align: center;
}

.brand-logo-img {
    max-width: 400px;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #f4e4c1;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.comparison-table {
    margin-top: 3rem;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 24, 16, 0.8);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

th {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-weight: 600;
}

td {
    color: #f4e4c1;
}

.highlight {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: rgba(26, 15, 8, 0.3);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.advantage-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #f4e4c1;
    line-height: 1.6;
}

/* Registration Section */
.registration {
    padding: 80px 0;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #1a0f08;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.step p {
    color: #f4e4c1;
}

.registration-visual {
    text-align: center;
    margin-top: 3rem;
}

.registration-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Mobile Experience Section */
.mobile-experience {
    padding: 80px 0;
    background: rgba(26, 15, 8, 0.3);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-features {
    margin: 2rem 0;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(44, 24, 16, 0.4);
    border-radius: 10px;
}

.mobile-feature i {
    font-size: 2rem;
    color: #d4af37;
}

.mobile-feature h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.mobile-feature p {
    color: #f4e4c1;
    margin: 0;
}

.mobile-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.bonus-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.bonus-text h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.bonus-text h4 {
    color: #d4af37;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.bonus-text p {
    color: #f4e4c1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-details, .cashback-details {
    background: rgba(44, 24, 16, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.bonus-detail, .cashback-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.bonus-detail:last-child, .cashback-detail:last-child {
    border-bottom: none;
}

.bonus-detail strong, .cashback-detail strong {
    color: #d4af37;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: rgba(26, 15, 8, 0.3);
}

.security-visual {
    text-align: center;
    margin: 3rem 0;
}

.security-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-feature {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.security-feature i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.security-feature h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.security-feature p {
    color: #f4e4c1;
}

/* Payments Section */
.payments {
    padding: 80px 0;
}

.payments-visual {
    text-align: center;
    margin: 3rem 0;
}

.payments-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.payment-table {
    margin-top: 3rem;
}

/* Support Section */
.support {
    padding: 80px 0;
    background: rgba(26, 15, 8, 0.3);
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-channel {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.support-channel:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.support-channel i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.support-channel h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.support-channel p {
    color: #f4e4c1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.rating-item {
    background: rgba(44, 24, 16, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.rating-item h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.stars {
    margin: 0.5rem 0;
}

.stars i {
    color: #d4af37;
    margin: 0 2px;
}

.rating-item span {
    color: #f4e4c1;
    font-size: 0.9rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial p {
    color: #f4e4c1;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #d4af37;
    font-weight: 600;
}

/* Pros and Cons Section */
.pros-cons {
    padding: 80px 0;
    background: rgba(26, 15, 8, 0.3);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.pros, .cons {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pros h3, .cons h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pros h3 i, .cons h3 i {
    margin-right: 0.5rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    color: #f4e4c1;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.cons li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(44, 24, 16, 0.6);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    color: #d4af37;
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #f4e4c1;
    line-height: 1.6;
    display: none;
}

/* Conclusion Section */
.conclusion {
    padding: 80px 0;
    background: rgba(26, 15, 8, 0.3);
    text-align: center;
}

.conclusion-visual {
    margin: 2rem 0;
    text-align: center;
}

.conclusion-img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    display: block;
    margin: 0 auto;
}

.conclusion p {
    color: #f4e4c1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(26, 15, 8, 0.9);
    padding: 60px 0 20px;
    border-top: 2px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #f4e4c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-brand p {
    color: #f4e4c1;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-legal p {
    color: #f4e4c1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #f4e4c1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #d4af37;
}

/* Games Page Specific Styles */
.games-section {
    padding: 60px 0;
    background: rgba(26, 15, 8, 0.3);
}

.game-review {
    padding: 60px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.game-review:last-child {
    border-bottom: none;
}

/* Updated Game Content Layout - Vertical Stack with Centered Images */
.game-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-items: center;
    text-align: center;
    margin-top: 2rem;
}

.game-image {
    text-align: center;
    margin: 2rem 0;
}

.game-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    display: block;
    margin: 0 auto;
}

.game-info {
    max-width: 800px;
    text-align: left;
}

.game-info h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.game-info h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.game-info p {
    color: #f4e4c1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-info ol {
    color: #f4e4c1;
    margin: 1rem 0;
    padding-left: 2rem;
}

.game-info ol li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.game-info ol li strong {
    color: #d4af37;
}

/* Image Loading Fix */
img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 24, 16, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .registration-steps {
        grid-template-columns: 1fr;
    }

    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bonus-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .game-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    th, td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: #d4af37;
}

.bg-dark {
    background: rgba(44, 24, 16, 0.8);
}

.border-gold {
    border: 1px solid #d4af37;
}

.shadow-gold {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
/* --- New Sections for Juegos Page --- */

/* General Section Styling */
.demo-mode-section,
.providers-section,
.withdrawal-section,
.conclusion-juegos,
.faq-juegos {
    padding: 80px 0; /* Consistent vertical padding for sections */
    /* text-align: center; REMOVED, specific elements will be centered */
}

.demo-mode-section,
.withdrawal-section,
.conclusion-juegos {
    background: rgba(26, 15, 8, 0.3); /* Slightly darker background for alternating sections */
}

/* Headings and Subtitles - Ensure consistent centering */
.demo-mode-section .section-title,
.providers-section .section-title,
.withdrawal-section .section-title,
.conclusion-juegos .section-title,
.faq-juegos .section-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center; /* Explicitly center */
}

.demo-mode-section .section-subtitle,
.providers-section .section-subtitle,
.withdrawal-section .section-subtitle,
.conclusion-juegos .section-subtitle,
.faq-juegos .section-subtitle {
    font-size: 1.2rem;
    color: #f4e4c1;
    margin-bottom: 3rem;
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Explicitly center */
}

/* Paragraphs in new sections - ensure proper spacing and width */
.demo-mode-section p,
.providers-section p,
.withdrawal-section p,
.conclusion-juegos p,
.faq-juegos p {
    color: #f4e4c1;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Consistent bottom margin */
    max-width: 900px; /* Adjust max-width for content paragraphs */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center align paragraphs within their max-width */
}

/* Providers Section Specifics */
.providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center; /* Centers items in the grid */
    max-width: 900px; /* Limit width of the provider list */
    margin-left: auto; /* Center the grid itself */
    margin-right: auto; /* Center the grid itself */
    padding-left: 0; /* Ensure no default list padding */
    list-style: none; /* Remove default bullet points if any */
}

.provider-item {
    background: rgba(44, 24, 16, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.provider-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.provider-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.provider-item p {
    color: #f4e4c1;
    line-height: 1.6;
}

/* Withdrawal Section Specifics (Cajero) */
.withdrawal-section h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem; /* Adjust margin for sub-headings */
    text-align: center;
}

/* How to withdraw steps */
.withdrawal-steps {
    list-style: none; /* Remove default list style */
    counter-reset: step-counter; /* Initialize step counter */
    margin: 2rem auto; /* Center the list itself */
    padding-left: 0;
    max-width: 700px; /* Limit width of the steps list */
    text-align: left; /* Align text within steps to the left */
}

.withdrawal-steps li {
    background: rgba(44, 24, 16, 0.6);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex; /* Use flexbox for number and text alignment */
    align-items: flex-start; /* Align number and text to the top */
    color: #f4e4c1;
    line-height: 1.5;
}

.withdrawal-steps li::before {
    counter-increment: step-counter; /* Increment counter for each list item */
    content: counter(step-counter); /* Display the current step number */
    display: inline-flex; /* For centering the number itself */
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #d4af37;
    color: #1a0f08;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0; /* Prevent the number from shrinking */
}

.withdrawal-methods-title,
.cajero-definition-title {
    margin-top: 3rem; /* Extra spacing for these sub-headings */
    text-align: center;
}

/* Table for withdrawal methods */
.withdrawal-section .table-responsive {
    margin: 3rem auto; /* Center the table */
    max-width: 900px; /* Adjust max-width of the table */
}


/* Conclusion Section (for Juegos page) */
.conclusion-juegos .section-subtitle {
    max-width: 900px; /* Ensure subtitle uses broader width */
}

/* FAQ Section for Juegos page */
.faq-juegos .section-title,
.faq-juegos .section-subtitle {
    text-align: center;
}

.faq-juegos .faq-list {
    margin-top: 3rem;
    max-width: 900px; /* Limit width of FAQ list */
    margin-left: auto;
    margin-right: auto;
}

.faq-juegos .faq-item {
    background: rgba(44, 24, 16, 0.6);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.faq-juegos .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-juegos .faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-juegos .faq-question h3 {
    color: #d4af37;
    margin: 0;
    font-size: 1.2rem;
    text-align: left; /* Ensure question text is left-aligned */
}

.faq-juegos .faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-juegos .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #f4e4c1;
    line-height: 1.6;
    display: none; /* Crucial for accordion functionality */
    text-align: left; /* Ensure answer text is left-aligned */
}

/* Responsive Adjustments for new sections */
@media (max-width: 768px) {
    .providers-list {
        grid-template-columns: 1fr; /* Stack providers vertically on small screens */
        padding: 0 15px; /* Add padding for mobile */
    }

    .withdrawal-steps {
        max-width: 100%; /* Full width on small screens */
        padding: 0 15px; /* Adjust padding if needed */
    }

    .faq-juegos .faq-list {
        max-width: 100%; /* Full width on small screens */
        padding: 0 15px; /* Adjust padding if needed */
    }

    /* Adjust general paragraph styles for smaller screens */
    .demo-mode-section p,
    .providers-section p,
    .withdrawal-section p,
    .conclusion-juegos p,
    .faq-juegos p {
        text-align: left; /* Revert to left-align for better readability on small screens */
        padding: 0 15px; /* Add padding for mobile */
    }

    .withdrawal-steps li {
        text-align: left; /* Ensure list items remain left-aligned */
    }
}

@media (max-width: 480px) {
    .withdrawal-section h3 {
        font-size: 1.5rem;
    }

    .withdrawal-steps li {
        padding: 0.8rem 1rem;
    }
}