
    /* Base styles for the page-1bwmn */
.page-1bwmn {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 10px; /* Small padding, assuming body has --header-offset */
}

.page-1bwmn__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-1bwmn__section-title {
    font-size: 2.5em;
    color: #ffd700; /* Gold color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-1bwmn__section-description,
.page-1bwmn__section-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #cccccc;
}

.page-1bwmn__highlight {
    color: #ffd700;
}

.page-1bwmn__button {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.page-1bwmn__button--primary {
    background-color: #ffd700;
    color: #1a1a1a;
}

.page-1bwmn__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-1bwmn__button--secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    margin-left: 15px;
}

.page-1bwmn__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.page-1bwmn__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height for visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('[GALLERY:hero:1920x1080:betting,casino,mobile,vietnam]');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: 10px; /* Small padding, assuming body has --header-offset */
    box-sizing: border-box;
}

.page-1bwmn__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-1bwmn__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-1bwmn__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-1bwmn__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-1bwmn__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* About Section */
.page-1bwmn__about-section {
    padding: 60px 0;
    background-color: #222222;
}

.page-1bwmn__image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.page-1bwmn__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
    width: 100%; /* Ensure image takes full width of its container */
    max-width: 800px; /* Max width for larger screens */
    box-sizing: border-box;
}

/* Games Section */
.page-1bwmn__games-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-1bwmn__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-1bwmn__game-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-1bwmn__game-card:hover {
    transform: translateY(-5px);
}

.page-1bwmn__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-1bwmn__game-title {
    font-size: 1.5em;
    color: #ffd700;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-1bwmn__game-text {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px;
}

/* Features Section */
.page-1bwmn__features-section {
    padding: 60px 0;
    background-color: #222222;
}

.page-1bwmn__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-1bwmn__feature-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-1bwmn__feature-item:hover {
    transform: translateY(-5px);
}

.page-1bwmn__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.page-1bwmn__feature-title {
    font-size: 1.4em;
    color: #ffd700;
    margin-bottom: 10px;
}

.page-1bwmn__feature-text {
    font-size: 1em;
    color: #cccccc;
}

/* Promo Section */
.page-1bwmn__promo-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-1bwmn__promo-card {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    overflow: hidden;
    flex-direction: row; /* Default for desktop */
}

.page-1bwmn__promo-card--reverse {
    flex-direction: row-reverse;
}

.page-1bwmn__promo-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.page-1bwmn__promo-content {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
}

.page-1bwmn__promo-title {
    font-size: 1.8em;
    color: #ffd700;
    margin-bottom: 15px;
}

.page-1bwmn__promo-text {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 25px;
}

/* FAQ Section */
.page-1bwmn__faq-section {
    padding: 60px 0;
    background-color: #222222;
}

.page-1bwmn__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-1bwmn__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-1bwmn__faq-question:hover {
    background-color: #444444;
}

.page-1bwmn__faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: #ffd700;
    pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-1bwmn__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click on parent div */
}

.page-1bwmn__faq-item.active .page-1bwmn__faq-toggle {
    transform: rotate(45deg); /* Plus to X / Minus */
}

.page-1bwmn__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;
    box-sizing: border-box;
}

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

.page-1bwmn__faq-answer p {
    margin: 0;
    color: #cccccc;
    font-size: 1em;
}

/* CTA Section */
.page-1bwmn__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-1bwmn__hero-title {
        font-size: 3em;
    }
    .page-1bwmn__hero-subtitle {
        font-size: 1.2em;
    }
    .page-1bwmn__section-title {
        font-size: 2em;
    }
    .page-1bwmn__promo-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-1bwmn__hero-section {
        height: 500px;
        padding-top: 10px; /* Ensure small padding */
    }
    .page-1bwmn__hero-title {
        font-size: 2.2em;
    }
    .page-1bwmn__hero-subtitle {
        font-size: 1em;
    }
    .page-1bwmn__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-1bwmn__button--secondary {
        margin-left: 0;
    }
    .page-1bwmn__section-title {
        font-size: 1.8em;
    }
    .page-1bwmn__section-description,
    .page-1bwmn__section-text {
        font-size: 0.95em;
    }

    /* Game grid for mobile */
    .page-1bwmn__game-grid {
        grid-template-columns: 1fr;
    }

    /* Features grid for mobile */
    .page-1bwmn__features-grid {
        grid-template-columns: 1fr;
    }

    /* Promo cards for mobile */
    .page-1bwmn__promo-card,
    .page-1bwmn__promo-card--reverse {
        flex-direction: column;
    }
    .page-1bwmn__promo-image,
    .page-1bwmn__promo-content {
        width: 100%;
    }
    .page-1bwmn__promo-content {
        padding: 20px;
    }
    .page-1bwmn__promo-title {
        font-size: 1.3em;
    }
    .page-1bwmn__promo-text {
        font-size: 1em;
    }

    /* FAQ for mobile */
    .page-1bwmn__faq-question {
        padding: 15px 15px;
    }
    .page-1bwmn__faq-question h3 {
        font-size: 1.1em;
    }
    .page-1bwmn__faq-toggle {
        font-size: 1.5em;
    }
    .page-1bwmn__faq-answer {
        padding: 0 15px;
    }
    .page-1bwmn__faq-item.active .page-1bwmn__faq-answer {
        padding: 15px 15px !important;
    }

    /* Responsive list items requirements for all list-like structures */
    .page-1bwmn__game-card,
    .page-1bwmn__feature-item,
    .page-1bwmn__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .page-1bwmn__game-grid,
    .page-1bwmn__features-grid,
    .page-1bwmn__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-1bwmn__game-text,
    .page-1bwmn__feature-text,
    .page-1bwmn__faq-answer p {
        word-break: break-word !important;
    }
}

@media (max-width: 480px) {
    .page-1bwmn__hero-title {
        font-size: 1.8em;
    }
    .page-1bwmn__hero-subtitle {
        font-size: 0.9em;
    }
    .page-1bwmn__section-title {
        font-size: 1.5em;
    }
    .page-1bwmn__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-1bwmn__promo-title {
        font-size: 1.2em;
    }
}
  