.page-index-how-to-use-78win-code {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
}

.page-index-how-to-use-78win-code__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-index-how-to-use-78win-code__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #08160F;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-index-how-to-use-78win-code__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    position: relative;
}

.page-index-how-to-use-78win-code__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-index-how-to-use-78win-code__hero-content {
    position: relative; /* Not absolute to avoid overlay */
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    z-index: 1;
    background-color: #08160F; /* Ensure text block has its own background */
    margin-top: -50px; /* Pull content slightly over image bottom for visual flow, but not overlaying text on image */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-how-to-use-78win-code__main-title {
    font-size: clamp(1.8em, 2.5vw, 2.5em); /* Use clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    max-width: 100%; /* Ensure H1 doesn't overflow */
    box-sizing: border-box;
}

.page-index-how-to-use-78win-code__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-index-how-to-use-78win-code__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-index-how-to-use-78win-code__btn-primary,
.page-index-how-to-use-78win-code__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-how-to-use-78win-code__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button custom color */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-index-how-to-use-78win-code__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 209, 111, 0.4);
}

.page-index-how-to-use-78win-code__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* Match primary button glow color */
    border: 2px solid #2AD16F; /* Border custom color */
}

.page-index-how-to-use-78win-code__btn-secondary:hover {
    background-color: rgba(42, 209, 111, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 209, 111, 0.2);
}

/* General Section Styling */
.page-index-how-to-use-78win-code__section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

.page-index-how-to-use-78win-code__section-title {
    font-size: 2em;
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-how-to-use-78win-code__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
    margin: 15px auto 0;
}

.page-index-how-to-use-78win-code__text-block {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

/* Activation Guide Specifics */
.page-index-how-to-use-78win-code__step-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-how-to-use-78win-code__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-index-how-to-use-78win-code__step-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-index-how-to-use-78win-code__step-description {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-index-how-to-use-78win-code__step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

/* Code Types Grid */
.page-index-how-to-use-78win-code__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-how-to-use-78win-code__card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-how-to-use-78win-code__card-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-index-how-to-use-78win-code__card-image {
    width: 100%;
    max-width: 400px; /* Example max-width for card images */
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-height: 200px; /* Min size requirement */
}

.page-index-how-to-use-78win-code__card-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
}

/* Benefits & Terms Lists */
.page-index-how-to-use-78win-code__benefits-list,
.page-index-how-to-use-78win-code__terms-list,
.page-index-how-to-use-78win-code__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-how-to-use-78win-code__benefits-item,
.page-index-how-to-use-78win-code__terms-item,
.page-index-how-to-use-78win-code__tips-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #2E7A4E; /* Border */
}

.page-index-how-to-use-78win-code__benefits-heading,
.page-index-how-to-use-78win-code__terms-heading,
.page-index-how-to-use-78win-code__tips-heading {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-index-how-to-use-78win-code__benefits-description,
.page-index-how-to-use-78win-code__terms-description,
.page-index-how-to-use-78win-code__tips-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
}

/* FAQ Section */
.page-index-how-to-use-78win-code__faq-list {
    margin-top: 40px;
}

.page-index-how-to-use-78win-code__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #2E7A4E; /* Border */
    overflow: hidden;
}

.page-index-how-to-use-78win-code__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-index-how-to-use-78win-code__faq-question:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter on hover */
}

.page-index-how-to-use-78win-code__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-index-how-to-use-78win-code__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #2AD16F;
}

.page-index-how-to-use-78win-code__faq-item[open] .page-index-how-to-use-78win-code__faq-toggle {
    color: #F2FFF6;
}

.page-index-how-to-use-78win-code__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    line-height: 1.6;
    background-color: #0A4B2C; /* Deep Green for answer background */
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-index-how-to-use-78win-code__faq-answer p {
    margin: 0;
    padding-top: 15px;
    color: #A7D9B8;
}

/* Details element specific styling for FAQ */
.page-index-how-to-use-78win-code__faq-item summary {
    list-style: none; /* Remove default marker */
}
.page-index-how-to-use-78win-code__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

/* Conclusion Section */
.page-index-how-to-use-78win-code__conclusion .page-index-how-to-use-78win-code__text-block {
    text-align: center;
    margin-bottom: 30px;
}