
    /* General styles for the page */
.page-3bet-bot {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light grey text */
    background-color: #1a1a2e; /* Dark blue/purple background */
    line-height: 1.6;
    padding-top: 10px; /* Small padding for the first section, relying on body padding for header offset */
}

.page-3bet-bot__section-title {
    color: #e94560; /* Reddish-pink for titles */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: bold;
}

.page-3bet-bot__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
}

/* Hero Section */
.page-3bet-bot__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e, #331e3d); /* Gradient background */
    border-radius: 10px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-3bet-bot__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-3bet-bot__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-3bet-bot__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #c0c0c0;
}

.page-3bet-bot__primary-button {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-3bet-bot__primary-button:hover {
    background-color: #ff7e8e;
    transform: translateY(-2px);
}

.page-3bet-bot__hero-image-container {
    margin-top: 40px;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-3bet-bot__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Introduction Section */
.page-3bet-bot__introduction-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.page-3bet-bot__introduction-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-3bet-bot__introduction-text {
    flex: 1;
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-3bet-bot__introduction-text p {
    margin-bottom: 15px;
}

.page-3bet-bot__introduction-image-container {
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-3bet-bot__introduction-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Benefits Section */
.page-3bet-bot__benefits-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.page-3bet-bot__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-3bet-bot__benefit-card {
    background-color: #24243e; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-3bet-bot__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-3bet-bot__benefit-icon {
    width: 250px; /* Min size 200px */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.page-3bet-bot__benefit-title {
    color: #e94560;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-3bet-bot__benefit-description {
    color: #c0c0c0;
    font-size: 1em;
}

/* Games Section */
.page-3bet-bot__games-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.page-3bet-bot__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-3bet-bot__game-item {
    background-color: #24243e;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Required for list items */
}

.page-3bet-bot__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-3bet-bot__game-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too wide on desktop */
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-3bet-bot__game-title {
    color: #e94560;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-3bet-bot__game-text {
    color: #c0c0c0;
    font-size: 0.95em;
}

/* Promotions Section */
.page-3bet-bot__promotions-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.page-3bet-bot__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-3bet-bot__promotion-card {
    background-color: #24243e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-3bet-bot__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-3bet-bot__promotion-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-3bet-bot__promotion-card h3,
.page-3bet-bot__promotion-card p {
    padding: 0 25px;
}

.page-3bet-bot__promotion-title {
    color: #e94560;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-3bet-bot__promotion-description {
    color: #c0c0c0;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-3bet-bot__promotion-footer {
    text-align: center;
    font-size: 1.1em;
    color: #c0c0c0;
}

/* FAQ Section */
.page-3bet-bot__faq-section {
    max-width: 900px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.page-3bet-bot__faq-container {
    background-color: #24243e;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-3bet-bot__faq-item {
    border-bottom: 1px solid #3a3a5e;
}

.page-3bet-bot__faq-item:last-child {
    border-bottom: none;
}

.page-3bet-bot__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-3bet-bot__faq-question:hover {
    background-color: #3a3a5e;
}

.page-3bet-bot__faq-question-text {
    color: #e0e0e0;
    font-size: 1.2em;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-3bet-bot__faq-toggle {
    font-size: 1.8em;
    color: #e94560;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click on parent div */
}

.page-3bet-bot__faq-item.active .page-3bet-bot__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-3bet-bot__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #c0c0c0;
}

.page-3bet-bot__faq-item.active .page-3bet-bot__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-3bet-bot__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Small padding at the bottom of the answer text */
}

/* CTA Section */
.page-3bet-bot__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a2e;
    margin-top: 80px;
    border-top: 1px solid #3a3a5e;
}

.page-3bet-bot__cta-title {
    color: #e94560;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.page-3bet-bot__cta-description {
    font-size: 1.2em;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-3bet-bot__cta-button {
    margin-bottom: 40px;
}

.page-3bet-bot__cta-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-3bet-bot__hero-title {
        font-size: 3em;
    }
    .page-3bet-bot__hero-description {
        font-size: 1.2em;
    }
    .page-3bet-bot__section-title {
        font-size: 2em;
    }
    .page-3bet-bot__introduction-grid {
        flex-direction: column;
    }
    .page-3bet-bot__introduction-text,
    .page-3bet-bot__introduction-image-container {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-3bet-bot__hero-section {
        padding: 40px 15px;
    }
    .page-3bet-bot__hero-title {
        font-size: 2.5em;
    }
    .page-3bet-bot__hero-description {
        font-size: 1.1em;
    }
    .page-3bet-bot__primary-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-3bet-bot__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-3bet-bot__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-3bet-bot__benefits-grid,
    .page-3bet-bot__game-list,
    .page-3bet-bot__promotion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile responsiveness for list items */
    .page-3bet-bot__game-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-3bet-bot__game-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for the container */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-3bet-bot__benefit-card,
    .page-3bet-bot__promotion-card {
        padding: 20px;
    }
    .page-3bet-bot__benefit-icon {
        width: 200px; /* Min size */
    }
    .page-3bet-bot__promotion-image {
        height: 180px;
    }
    .page-3bet-bot__faq-question {
        padding: 15px 20px;
    }
    .page-3bet-bot__faq-question-text {
        font-size: 1.1em;
    }
    .page-3bet-bot__faq-toggle {
        font-size: 1.5em;
    }
    .page-3bet-bot__faq-answer {
        padding: 0 20px;
    }
    .page-3bet-bot__faq-item.active .page-3bet-bot__faq-answer {
        padding: 15px 20px !important;
    }
    .page-3bet-bot__cta-title {
        font-size: 1.8em;
    }
    .page-3bet-bot__cta-description {
        font-size: 1em;
    }
    .page-3bet-bot__hero-image-container,
    .page-3bet-bot__introduction-image-container,
    .page-3bet-bot__cta-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    .page-3bet-bot__hero-image,
    .page-3bet-bot__introduction-image,
    .page-3bet-bot__cta-image {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-3bet-bot__hero-title {
        font-size: 2em;
    }
    .page-3bet-bot__hero-description {
        font-size: 1em;
    }
    .page-3bet-bot__section-title {
        font-size: 1.5em;
    }
    .page-3bet-bot__game-item,
    .page-3bet-bot__benefit-card,
    .page-3bet-bot__promotion-card {
        padding: 15px;
    }
    .page-3bet-bot__game-title,
    .page-3bet-bot__benefit-title,
    .page-3bet-bot__promotion-title {
        font-size: 1.3em;
    }
    .page-3bet-bot__faq-question {
        padding: 12px 15px;
    }
    .page-3bet-bot__faq-question-text {
        font-size: 1em;
    }
    .page-3bet-bot__faq-toggle {
        font-size: 1.3em;
    }
    .page-3bet-bot__faq-answer {
        padding: 0 15px;
    }
    .page-3bet-bot__faq-item.active .page-3bet-bot__faq-answer {
        padding: 10px 15px !important;
    }
}
  