/* style/blog-how-to-use-hy88-code.css */
:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-color: #0D0E12;
    --card-background: #17191F;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-blog-how-to-use-hy88-code {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color);
    line-height: 1.6;
    font-size: 16px;
}

.page-blog-how-to-use-hy88-code__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-how-to-use-hy88-code__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-blog-how-to-use-hy88-code__section-title {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-blog-how-to-use-hy88-code__sub-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-blog-how-to-use-hy88-code__paragraph {
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-blog-how-to-use-hy88-code__highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-blog-how-to-use-hy88-code__link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-how-to-use-hy88-code__link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-blog-how-to-use-hy88-code__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-blog-how-to-use-hy88-code__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-blog-how-to-use-hy88-code__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.page-blog-how-to-use-hy88-code__list-item-title {
    color: var(--secondary-color);
}

.page-blog-how-to-use-hy88-code__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
    border: none;
    cursor: pointer;
}

.page-blog-how-to-use-hy88-code__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 58, 0.6);
}

.page-blog-how-to-use-hy88-code__btn-secondary {
    background: var(--card-background);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.page-blog-how-to-use-hy88-code__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

/* Hero Section */
.page-blog-how-to-use-hy88-code__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background-color);
}

.page-blog-how-to-use-hy88-code__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-how-to-use-hy88-code__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-how-to-use-hy88-code__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(255, 165, 58, 0.7);
}

.page-blog-how-to-use-hy88-code__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-how-to-use-hy88-code__hero-content h1 {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 140, 26, 0.8);
    font-weight: 700;
}

.page-blog-how-to-use-hy88-code__hero-content p {
    font-size: 20px;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Overview Section */
.page-blog-how-to-use-hy88-code__overview-section {
    background-color: var(--background-color);
}

.page-blog-how-to-use-hy88-code__image-wrapper {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-use-hy88-code__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Step-by-Step Section */
.page-blog-how-to-use-hy88-code__step-by-step-section {
    background-color: #0D0E12; /* Using a slightly darker background */
    padding: 80px 0;
}

.page-blog-how-to-use-hy88-code__step-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-use-hy88-code__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-blog-how-to-use-hy88-code__step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255, 140, 26, 0.7);
}

.page-blog-how-to-use-hy88-code__step-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-blog-how-to-use-hy88-code__step-description {
    color: var(--text-main-color);
}

/* Code Types Section */
.page-blog-how-to-use-hy88-code__code-types-section {
    background-color: var(--background-color);
}

.page-blog-how-to-use-hy88-code__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-how-to-use-hy88-code__card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-use-hy88-code__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-blog-how-to-use-hy88-code__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-use-hy88-code__card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-blog-how-to-use-hy88-code__card-text {
    color: var(--text-main-color);
    margin-bottom: 20px;
}

/* Tips Section */
.page-blog-how-to-use-hy88-code__tips-section {
    background-color: #0D0E12;
}

.page-blog-how-to-use-hy88-code__tips-list li::before {
    content: '✓';
}

/* Troubleshooting Section */
.page-blog-how-to-use-hy88-code__troubleshooting-section {
    background-color: var(--background-color);
}

.page-blog-how-to-use-hy88-code__trouble-list li::before {
    content: '✗';
    color: #f00;
}

.page-blog-how-to-use-hy88-code__contact-support {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-blog-how-to-use-hy88-code__faq-section {
    background-color: #0D0E12;
}

.page-blog-how-to-use-hy88-code__faq-list {
    margin-top: 40px;
}

details.page-blog-how-to-use-hy88-code__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

details.page-blog-how-to-use-hy88-code__faq-item summary.page-blog-how-to-use-hy88-code__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

details.page-blog-how-to-use-hy88-code__faq-item summary.page-blog-how-to-use-hy88-code__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-how-to-use-hy88-code__faq-item summary.page-blog-how-to-use-hy88-code__faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.page-blog-how-to-use-hy88-code__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

.page-blog-how-to-use-hy88-code__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 32px;
    text-align: center;
}

details.page-blog-how-to-use-hy88-code__faq-item[open] .page-blog-how-to-use-hy88-code__faq-question {
    background: rgba(var(--primary-color-rgb), 0.05);
    border-bottom: 1px solid var(--border-color);
}

