body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    box-sizing: border-box;
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212; 
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
    width: 100%;
    max-width: 1200px;
    color: white; 
}

header .logo img {
    height: 40px; 
    width: auto; 
}

header nav {
    display: flex;
    gap: 15px;
}

header nav a {
    text-decoration: none;
    color: white; 
    font-weight: bold;
    transition: color 0.3s; 
}

header nav a:hover {
    color: #f0a500; 
}



.header-section {
    background: linear-gradient(135deg, #0d1117, #1f2937, #374151); 
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.header-section h1, 
.header-section p {
    color: white; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
    margin: 0; 
}



.container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
    box-sizing: border-box;
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
}




.crypto-bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #1c1c1c; 
    color: white; 
    border: 1px solid #333; 
}

.crypto-bonus-table th,
.crypto-bonus-table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #333; 
}

.crypto-bonus-table th {
    background-color: #2a2a2a; 
    color: #ffc107; 
    font-weight: bold;
}

.crypto-bonus-table td img.casino-logo {
    max-width: 50px;
    height: auto;
    display: inline-block;
    border-radius: 5px;
    background: white;
    padding: 5px;
}


.crypto-bonus-table td a.crypto-button {
    display: inline-block;
    margin-top: 5px;
    padding: 10px 20px;
    background-color: #0d47a1; 
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.crypto-bonus-table td a.crypto-button:hover {
    background-color: #1565c0; 
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .crypto-bonus-table {
        display: block;
        width: 100%;
        border: none;
    }

    .crypto-bonus-table thead {
        display: none;
    }

    .crypto-bonus-table tbody {
        display: block;
        width: 100%;
    }

    .crypto-bonus-table tbody tr {
        display: flex;
        flex-direction: column;
        width: 100%;
        border: 1px solid #333;
        margin-bottom: 15px;
        border-radius: 5px;
        background-color: #1c1c1c;
        padding: 15px;
        box-sizing: border-box;
        text-align: center;
    }

    .crypto-bonus-table td {
        display: block;
        width: 100%;
        text-align: center;
        vertical-align: middle;
        padding: 10px 0;
        box-sizing: border-box;
    }

    .crypto-bonus-table td img.casino-logo {
        margin-bottom: 10px;
    }
}





.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    max-width: 1200px;
}
.footer-nav {
    margin-bottom: 10px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.footer-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header nav {
        justify-content: center;
        gap: 10px;
    }

    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


.sidebar {
    position: sticky; 
    top: 80px; 
    width: 250px; 
    padding: 20px;
    background-color: #f8f8f8; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    box-sizing: border-box;
}


.sidebar ul {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
}

.sidebar ul li {
    margin: 10px 0; 
}

.sidebar ul li a {
    text-decoration: none; 
    padding: 10px 15px; 
    display: block; 
    border-radius: 5px; 
    color: #333; 
    transition: all 0.3s ease; 
}


.sidebar ul li a:hover {
    background-color: #f0f8ff; 
    color: #0d47a1; 
}


.sidebar ul li a.active {
    background-color: #0d47a1; 
    color: #fff; 
}


.content {
    flex: 1; 
    padding: 20px; 
    background-color: #fff; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column; 
    }

    .sidebar {
        text-align: center;
        position: relative; 
        top: 0;
        width: 100%; 
        margin-bottom: 20px; 
    }

    .content {
        width: 100%; 
    }
}


.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-header h2 {
    font-size: 24px;
    color: #ffc107; 
    margin-bottom: 20px;
}

.content-header p {
    font-size: 18px;
    line-height: 1.6;
    
    max-width: 800px;
    margin: 0 auto;
}


.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    justify-content: center; 
}


.content-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.content-icon {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.content-item h3 {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 10px;
    text-align: center;
}

.content-item p {
    font-size: 16px;
    line-height: 1.4;
    color: #ddd;
}


@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr; 
    }

    .content-header p {
        font-size: 16px;
    }
}

.image-container {
    margin-top: 40px;
}


.blockchain-list-alt {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}


