:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --card-bg: #2A1212;
    --background-color: #140C0C;
    --text-main-color: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__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, header offset handled by body in shared.css */
    background-color: var(--deep-red-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__main-title {
    font-weight: bold;
    line-height: 1.2;
    color: var(--gold-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__intro-text {
    font-size: 1.15em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__content-section {
    padding: 50px 0;
    background-color: var(--background-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__text-block {
    font-size: 1.05em;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__feature-grid,
.page-blog-hi8-uy-tin-exclusive-offers-and-security__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__feature-card img,
.page-blog-hi8-uy-tin-exclusive-offers-and-security__game-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    width: 100%;
    min-height: 200px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__card-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__card-title a:hover {
    text-decoration: underline;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__card-text {
    font-size: 1em;
    color: var(--text-main-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__security-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__security-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__security-item img {
    flex-shrink: 0;
    
    
    margin-right: 20px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--deep-red-color);
    padding: 10px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__security-text h3 {
    font-size: 1.2em;
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 5px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__security-text p {
    font-size: 0.95em;
    color: var(--text-main-color);
    margin: 0;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__info-card {
    padding: 30px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__info-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
    width: 100%;
    min-height: 250px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 40px;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px 30px 25px 70px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 25px;
    top: 25px;
    background-color: var(--primary-color);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item h3 {
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item p {
    color: var(--text-main-color);
    margin: 0;
}

/* FAQ Section Styles */
.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-section {
    padding: 50px 0;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-list {
    margin-top: 40px;
}

details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item summary.page-blog-hi8-uy-tin-exclusive-offers-and-security__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;
}

details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item summary.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item summary.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-question:hover {
    background: rgba(var(--gold-color-rgb), 0.1);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-qtext {
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item .page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-answer {
    padding: 0 25px 25px;
    background: var(--background-color);
    border-radius: 0 0 10px 10px;
    color: var(--text-main-color);
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

/* General image styling to prevent small icons and ensure responsiveness */
.page-blog-hi8-uy-tin-exclusive-offers-and-security img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-hi8-uy-tin-exclusive-offers-and-security__security-item img {
    object-fit: contain; /* Icons can be contained */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__section-title {
        font-size: 2em;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__feature-grid,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__game-grid,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__security-list,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__info-columns {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__card {
        padding: 20px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item {
        padding: 20px 25px 20px 60px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item::before {
        left: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-blog-hi8-uy-tin-exclusive-offers-and-security {
        font-size: 15px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__hero-image img {
        border-radius: 8px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__main-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 15px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__cta-button,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__text-block {
        font-size: 0.95em;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__feature-grid,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__game-grid,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__security-list,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__info-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__security-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__security-item img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item {
        padding: 20px 20px 20px 50px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__step-item::before {
        left: 15px;
        top: 20px;
    }
    details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item summary.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-question {
        padding: 15px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-qtext {
        font-size: 1em;
    }
    details.page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-item .page-blog-hi8-uy-tin-exclusive-offers-and-security__faq-answer {
        padding: 0 15px 15px;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__feature-card img,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__game-card img,
    .page-blog-hi8-uy-tin-exclusive-offers-and-security__info-card img {
        min- /* Adjust min-height for smaller screens */
    }
}