:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-blog-hy88-latest-promotions {
    color: var(--text-main); /* Light text for dark body background */
    background: #0D0E12; /* Explicitly set for main content area, matching body */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* HERO Section */
.page-blog-hy88-latest-promotions__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 as body handles header offset */
    overflow: hidden; /* Prevent image overflow */
}

.page-blog-hy88-latest-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width */
}

.page-blog-hy88-latest-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-hy88-latest-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color); /* Add a subtle border */
    box-shadow: 0 0 20px rgba(255, 140, 26, 0.5); /* Glow effect */
}

.page-blog-hy88-latest-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.page-blog-hy88-latest-promotions__hero-content h1 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(255, 140, 26, 0.7);
    /* No fixed font-size for H1, rely on clamp if needed, otherwise just weight/line-height */
}

.page-blog-hy88-latest-promotions__hero-description {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 30px;
}

/* General Container and Section Styling */
.page-blog-hy88-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-hy88-latest-promotions__section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 140, 26, 0.4);
}

/* CTA Buttons */
.page-blog-hy88-latest-promotions__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: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box; /* For responsiveness */
    white-space: normal; /* For responsiveness */
    word-wrap: break-word; /* For responsiveness */
}

.page-blog-hy88-latest-promotions__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.6);
}

.page-blog-hy88-latest-promotions__cta-button--small {
    padding: 12px 25px;
    font-size: 16px;
    margin: 10px;
}

.page-blog-hy88-latest-promotions__cta-button--secondary {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}
.page-blog-hy88-latest-promotions__cta-button--secondary:hover {
    background: var(--border-color);
    box-shadow: 0 4px 15px rgba(168, 79, 12, 0.6);
}

.page-blog-hy88-latest-promotions__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%; /* For responsiveness */
    max-width: 100%; /* For responsiveness */
    overflow: hidden; /* For responsiveness */
    box-sizing: border-box; /* For responsiveness */
}

/* Introduction Section */
.page-blog-hy88-latest-promotions__introduction-section p {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.05em;
    text-align: justify;
}
.page-blog-hy88-latest-promotions__introduction-section p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-hy88-latest-promotions__introduction-section p a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Types Section - Card Grid */
.page-blog-hy88-latest-promotions__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hy88-latest-promotions__card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    color: var(--text-main); /* Ensure light text on dark card background */
}

.page-blog-hy88-latest-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 140, 26, 0.5);
}

.page-blog-hy88-latest-promotions__card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-hy88-latest-promotions__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.page-blog-hy88-latest-promotions__card-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-blog-hy88-latest-promotions__card-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-blog-hy88-latest-promotions__card p {
    font-size: 0.95em;
    color: var(--text-main);
    flex-grow: 1; /* Make paragraphs take available space */
}

/* Guide Section - Steps */
.page-blog-hy88-latest-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hy88-latest-promotions__step-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-blog-hy88-latest-promotions__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 140, 26, 0.1);
    border: 2px solid var(--primary-color);
}

.page-blog-hy88-latest-promotions__step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-hy88-latest-promotions__step-item p {
    font-size: 0.95em;
    color: var(--text-main);
}
.page-blog-hy88-latest-promotions__step-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-hy88-latest-promotions__step-item p a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Tips Section - List */
.page-blog-hy88-latest-promotions__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-hy88-latest-promotions__tip-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-left: 5px solid var(--primary-color);
    color: var(--text-main);
}

.page-blog-hy88-latest-promotions__tip-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-hy88-latest-promotions__tip-item p {
    font-size: 1em;
    color: var(--text-main);
}
.page-blog-hy88-latest-promotions__tip-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-hy88-latest-promotions__tip-item p a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Security Section - Info Cards */
.page-blog-hy88-latest-promotions__info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hy88-latest-promotions__info-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
}