.blockchain-row {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding: 15px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blockchain-row:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


.blockchain-row-icon {
    max-width: 80px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}


.blockchain-row-content h3 {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 5px;
}

.blockchain-row-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #ddd;
}


@media (max-width: 768px) {
    .blockchain-row {
        flex-direction: column;
        text-align: center;
    }

    .blockchain-row-icon {
        margin: 0 0 15px 0;
    }

    .blockchain-row-content h3 {
        font-size: 18px;
    }

    .blockchain-row-content p {
        font-size: 14px;
    }
}

.casino-pros {
    color: #32cd32; 
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: none;
}

.casino-pros li::before {
    content: "✔"; 
    margin-right: 8px;
    color: #32cd32;
}

.casino-cons {
    color: #ff4500; 
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: none;
}

.casino-cons li::before {
    content: "✘"; 
    margin-right: 8px;
    color: #ff4500;
}

.crypto-button {
    display: block; 
    margin: 20px auto 20px auto; 
    padding: 10px 20px;
    background-color: #0d47a1; 
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center; 
    max-width: 200px; 
}


.crypto-button:hover {
    background-color: #1565c0; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05); 
}

#casinos-legales {
    background-color: #1c1c1c;
    color: white;
    padding: 50px 15px;
    text-align: center;
}


#casinos-legales .content-header {
    margin-bottom: 30px;
}

#casinos-legales .content-header h2 {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 15px;
}

#casinos-legales .content-header p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
}


.legal-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block h3 {
    font-size: 22px;
    color: #ffc107;
    margin-bottom: 10px;
}

.legal-block p {
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
}


.legal-list {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: none;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.legal-list li::before {
    content: "✔"; 
    color: #32cd32; 
    position: absolute;
    left: 0;
    font-weight: bold;
}

#jugar-dinero-real {
    background-color: #1c1c1c;
    color: white;
    padding: 50px 15px;
    text-align: center;
}

#jugar-dinero-real .content-header {
    margin-bottom: 30px;
}

#jugar-dinero-real .content-header h2 {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 15px;
}

#jugar-dinero-real .content-header p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
}


.step-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}


.step {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}


.step-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.step-icon img {
    max-width: 60px;
    height: auto;
    border-radius: 50%;
}


.step-content h3 {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
}


@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}

#faq-crypto-casino {
    background-color: #f9f9f9;
    color: white;
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#faq-crypto-casino h2 {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 20px;
    text-align: center;
}


#faq-crypto-casino {
    background-color: #f9f9f9; 
    color: #333; 
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

#faq-crypto-casino h2 {
    font-size: 36px;
    color: #0d47a1; 
    margin-bottom: 20px;
    text-align: center;
}


#faq-crypto-casino div[itemprop="mainEntity"] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#faq-crypto-casino div[itemprop="mainEntity"] h3 {
    font-size: 20px;
    color: #0d47a1; 
    margin-bottom: 10px;
}

#faq-crypto-casino div[itemprop="mainEntity"] p {
    font-size: 16px;
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 768px) {
    #faq-crypto-casino {
        padding: 30px 10px;
    }

    #faq-crypto-casino h2 {
        font-size: 28px;
    }

    #faq-crypto-casino div[itemprop="mainEntity"] h3 {
        font-size: 18px;
    }

    #faq-crypto-casino div[itemprop="mainEntity"] p {
        font-size: 14px;
    }
}
#faq-roobet-snoop {
    background-color: #f9f9f9;
    color: white;
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#faq-roobet-snoop h2 {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 20px;
    text-align: center;
}


#faq-roobet-snoop {
    background-color: #f9f9f9; 
    color: #333; 
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

#faq-roobet-snoop h2 {
    font-size: 36px;
    color: #0d47a1; 
    margin-bottom: 20px;
    text-align: center;
}


#faq-roobet-snoop div[itemprop="mainEntity"] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#faq-roobet-snoop div[itemprop="mainEntity"] h3 {
    font-size: 20px;
    color: #0d47a1; 
    margin-bottom: 10px;
}

