/* style/resources-how-to-play-69vn.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A2E; /* Midnight Blue */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a; /* Body background from shared.css */
    --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
    --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-resources-how-to-play-69vn {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark);
    line-height: 1.6;
    padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-resources-how-to-play-69vn__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-how-to-play-69vn__hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.page-resources-how-to-play-69vn__main-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-resources-how-to-play-69vn__subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.page-resources-how-to-play-69vn__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-resources-how-to-play-69vn__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-resources-how-to-play-69vn__cta-button--primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-play-69vn__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-play-69vn__cta-button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-play-69vn__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-play-69vn__cta-buttons--single {
    margin-top: 40px;
}

.page-resources-how-to-play-69vn__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color-dark);
}

.page-resources-how-to-play-69vn__section:last-of-type {
    border-bottom: none;
}

.page-resources-how-to-play-69vn__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-resources-how-to-play-69vn__description-text {
    font-size: 17px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: center;
    opacity: 0.85;
}

.page-resources-how-to-play-69vn__content-grid,
.page-resources-how-to-play-69vn__game-categories,
.page-resources-how-to-play-69vn__info-grid,
.page-resources-how-to-play-69vn__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-play-69vn__card,
.page-resources-how-to-play-69vn__game-card,
.page-resources-how-to-play-69vn__info-card,
.page-resources-how-to-play-69vn__promo-card {
    background-color: var(--card-bg-dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-how-to-play-69vn__card:hover,
.page-resources-how-to-play-69vn__game-card:hover,
.page-resources-how-to-play-69vn__info-card:hover,
.page-resources-how-to-play-69vn__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-play-69vn__card-image,
.page-resources-how-to-play-69vn__game-card-image,
.page-resources-how-to-play-69vn__info-card-icon,
.page-resources-how-to-play-69vn__promo-card-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: contain; /* Ensure image content is fully visible */
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

.page-resources-how-to-play-69vn__info-card-icon {
    height: 100px;
    margin-bottom: 15px;
}

.page-resources-how-to-play-69vn__card-title,
.page-resources-how-to-play-69vn__game-card-title,
.page-resources-how-to-play-69vn__info-card-title,
.page-resources-how-to-play-69vn__promo-card-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-resources-how-to-play-69vn__card-text,
.page-resources-how-to-play-69vn__game-card-text,
.page-resources-how-to-play-69vn__info-card-text,
.page-resources-how-to-play-69vn__promo-card-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
    flex-grow: 1;
}

.page-resources-how-to-play-69vn__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-play-69vn__step-item {
    background-color: var(--card-bg-dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    border: 1px solid var(--border-color-dark);
}

.page-resources-how-to-play-69vn__step-icon {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.page-resources-how-to-play-69vn__step-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-resources-how-to-play-69vn__step-text {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
}

.page-resources-how-to-play-69vn__tip-text {
    font-size: 16px;
    color: var(--primary-color);
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px dashed var(--primary-color);
}

.page-resources-how-to-play-69vn__support-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 700px;
    background-color: var(--card-bg-dark);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color-dark);
}

.page-resources-how-to-play-69vn__support-item {
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-color-dark);
    font-size: 17px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.page-resources-how-to-play-69vn__support-item:last-child {
    border-bottom: none;
}

.page-resources-how-to-play-69vn__support-item strong {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-play-69vn__main-title {
        font-size: 40px;
    }
    .page-resources-how-to-play-69vn__section-title {
        font-size: 32px;
    }
    .page-resources-how-to-play-69vn__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-resources-how-to-play-69vn__card,
    .page-resources-how-to-play-69vn__game-card,
    .page-resources-how-to-play-69vn__info-card,
    .page-resources-how-to-play-69vn__promo-card,
    .page-resources-how-to-play-69vn__step-item {
        padding: 25px;
    }
    .page-resources-how-to-play-69vn__card-title,
    .page-resources-how-to-play-69vn__game-card-title,
    .page-resources-how-to-play-69vn__info-card-title,
    .page-resources-how-to-play-69vn__promo-card-title,
    .page-resources-how-to-play-69vn__step-title {
        font-size: 22px;
    }
    .page-resources-how-to-play-69vn__card-image,
    .page-resources-how-to-play-69vn__game-card-image,
    .page-resources-how-to-play-69vn__promo-card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-play-69vn {
        padding-top: 100px !important; /* Adjust for fixed header on mobile */
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-how-to-play-69vn__container {
        padding: 0 15px;
    }
    .page-resources-how-to-play-69vn__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-resources-how-to-play-69vn__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-resources-how-to-play-69vn__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-how-to-play-69vn__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-how-to-play-69vn__section {
        padding: 40px 0;
    }
    .page-resources-how-to-play-69vn__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-resources-how-to-play-69vn__description-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .page-resources-how-to-play-69vn__content-grid,
    .page-resources-how-to-play-69vn__game-categories,
    .page-resources-how-to-play-69vn__info-grid,
    .page-resources-how-to-play-69vn__promo-grid,
    .page-resources-how-to-play-69vn__step-by-step {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    .page-resources-how-to-play-69vn__card,
    .page-resources-how-to-play-69vn__game-card,
    .page-resources-how-to-play-69vn__info-card,
    .page-resources-how-to-play-69vn__promo-card,
    .page-resources-how-to-play-69vn__step-item {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto;
        margin-right: auto;
    }
    .page-resources-how-to-play-69vn__card-image,
    .page-resources-how-to-play-69vn__game-card-image,
    .page-resources-how-to-play-69vn__info-card-icon,
    .page-resources-how-to-play-69vn__promo-card-image {
        height: 150px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        object-fit: contain;
    }
    .page-resources-how-to-play-69vn__card-title,
    .page-resources-how-to-play-69vn__game-card-title,
    .page-resources-how-to-play-69vn__info-card-title,
    .page-resources-how-to-play-69vn__promo-card-title,
    .page-resources-how-to-play-69vn__step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .page-resources-how-to-play-69vn__card-text,
    .page-resources-how-to-play-69vn__game-card-text,
    .page-resources-how-to-play-69vn__info-card-text,
    .page-resources-how-to-play-69vn__promo-card-text,
    .page-resources-how-to-play-69vn__step-text {
        font-size: 15px;
    }
    .page-resources-how-to-play-69vn__step-icon {
        font-size: 30px;
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .page-resources-how-to-play-69vn__tip-text {
        font-size: 15px;
        padding: 15px;
    }
    .page-resources-how-to-play-69vn__support-list {
        margin: 20px auto 0 auto;
        max-width: 100%;
    }
    .page-resources-how-to-play-69vn__support-item {
        padding: 15px 20px;
        font-size: 16px;
    }
}

/* Ensure all images and containers are responsive */
.page-resources-how-to-play-69vn img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .page-resources-how-to-play-69vn img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-how-to-play-69vn__container,
    .page-resources-how-to-play-69vn__content-grid,
    .page-resources-how-to-play-69vn__game-categories,
    .page-resources-how-to-play-69vn__info-grid,
    .page-resources-how-to-play-69vn__promo-grid,
    .page-resources-how-to-play-69vn__step-by-step {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-how-to-play-69vn__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-how-to-play-69vn__cta-buttons {
        padding-left: 0;
        padding-right: 0;
    }
}