
    .page-78win-t-i-app {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* As per header offset requirement */
}

/* General section styling */
.page-78win-t-i-app__section-title {
    font-size: 2.5em;
    color: #e94560; /* Accent color */
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
    font-weight: bold;
}

.page-78win-t-i-app__section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    padding: 0 15px;
    color: #ccc;
}

/* Buttons */
.page-78win-t-i-app__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-78win-t-i-app__button--primary {
    background-color: #e94560;
    color: #ffffff;
}

.page-78win-t-i-app__button--primary:hover {
    background-color: #d83450;
    transform: translateY(-2px);
}

.page-78win-t-i-app__button--secondary {
    background-color: #3f72af;
    color: #ffffff;
    border: 1px solid #3f72af;
}

.page-78win-t-i-app__button--secondary:hover {
    background-color: #34629e;
    transform: translateY(-2px);
}

.page-78win-t-i-app__button--promo {
    background-color: #f7b32b;
    color: #1a1a2e;
}

.page-78win-t-i-app__button--promo:hover {
    background-color: #e6a21a;
    transform: translateY(-2px);
}

/* Image styling */
.page-78win-t-i-app img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Hero Section */
.page-78win-t-i-app__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    text-align: center;
    gap: 40px;
}

.page-78win-t-i-app__hero-content {
    max-width: 800px;
}

.page-78win-t-i-app__hero-title {
    font-size: 3.2em;
    color: #e94560;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-78win-t-i-app__hero-description {
    font-size: 1.3em;
    color: #ccc;
    margin-bottom: 40px;
}