#faq-roobet-snoop div[itemprop="mainEntity"] p {
    font-size: 16px;
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 768px) {
    #faq-roobet-snoop {
        padding: 30px 10px;
    }

    #faq-roobet-snoop h2 {
        font-size: 28px;
    }

    #faq-roobet-snoop div[itemprop="mainEntity"] h3 {
        font-size: 18px;
    }

    #faq-roobet-snoop div[itemprop="mainEntity"] p {
        font-size: 14px;
    }
}

#faq-doge-casino {
    background-color: #f9f9f9;
    color: white;
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#faq-doge-casino h2 {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 20px;
    text-align: center;
}


#faq-doge-casino {
    background-color: #f9f9f9; 
    color: #333; 
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

#faq-doge-casino h2 {
    font-size: 36px;
    color: #0d47a1; 
    margin-bottom: 20px;
    text-align: center;
}


#faq-doge-casino div[itemprop="mainEntity"] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#faq-doge-casino div[itemprop="mainEntity"] h3 {
    font-size: 20px;
    color: #0d47a1; 
    margin-bottom: 10px;
}

#faq-doge-casino div[itemprop="mainEntity"] p {
    font-size: 16px;
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 768px) {
    #faq-doge-casino {
        padding: 30px 10px;
    }

    #faq-doge-casino h2 {
        font-size: 28px;
    }

    #faq-doge-casino div[itemprop="mainEntity"] h3 {
        font-size: 18px;
    }

    #faq-doge-casino div[itemprop="mainEntity"] p {
        font-size: 14px;
    }
}

#faq-ethereum-casino {
    background-color: #f9f9f9; 
    color: white; 
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
}

#faq-ethereum-casino h2 {
    font-size: 36px;
    color: #ffc107; 
    margin-bottom: 20px;
    text-align: center;
}


#faq-ethereum-casino div[itemprop="mainEntity"] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#faq-ethereum-casino div[itemprop="mainEntity"] h3 {
    font-size: 20px;
    color: #0d47a1; 
    margin-bottom: 10px;
}

#faq-ethereum-casino div[itemprop="mainEntity"] p {
    font-size: 16px;
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 768px) {
    #faq-ethereum-casino {
        padding: 30px 10px;
    }

    #faq-ethereum-casino h2 {
        font-size: 28px;
    }

    #faq-ethereum-casino div[itemprop="mainEntity"] h3 {
        font-size: 18px;
    }

    #faq-ethereum-casino div[itemprop="mainEntity"] p {
        font-size: 14px;
    }
}


#faq-tether-casino {
    background-color: #1c1c1c;
    color: white;
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#faq-tether-casino h2 {
    font-size: 36px;
    color: #ffc107;
    margin-bottom: 20px;
    text-align: center;
}


#faq-tether-casino {
    background-color: #f9f9f9; 
    color: #333; 
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

#faq-tether-casino h2 {
    font-size: 36px;
    color: #0d47a1; 
    margin-bottom: 20px;
    text-align: center;
}


#faq-tether-casino div[itemprop="mainEntity"] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#faq-tether-casino div[itemprop="mainEntity"] h3 {
    font-size: 20px;
    color: #0d47a1; 
    margin-bottom: 10px;
}

#faq-tether-casino div[itemprop="mainEntity"] p {
    font-size: 16px;
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 768px) {
    #faq-tether-casino {
        padding: 30px 10px;
    }

    #faq-tether-casino h2 {
        font-size: 28px;
    }

    #faq-tether-casino div[itemprop="mainEntity"] h3 {
        font-size: 18px;
    }

    #faq-tether-casino div[itemprop="mainEntity"] p {
        font-size: 14px;
    }
}


#faq-tron-casino {
    background-color: #f9f9f9; 
    color: #333; 
    padding: 50px 15px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

#faq-tron-casino h2 {
    font-size: 36px;
    color: #0d47a1; 
    margin-bottom: 20px;
    text-align: center;
}


#faq-tron-casino div[itemprop="mainEntity"] {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

