
    .page-t-i-x-u-md5 {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-t-i-x-u-md5__section-title {
    font-size: 2.2em;
    color: #0a4f8f; /* Dark blue for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
}

.page-t-i-x-u-md5__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 10px 20px 60px 20px; /* 10px top padding as per requirement */
    overflow: hidden;
    background: linear-gradient(135deg, #0a4f8f 0%, #1a72d1 100%); /* Blue gradient */
}

.page-t-i-x-u-md5__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-t-i-x-u-md5__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-t-i-x-u-md5__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-t-i-x-u-md5__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.page-t-i-x-u-md5__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-t-i-x-u-md5__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-t-i-x-u-md5__button {
    background-color: #ffcc00; /* Yellow */
    color: #333;
    padding: 12px 30px;
    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; /* For button-like links */
    display: inline-block;
}

.page-t-i-x-u-md5__button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-t-i-x-u-md5__button--secondary {
    background-color: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.page-t-i-x-u-md5__button--secondary:hover {
    background-color: #ffcc00;
    color: #333;
}

.page-t-i-x-u-md5__about-section,
.page-t-i-x-u-md5__features-section,
.page-t-i-x-u-md5__how-to-play-section,
.page-t-i-x-u-md5__promotions-section,
.page-t-i-x-u-md5__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-t-i-x-u-md5__about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-t-i-x-u-md5__about-text {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
}

.page-t-i-x-u-md5__about-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
    box-sizing: border-box; /* Added for responsiveness */
}

.page-t-i-x-u-md5__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Added for responsiveness */
}

.page-t-i-x-u-md5__features-grid,
.page-t-i-x-u-md5__steps-grid,
.page-t-i-x-u-md5__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-t-i-x-u-md5__feature-item,
.page-t-i-x-u-md5__step-item,
.page-t-i-x-u-md5__promo-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    box-sizing: border-box; /* Required for list items */
}

.page-t-i-x-u-md5__feature-icon {
    width: 100%; /* Ensure images are responsive */
    max-width: 250px; /* Example max width */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.page-t-i-x-u-md5__feature-title,
.page-t-i-x-u-md5__step-title,
.page-t-i-x-u-md5__promo-title {
    font-size: 1.4em;
    color: #0a4f8f;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-t-i-x-u-md5__feature-description,
.page-t-i-x-u-md5__step-description,
.page-t-i-x-u-md5__promo-description {
    font-size: 1em;
    color: #555;
}

.page-t-i-x-u-md5__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffcc00;
    color: #0a4f8f;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.page-t-i-x-u-md5__step-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.page-t-i-x-u-md5__promotions-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #444;
}

.page-t-i-x-u-md5__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.page-t-i-x-u-md5__promotions-cta {
    text-align: center;
    margin-top: 50px;
}

.page-t-i-x-u-md5__promotions-cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

/* FAQ Section Styling */
.page-t-i-x-u-md5__faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-t-i-x-u-md5__faq-item {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-t-i-x-u-md5__faq-item:last-child {
    border-bottom: none;
}

.page-t-i-x-u-md5__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-t-i-x-u-md5__faq-question:hover {
    background-color: #f0f0f0;
}

.page-t-i-x-u-md5__faq-title {
    font-size: 1.2em;
    color: #0a4f8f;
    margin: 0;
    pointer-events: none; /* Prevent text selection from interfering with click */
    flex-grow: 1;
    text-align: left;
    font-weight: bold;
}

.page-t-i-x-u-md5__faq-toggle {
    font-size: 1.8em;
    color: #ffcc00;
    font-weight: bold;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from interfering with click */
    transition: transform 0.3s ease;
}

.page-t-i-x-u-md5__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: #555;
    font-size: 1em;
    text-align: left;
}

.page-t-i-x-u-md5__faq-answer p {
    margin-bottom: 20px;
    padding-bottom: 0; /* Adjust if needed */
}

/* FAQ active state */
.page-t-i-x-u-md5__faq-item.active .page-t-i-x-u-md5__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important;
    opacity: 1;
}

.page-t-i-x-u-md5__faq-item.active .page-t-i-x-u-md5__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or similar */
    color: #0a4f8f;
}

/* Floating Buttons */
.page-t-i-x-u-md5__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-t-i-x-u-md5__floating-button {
    background-color: #ffcc00; /* Yellow */
    color: #0a4f8f; /* Dark blue */
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 120px;
}

.page-t-i-x-u-md5__floating-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-t-i-x-u-md5__floating-button--login {
    background-color: #0a4f8f; /* Dark blue */
    color: #ffcc00; /* Yellow */
}

.page-t-i-x-u-md5__floating-button--login:hover {
    background-color: #1a72d1;
    color: #ffcc00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-t-i-x-u-md5__hero-title {
        font-size: 2em;
    }

    .page-t-i-x-u-md5__hero-description {
        font-size: 1em;
    }

    .page-t-i-x-u-md5__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-t-i-x-u-md5__button {
        width: 100%;
        padding: 10px 20px;
    }

    .page-t-i-x-u-md5__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-t-i-x-u-md5__about-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-t-i-x-u-md5__about-text,
    .page-t-i-x-u-md5__about-image-container {
        min-width: unset;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-t-i-x-u-md5__about-text p,
    .page-t-i-x-u-md5__feature-description,
    .page-t-i-x-u-md5__step-description,
    .page-t-i-x-u-md5__promo-description,
    .page-t-i-x-u-md5__promotions-intro,
    .page-t-i-x-u-md5__promotions-cta p,
    .page-t-i-x-u-md5__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-t-i-x-u-md5__features-grid,
    .page-t-i-x-u-md5__steps-grid,
    .page-t-i-x-u-md5__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-t-i-x-u-md5__feature-item,
    .page-t-i-x-u-md5__step-item,
    .page-t-i-x-u-md5__promo-item {
        padding: 20px;
        width: 100% !important; /* For list items */
        max-width: 100% !important; /* For list items */
        box-sizing: border-box !important; /* For list items */
        margin-left: 0 !important; /* For list items */
        margin-right: 0 !important; /* For list items */
    }

    .page-t-i-x-u-md5__feature-icon,
    .page-t-i-x-u-md5__step-image,
    .page-t-i-x-u-md5__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-t-i-x-u-md5__faq-container {
        margin: 20px auto 0 auto;
    }

    .page-t-i-x-u-md5__faq-question {
        padding: 15px 20px;
    }

    .page-t-i-x-u-md5__faq-title {
        font-size: 1.1em;
    }

    .page-t-i-x-u-md5__faq-toggle {
        font-size: 1.5em;
    }

    .page-t-i-x-u-md5__faq-answer {
        padding: 0 20px;
    }

    .page-t-i-x-u-md5__faq-item.active .page-t-i-x-u-md5__faq-answer {
        padding: 15px 20px !important;
    }

    .page-t-i-x-u-md5__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal on mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
    }
    .page-t-i-x-u-md5__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
    }
}
  