.page-78win-t-i-app__download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-78win-t-i-app__hero-image-wrapper {
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Features Section */
.page-78win-t-i-app__features-section {
    padding: 80px 20px;
    background-color: #1f203a;
}

.page-78win-t-i-app__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-78win-t-i-app__feature-item {
    background-color: #2a2b4b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Crucial for responsiveness */
}

.page-78win-t-i-app__feature-item:hover {
    transform: translateY(-5px);
}

.page-78win-t-i-app__feature-icon {
    width: 200px; /* Min size */
    height: 200px; /* Min size */
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e94560;
}

.page-78win-t-i-app__feature-title {
    font-size: 1.6em;
    color: #e94560;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-78win-t-i-app__feature-description {
    color: #ccc;
    font-size: 1em;
}

/* How-To-Download Section */
.page-78win-t-i-app__how-to-download-section {
    padding: 80px 20px;
    background-color: #1a1a2e;
}

.page-78win-t-i-app__steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-78win-t-i-app__step-item {
    background-color: #2a2b4b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1 1 300px; /* Allow items to grow/shrink, min-width 300px */
    max-width: 350px;
    box-sizing: border-box;
}

.page-78win-t-i-app__step-number {
    font-size: 2.5em;
    color: #f7b32b;
    font-weight: bold;
    margin-bottom: 15px;
    border: 3px solid #f7b32b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.page-78win-t-i-app__step-title {
    font-size: 1.5em;
    color: #e94560;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-78win-t-i-app__step-description {
    color: #ccc;
    font-size: 1em;
}

.page-78win-t-i-app__step-image-wrapper {
    margin: 20px auto;
    max-width: 300px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-78win-t-i-app__step-image {
    border-radius: 8px;
    border: 2px solid #3f72af;
}

/* Game Showcase Section */
.page-78win-t-i-app__game-showcase-section {
    padding: 80px 20px;
    background-color: #1f203a;
}

.page-78win-t-i-app__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-78win-t-i-app__game-item {
    background-color: #2a2b4b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-78win-t-i-app__game-item:hover {
    transform: translateY(-5px);
}

.page-78win-t-i-app__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 3px solid #3f72af;
    border-radius: 0; /* Override global border-radius */
}

.page-78win-t-i-app__game-title {
    font-size: 1.8em;
    color: #f7b32b;
    margin: 20px 0 10px 0;
    padding: 0 15px;
    font-weight: bold;
}

.page-78win-t-i-app__game-description {
    color: #ccc;
    font-size: 1em;
    padding: 0 15px 20px 15px;
}

/* Promo Section */
.page-78win-t-i-app__promo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.page-78win-t-i-app__promo-content {
    max-width: 800px;
}

.page-78win-t-i-app__promo-title {
    font-size: 2.8em;
    color: #e94560;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-78win-t-i-app__promo-description {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 40px;
}

.page-78win-t-i-app__promo-image-wrapper {
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* FAQ Section */
.page-78win-t-i-app__faq-section {
    padding: 80px 20px;
    background-color: #1f203a;
}

.page-78win-t-i-app__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-78win-t-i-app__faq-item {
    background-color: #2a2b4b;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}

.page-78win-t-i-app__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #3f72af;
    color: #ffffff;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.page-78win-t-i-app__faq-question:hover {
    background-color: #34629e;
}

.page-78win-t-i-app__faq-question-text {
    font-size: 1.3em;
    margin: 0;
    font-weight: bold;
    color: #ffffff;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-78win-t-i-app__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-78win-t-i-app__faq-item.active .page-78win-t-i-app__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-78win-t-i-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: #ccc;
    background-color: #2a2b4b;
    box-sizing: border-box;
}

.page-78win-t-i-app__faq-item.active .page-78win-t-i-app__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px 25px !important; /* Expanded padding */
    opacity: 1;
}

.page-78win-t-i-app__faq-answer p {
    margin: 0;
    font-size: 1.05em;
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word;
}

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

.page-78win-t-i-app__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-78win-t-i-app__floating-button--register {
    background-color: #e94560;
}

.page-78win-t-i-app__floating-button--register:hover {
    background-color: #d83450;
    transform: translateY(-3px);
}

.page-78win-t-i-app__floating-button--login {
    background-color: #3f72af;
}

.page-78win-t-i-app__floating-button--login:hover {
    background-color: #34629e;
    transform: translateY(-3px);
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-78win-t-i-app__hero-title {
        font-size: 2.8em;
    }
    .page-78win-t-i-app__section-title {
        font-size: 2em;
    }
    .page-78win-t-i-app__promo-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-78win-t-i-app__hero-section {
        flex-direction: column;
        padding: 40px 15px;
    }
    .page-78win-t-i-app__hero-title {
        font-size: 2.2em;
    }
    .page-78win-t-i-app__hero-description {
        font-size: 1.1em;
    }
    .page-78win-t-i-app__download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-78win-t-i-app__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        box-sizing: border-box !important;
    }

    .page-78win-t-i-app__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-78win-t-i-app__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Features Grid */
    .page-78win-t-i-app__features-grid {
        grid-template-columns: 1fr;
    }
    .page-78win-t-i-app__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 15px;
    }
    .page-78win-t-i-app__feature-icon {
        width: 150px;
        height: 150px;
    }
    .page-78win-t-i-app__feature-title {
        font-size: 1.4em;
    }

    /* Steps Container */
    .page-78win-t-i-app__steps-container {
        flex-direction: column;
        align-items: center;
    }
    .page-78win-t-i-app__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 15px;
    }
    .page-78win-t-i-app__step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Game Grid */
    .page-78win-t-i-app__game-grid {
        grid-template-columns: 1fr;
    }
    .page-78win-t-i-app__game-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-78win-t-i-app__game-image {
        height: 200px;
    }
    .page-78win-t-i-app__game-title {
        font-size: 1.6em;
    }

    /* Promo Section */
    .page-78win-t-i-app__promo-section {
        padding: 40px 15px;
    }
    .page-78win-t-i-app__promo-title {
        font-size: 1.8em;
    }
    .page-78win-t-i-app__promo-description {
        font-size: 1em;
    }

    /* FAQ Section */
    .page-78win-t-i-app__faq-question {
        padding: 15px 20px;
    }
    .page-78win-t-i-app__faq-question-text {
        font-size: 1.1em;
    }
    .page-78win-t-i-app__faq-toggle {
        font-size: 1.5em;
    }
    .page-78win-t-i-app__faq-answer {
        padding: 0 20px;
    }
    .page-78win-t-i-app__faq-item.active .page-78win-t-i-app__faq-answer {
        padding: 15px 20px !important;
    }
    .page-78win-t-i-app__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Floating Buttons */
    .page-78win-t-i-app__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Change to row for mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
    }
    .page-78win-t-i-app__floating-button {
        width: 48%; /* Adjust width to fit two buttons */
        height: 45px;
        font-size: 0.95em;
    }
}
  