#faq-tron-casino div[itemprop="mainEntity"] h3 {
    font-size: 20px;
    color: #0d47a1; 
    margin-bottom: 10px;
}

#faq-tron-casino div[itemprop="mainEntity"] p {
    font-size: 16px;
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 768px) {
    #faq-tron-casino {
        padding: 30px 10px;
    }

    #faq-tron-casino h2 {
        font-size: 28px;
    }

    #faq-tron-casino div[itemprop="mainEntity"] h3 {
        font-size: 18px;
    }

    #faq-tron-casino div[itemprop="mainEntity"] p {
        font-size: 14px;
    }
}



.content-section {
    background-color: #ffffff; 
    color: #333; 
    padding: 30px;
    margin: 20px auto;
    max-width: 800px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}


.content-section .content-header h2 {
    font-size: 36px;
    color: #0d47a1; 
    margin-bottom: 20px;
    text-align: center;
}

.content-section .content-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}


.content-section .legal-block,
.content-section .step {
    background-color: #f9f9f9; 
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}


.content-section .legal-block h3,
.content-section .step-content h3 {
    font-size: 20px;
    color: #0d47a1;
    margin-bottom: 10px;
}


.content-section .legal-block p,
.content-section .step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


.content-section .legal-list {
    margin: 15px 0;
    padding-left: 20px;
    list-style-type: none;
}

.content-section .legal-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.content-section .legal-list li::before {
    content: "✔"; 
    color: #32cd32; 
    position: absolute;
    left: 0;
    font-weight: bold;
}


.content-section .step-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.content-section .step-icon img {
    max-width: 60px;
    height: auto;
    border-radius: 50%; 
}


@media (max-width: 768px) {
    .content-section {
        padding: 20px;
    }

    .content-section .content-header h2 {
        font-size: 28px;
    }

    .content-section .legal-block h3,
    .content-section .step-content h3 {
        font-size: 18px;
    }

    .content-section .legal-block p,
    .content-section .step-content p {
        font-size: 14px;
    }
}

.casino-card img.casino-logo {
    width: 100%; 
    height: auto; 
    max-width: 650px; 
    margin: 0 auto 15px; 
    display: block; 
    border-radius: 5px; 
}


@media (max-width: 768px) {
    .casino-card img.casino-logo {
        max-width: 240px; 
    }
}
.content-description {
    margin-top: 20px; 
    padding: 15px 20px; 
    background-color: #f9f9f9; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    font-family: 'Arial', sans-serif; 
    color: #333; 
    line-height: 1.6; 
}


.content-description p {
    margin-bottom: 15px; 
}


.content-description strong {
    color: #0d47a1; 
    font-weight: bold;
}
#por-que-bitcoin {
    padding: 20px;
    background-color: #f9f9f9; 
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#por-que-bitcoin .content-header {
    margin-bottom: 20px;
    text-align: center;
}

#por-que-bitcoin .content-header h2 {
    font-size: 24px;
    color: #0d47a1;
    font-weight: bold;
    margin-bottom: 10px;
}

#por-que-bitcoin .content-header p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

#por-que-bitcoin .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#por-que-bitcoin .content-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#por-que-bitcoin .content-item h3 {
    font-size: 18px;
    color: #1565c0;
    margin-bottom: 10px;
}

#por-que-bitcoin .content-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
#descripcion-casinos {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#descripcion-casinos .content-header {
    margin-bottom: 20px;
    text-align: center;
}

#descripcion-casinos .content-header h2 {
    font-size: 24px;
    color: #0d47a1;
    font-weight: bold;
    margin-bottom: 10px;
}

#descripcion-casinos .content-header p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.casino-descriptions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-description {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.casino-description h3 {
    font-size: 18px;
    color: #1565c0;
    margin-bottom: 10px;
}

.casino-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.casino-description ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: none;
}

.casino-description ul li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 20px;
}

.casino-description ul li:before {
    content: "+";
    color: green;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.casino-description ul.casino-cons li:before {
    content: "-";
    color: red;
}
#mejor-casino-bitcoin {
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#mejor-casino-bitcoin .content-header {
    margin-bottom: 20px;
}

