
    :root {
        --primary-color: #e44d26; /* Orange-red for action */
        --secondary-color: #333;
        --accent-color: #f7b731; /* Gold/yellow for highlights */
        --text-color: #333;
        --light-text-color: #666;
        --background-color: #f8f8f8;
        --white-color: #ffffff;
        --border-color: #eee;
        --dark-bg: #222;
        --dark-text: #eee;
    }

    /* Base styles for the page wrapper */
    .page-12bet-app {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--background-color);
        padding-bottom: 50px; /* Space for fixed footer/buttons */
    }

    /* Section styling */
    .page-12bet-app__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--white-color);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-12bet-app__section--dark {
        background-color: var(--dark-bg);
        color: var(--dark-text);
    }

    .page-12bet-app__section-title {
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 30px;
        font-size: 2.2em;
        font-weight: bold;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent-color);
        display: inline-block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-12bet-app__section-subtitle {
        text-align: center;
        color: var(--secondary-color);
        margin-bottom: 40px;
        font-size: 1.3em;
        line-height: 1.5;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-12bet-app__section-subtitle--dark {
        color: var(--dark-text);
    }

    /* Hero Section */
    .page-12bet-app__hero-section {
        background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
        color: var(--white-color);
        text-align: center;
        padding: 60px 20px 40px;
        position: relative;
        overflow: hidden;
        border-radius: 0 0 15px 15px;
        padding-top: 10px; /* Small offset as body padding-top handles header */
    }

    .page-12bet-app__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-12bet-app__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        line-height: 1.2;
        color: var(--accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-12bet-app__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .page-12bet-app__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-12bet-app__cta-button:hover {
        background-color: #cc421f;
        transform: translateY(-2px);
    }

    .page-12bet-app__hero-image {
        margin-top: 30px;
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        display: block;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12bet-app__hero-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Features/Benefits Section */
    .page-12bet-app__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-12bet-app__feature-item {
        background-color: var(--background-color);
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-12bet-app__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-12bet-app__feature-icon {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12bet-app__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-12bet-app__feature-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .page-12bet-app__feature-description {
        font-size: 0.95em;
        color: var(--light-text-color);
        word-wrap: break-word;
    }

    /* How-to-download section */
    .page-12bet-app__download-steps {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
    }

    .page-12bet-app__step-item {
        display: flex;
        align-items: flex-start;
        background-color: var(--background-color);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }

    .page-12bet-app__step-number {
        font-size: 2em;
        font-weight: bold;
        color: var(--primary-color);
        margin-right: 20px;
        flex-shrink: 0;
        line-height: 1;
    }

    .page-12bet-app__step-content {
        flex-grow: 1;
    }

    .page-12bet-app__step-title {
        font-size: 1.3em;
        color: var(--secondary-color);
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .page-12bet-app__step-description {
        color: var(--light-text-color);
        word-wrap: break-word;
    }

    .page-12bet-app__step-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-top: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: block;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12bet-app__step-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Games Section */
    .page-12bet-app__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-12bet-app__game-card {
        background-color: var(--background-color);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-12bet-app__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-12bet-app__game-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12bet-app__game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-12bet-app__game-info {
        padding: 15px;
    }

    .page-12bet-app__game-title {
        font-size: 1.2em;
        color: var(--secondary-color);
        margin-bottom: 5px;
        word-wrap: break-word;
    }

    .page-12bet-app__game-description {
        font-size: 0.9em;
        color: var(--light-text-color);
        word-wrap: break-word;
    }

    /* FAQ Section */
    .page-12bet-app__faq-container {
        max-width: 900px;
        margin: 40px auto 0;
        box-sizing: border-box;
    }

    .page-12bet-app__faq-item {
        background-color: var(--background-color);
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12bet-app__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: var(--white-color);
        border-bottom: 1px solid var(--border-color);
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-12bet-app__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-12bet-app__faq-question h3 {
        margin: 0;
        font-size: 1.15em;
        color: var(--secondary-color);
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click */
        word-wrap: break-word;
    }

    .page-12bet-app__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click */
        line-height: 1; /* Ensure consistent height */
    }

    .page-12bet-app__faq-item.active .page-12bet-app__faq-toggle {
        transform: rotate(45deg); /* Change + to X visually */
    }

    .page-12bet-app__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: var(--light-text-color);
        box-sizing: border-box;
    }

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

    .page-12bet-app__faq-answer p {
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    .page-12bet-app__faq-answer ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .page-12bet-app__faq-answer li {
        margin-bottom: 5px;
        word-wrap: break-word;
    }

    /* Floating Buttons */
    .page-12bet-app__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-12bet-app__floating-button {
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 12px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        width: 120px;
        box-sizing: border-box;
    }

    .page-12bet-app__floating-button:hover {
        background-color: #cc421f;
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-12bet-app__section {
            padding: 30px 15px;
        }

        .page-12bet-app__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .page-12bet-app__section-subtitle {
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .page-12bet-app__hero-section {
            padding: 40px 15px 30px;
        }

        .page-12bet-app__hero-title {
            font-size: 2em;
        }

        .page-12bet-app__hero-description {
            font-size: 1em;
        }

        .page-12bet-app__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-12bet-app__features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-12bet-app__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .page-12bet-app__step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }

        .page-12bet-app__step-title {
            font-size: 1.2em;
        }

        .page-12bet-app__games-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-12bet-app__game-image {
            height: 150px;
        }

        .page-12bet-app__faq-question {
            padding: 15px 20px;
        }

        .page-12bet-app__faq-question h3 {
            font-size: 1em;
        }

        .page-12bet-app__faq-toggle {
            font-size: 1.5em;
        }

        .page-12bet-app__faq-answer {
            padding: 0 20px;
        }

        .page-12bet-app__faq-item.active .page-12bet-app__faq-answer {
            padding: 15px 20px !important;
        }

        .page-12bet-app__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row;
            width: calc(100% - 30px);
            justify-content: center;
            gap: 8px;
        }

        .page-12bet-app__floating-button {
            width: 100px;
            padding: 10px 15px;
            font-size: 0.9em;
        }

        /* Ensure all list items are 100% width on mobile */
        .page-12bet-app__features-grid .page-12bet-app__feature-item,
        .page-12bet-app__download-steps .page-12bet-app__step-item,
        .page-12bet-app__games-grid .page-12bet-app__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Ensure list containers are 100% width on mobile */
        .page-12bet-app__features-grid,
        .page-12bet-app__download-steps,
        .page-12bet-app__games-grid,
        .page-12bet-app__faq-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important; /* Adjust padding to match section */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-12bet-app__faq-answer p,
        .page-12bet-app__faq-answer ul,
        .page-12bet-app__faq-answer li {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Image responsiveness for mobile */
        .page-12bet-app__hero-image,
        .page-12bet-app__feature-icon,
        .page-12bet-app__step-image,
        .page-12bet-app__game-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .page-12bet-app__hero-image img,
        .page-12bet-app__feature-icon img,
        .page-12bet-app__step-image img,
        .page-12bet-app__game-image img {
            max-width: 100% !important;
            height: auto !important;
        }
    }

    @media (max-width: 480px) {
        .page-12bet-app__hero-title {
            font-size: 1.8em;
        }
        .page-12bet-app__section-title {
            font-size: 1.6em;
        }
        .page-12bet-app__floating-buttons {
            flex-direction: column;
            width: auto;
            right: 10px;
            bottom: 10px;
        }
        .page-12bet-app__floating-button {
            width: 140px; /* Make buttons slightly wider for better tap area */
        }
    }
  