.page-blog-hy88-latest-promotions__info-card img {
    width: 100%;
    
    object-fit: contain; /* Use contain to show full icon/illustration */
    margin: 0 auto 20px;
    max-width: 250px; /* Max width for icons */
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.page-blog-hy88-latest-promotions__info-card-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-hy88-latest-promotions__info-card p {
    font-size: 0.95em;
    color: var(--text-main);
    flex-grow: 1;
}
.page-blog-hy88-latest-promotions__info-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-hy88-latest-promotions__info-card p a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* FAQ Section */
.page-blog-hy88-latest-promotions__faq-list {
    margin-top: 40px;
}

details.page-blog-hy88-latest-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
details.page-blog-hy88-latest-promotions__faq-item summary.page-blog-hy88-latest-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
    font-weight: 600;
}
details.page-blog-hy88-latest-promotions__faq-item summary.page-blog-hy88-latest-promotions__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-hy88-latest-promotions__faq-item summary.page-blog-hy88-latest-promotions__faq-question:hover {
    background: rgba(255, 140, 26, 0.1);
}
.page-blog-hy88-latest-promotions__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main); /* Ensure text is visible */
}
.page-blog-hy88-latest-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-blog-hy88-latest-promotions__faq-item .page-blog-hy88-latest-promotions__faq-answer {
    padding: 0 20px 20px;
    background: rgba(255, 140, 26, 0.05);
    border-radius: 0 0 5px 5px;
    color: var(--text-main);
}
.page-blog-hy88-latest-promotions__faq-answer p {
    font-size: 0.95em;
    color: var(--text-main);
    margin-top: 0;
}
.page-blog-hy88-latest-promotions__faq-answer p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-hy88-latest-promotions__faq-answer p a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Conclusion Section */
.page-blog-hy88-latest-promotions__conclusion-section p {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.05em;
    text-align: justify;
}
.page-blog-hy88-latest-promotions__conclusion-section p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}
.page-blog-hy88-latest-promotions__conclusion-section p a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-hy88-latest-promotions__hero-content h1 {
        font-size: clamp(2em, 4vw, 3em); /* Responsive H1 font size */
    }
    .page-blog-hy88-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-blog-hy88-latest-promotions__card-grid,
    .page-blog-hy88-latest-promotions__steps-grid,
    .page-blog-hy88-latest-promotions__info-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* General Mobile Adjustments */
    .page-blog-hy88-latest-promotions {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-blog-hy88-latest-promotions__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero Section Mobile */
    .page-blog-hy88-latest-promotions__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-hy88-latest-promotions__hero-image img {
        border-radius: 4px;
    }
    .page-blog-hy88-latest-promotions__hero-content h1 {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-blog-hy88-latest-promotions__hero-description {
        font-size: 1em;
    }

    /* Section Titles Mobile */
    .page-blog-hy88-latest-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* CTA Buttons Mobile */
    .page-blog-hy88-latest-promotions__cta-button {
        padding: 12px 20px;
        font-size: 16px;
        margin-top: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-hy88-latest-promotions__cta-button--small {
        margin: 5px;
    }
    .page-blog-hy88-latest-promotions__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding-left: 15px; /* Ensure padding for button containers */
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Card Grid Mobile */
    .page-blog-hy88-latest-promotions__card-grid,
    .page-blog-hy88-latest-promotions__steps-grid,
    .page-blog-hy88-latest-promotions__info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-hy88-latest-promotions__card,
    .page-blog-hy88-latest-promotions__step-item,
    .page-blog-hy88-latest-promotions__info-card {
        padding: 20px;
    }
    .page-blog-hy88-latest-promotions__card img {
        
    }
    .page-blog-hy88-latest-promotions__card-title,
    .page-blog-hy88-latest-promotions__step-title,
    .page-blog-hy88-latest-promotions__info-card-title {
        font-size: 1.2em;
    }

    /* Tip List Mobile */
    .page-blog-hy88-latest-promotions__tip-item {
        padding: 20px;
    }
    .page-blog-hy88-latest-promotions__tip-title {
        font-size: 1.3em;
    }

    /* FAQ Mobile */
    details.page-blog-hy88-latest-promotions__faq-item summary.page-blog-hy88-latest-promotions__faq-question {
        padding: 15px;
    }
    .page-blog-hy88-latest-promotions__faq-qtext {
        font-size: 15px;
    }
    details.page-blog-hy88-latest-promotions__faq-item .page-blog-hy88-latest-promotions__faq-answer {
        padding: 0 15px 15px;
    }

    /* Image responsiveness for all img tags */
    .page-blog-hy88-latest-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* Ensure all images maintain original color, no filters */
.page-blog-hy88-latest-promotions img {
    filter: none !important;
}

/* Ensure text contrast for links in dark background */
.page-blog-hy88-latest-promotions a {
    color: var(--primary-color);
}
.page-blog-hy88-latest-promotions a:hover {
    color: var(--secondary-color);
}