#mejor-casino-bitcoin .content-header h2 {
    font-size: 24px;
    color: #1565c0; 
    font-weight: bold;
    margin-bottom: 10px;
}

#mejor-casino-bitcoin .content-header p {
    font-size: 16px;
    color: #333; 
    line-height: 1.6;
}

#mejor-casino-bitcoin .content-body {
    margin-top: 20px;
}

#mejor-casino-bitcoin .content-item {
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

#mejor-casino-bitcoin .content-item h3 {
    font-size: 20px;
    color: #0d47a1; 
    font-weight: bold;
    margin-bottom: 10px;
}

#mejor-casino-bitcoin .content-item p {
    font-size: 14px;
    color: #333; 
    line-height: 1.8;
}

#mejor-casino-bitcoin .content-list {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: none;
}

#mejor-casino-bitcoin .content-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
    color: #333; 
}

#mejor-casino-bitcoin .content-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: green; 
    font-weight: bold;
}

#pasos-bitcoin-juego {
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

#pasos-bitcoin-juego .content-header {
    margin-bottom: 20px;
}

#pasos-bitcoin-juego .content-header h2 {
    font-size: 24px;
    color: #1565c0; 
    font-weight: bold;
    margin-bottom: 10px;
}

#pasos-bitcoin-juego .content-header p {
    font-size: 16px;
    color: #333; 
    line-height: 1.6;
}

#pasos-bitcoin-juego .content-body {
    margin-top: 20px;
}

#pasos-bitcoin-juego .content-item {
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

#pasos-bitcoin-juego .content-item h3 {
    font-size: 20px;
    color: #0d47a1; 
    font-weight: bold;
    margin-bottom: 10px;
}

#pasos-bitcoin-juego .content-item p {
    font-size: 14px;
    color: #333; 
    line-height: 1.8;
}

#pasos-bitcoin-juego .content-list {
    margin-top: 10px;
    padding-left: 20px;
    list-style-type: none;
}

#pasos-bitcoin-juego .content-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
    font-size: 14px; 
    color: #333; 
}

#pasos-bitcoin-juego .content-list li:before {
    content: "✔"; 
    position: absolute;
    left: 0;
    color: green; 
    font-weight: bold;
}

#pasos-bitcoin-juego .link {
    color: #0d47a1; 
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease; 
}

#pasos-bitcoin-juego .link:hover {
    color: #1565c0; 
    text-decoration: none;
}


@media (max-width: 768px) {
    #pasos-bitcoin-juego {
        padding: 15px;
    }

    #pasos-bitcoin-juego .content-header h2 {
        font-size: 22px; 
    }

    #pasos-bitcoin-juego .content-header p,
    #pasos-bitcoin-juego .content-item p {
        font-size: 14px; 
    }

    #pasos-bitcoin-juego .content-list li {
        font-size: 13px;
    }
}
#bitcoin-casino-tips {
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

#bitcoin-casino-tips .content-header {
    margin-bottom: 20px;
}

#bitcoin-casino-tips .content-header h2 {
    font-size: 24px;
    color: #1565c0; 
    font-weight: bold;
    margin-bottom: 10px;
}

#bitcoin-casino-tips .content-header p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

#bitcoin-casino-tips .content-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9; 
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#bitcoin-casino-tips .content-item h3 {
    font-size: 20px;
    color: #0d47a1;
    font-weight: bold;
    margin-bottom: 10px;
}

#bitcoin-casino-tips .content-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

#start-with-ethereum .content-item,
#start-tether .content-item,
#review-process .content-item,
#juegos-tron .content-item,
#como-usar-tron .content-item, 
#juega-dividendos-tron .content-item, 
#congelar-tokens-tron .content-item {
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

#start-with-ethereum .content-item p,
#start-tether .content-item p,
#review-process .content-item p,
#juegos-tron .content-item p,
#como-usar-tron .content-item p,
#juega-dividendos-tron .content-item p,
#congelar-tokens-tron .content-item p {
    color: #555;
}