details.page-blog-how-to-use-hy88-code__faq-item .page-blog-how-to-use-hy88-code__faq-answer {
    padding: 20px 25px 25px;
    background: var(--card-background);
    border-top: 1px solid rgba(var(--border-color-rgb), 0.2);
    border-radius: 0 0 12px 12px;
    color: var(--text-main-color);
}

.page-blog-how-to-use-hy88-code__faq-answer p {
    margin: 0;
}

/* Conclusion Section */
.page-blog-how-to-use-hy88-code__conclusion-section {
    background-color: var(--background-color);
    text-align: center;
    padding: 80px 0;
}

.page-blog-how-to-use-hy88-code__conclusion-section .page-blog-how-to-use-hy88-code__section-title {
    color: var(--primary-color);
}

.page-blog-how-to-use-hy88-code__conclusion-section .page-blog-how-to-use-hy88-code__paragraph {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-use-hy88-code__hero-content h1 {
        font-size: 40px;
    }
    .page-blog-how-to-use-hy88-code__section-title {
        font-size: 32px;
    }
    .page-blog-how-to-use-hy88-code__sub-title {
        font-size: 24px;
    }
    .page-blog-how-to-use-hy88-code__step-title {
        font-size: 20px;
    }
    .page-blog-how-to-use-hy88-code__card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-use-hy88-code {
        font-size: 15px;
    }
    .page-blog-how-to-use-hy88-code__container {
        padding: 15px;
    }
    .page-blog-how-to-use-hy88-code__section {
        padding: 40px 0;
    }
    .page-blog-how-to-use-hy88-code__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-how-to-use-hy88-code__hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-blog-how-to-use-hy88-code__hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-blog-how-to-use-hy88-code__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-how-to-use-hy88-code__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-blog-how-to-use-hy88-code__sub-title {
        font-size: 22px;
    }
    .page-blog-how-to-use-hy88-code__step-card {
        padding: 20px;
    }
    .page-blog-how-to-use-hy88-code__step-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-blog-how-to-use-hy88-code__step-title {
        font-size: 18px;
    }
    .page-blog-how-to-use-hy88-code__card-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-how-to-use-hy88-code__card-image {
        height: 180px;
    }
    .page-blog-how-to-use-hy88-code__list li {
        padding-left: 25px;
    }
    .page-blog-how-to-use-hy88-code__list li::before {
        font-size: 20px;
    }
    details.page-blog-how-to-use-hy88-code__faq-item summary.page-blog-how-to-use-hy88-code__faq-question {
        padding: 15px;
        font-size: 16px;
    }
    .page-blog-how-to-use-hy88-code__faq-qtext {
        font-size: 16px;
    }
    .page-blog-how-to-use-hy88-code__faq-toggle {
        font-size: 24px;
        width: 28px;
    }
    details.page-blog-how-to-use-hy88-code__faq-item .page-blog-how-to-use-hy88-code__faq-answer {
        padding: 15px 15px 20px;
    }
    .page-blog-how-to-use-hy88-code__image-wrapper {
        margin: 20px auto;
    }
    .page-blog-how-to-use-hy88-code__image-wrapper img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-how-to-use-hy88-code__section,
    .page-blog-how-to-use-hy88-code__card,
    .page-blog-how-to-use-hy88-code__container,
    .page-blog-how-to-use-hy88-code__contact-support,
    .page-blog-how-to-use-hy88-code__hero-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-how-to-use-hy88-code__conclusion-section .page-blog-how-to-use-hy88-code__paragraph {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-use-hy88-code__hero-content h1 {
        font-size: 26px;
    }
    .page-blog-how-to-use-hy88-code__section-title {
        font-size: 24px;
    }
    .page-blog-how-to-use-hy88-code__hero-content p {
        font-size: 15px;
    }
    .page-blog-how-to-use-hy88-code__cta-button {
        padding: 10px 20px;
        font-size: 15px;
    }
    .page-blog-how-to-use-hy88-code__step-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    .page-blog-how-to-use-hy88-code__faq-qtext {
        font-size: 15px;
    }
    .page-blog-how-to-use-hy88-code__faq-toggle {
        font-size: 22px;
    }
}