:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-dark: #017439;
    --button-register: #C30808;
    --button-login: #C30808;
    --font-register-login: #FFFF00;
}

.page-blog-top-strategies-for-dice-game-betting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--bg-light); /* Default light background */
}

.page-blog-top-strategies-for-dice-game-betting__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(--bg-light);
}

.page-blog-top-strategies-for-dice-game-betting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width for max-width to work */
}

.page-blog-top-strategies-for-dice-game-betting__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-top-strategies-for-dice-game-betting__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-blog-top-strategies-for-dice-game-betting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-top-strategies-for-dice-game-betting__hero-content h1 {
    font-size: clamp(28px, 4vw, 48px); /* Responsive H1 font size */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-top-strategies-for-dice-game-betting__intro-description {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-blog-top-strategies-for-dice-game-betting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-register); /* Register color for primary CTA */
    color: var(--font-register-login); /* Register/Login font color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-strategies-for-dice-game-betting__cta-button:hover {
    background: #a30606; /* Darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-top-strategies-for-dice-game-betting__content-section {
    padding: 40px 20px;
    margin-bottom: 20px;
}

.page-blog-top-strategies-for-dice-game-betting__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light); /* Light text for dark background */
}

.page-blog-top-strategies-for-dice-game-betting__dark-text-content h2,
.page-blog-top-strategies-for-dice-game-betting__dark-text-content h3 {
    color: var(--text-light);
}

.page-blog-top-strategies-for-dice-game-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Inner padding for content */
    width: 100%; /* Ensure it takes full width for max-width to work */
    box-sizing: border-box;
}

.page-blog-top-strategies-for-dice-game-betting__section-title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-top-strategies-for-dice-game-betting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-blog-top-strategies-for-dice-game-betting__dark-bg .page-blog-top-strategies-for-dice-game-betting__section-title {
    color: var(--text-light);
}

.page-blog-top-strategies-for-dice-game-betting__dark-bg .page-blog-top-strategies-for-dice-game-betting__section-title::after {
    background-color: var(--text-light);
}

.page-blog-top-strategies-for-dice-game-betting p {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-dark);
}

.page-blog-top-strategies-for-dice-game-betting__dark-bg p {
    color: var(--text-light);
}

.page-blog-top-strategies-for-dice-game-betting img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto;
    object-fit: cover;
}

.page-blog-top-strategies-for-dice-game-betting__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 17px;
}

.page-blog-top-strategies-for-dice-game-betting__dark-bg .page-blog-top-strategies-for-dice-game-betting__list {
    color: var(--text-light);
}

.page-blog-top-strategies-for-dice-game-betting__list li {
    margin-bottom: 10px;
}

.page-blog-top-strategies-for-dice-game-betting__strategy-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.page-blog-top-strategies-for-dice-game-betting__strategy-title {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-top-strategies-for-dice-game-betting__cta-section {
    padding: 60px 20px;
    text-align: center;
}

.page-blog-top-strategies-for-dice-game-betting__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-top-strategies-for-dice-game-betting__btn-primary,
.page-blog-top-strategies-for-dice-game-betting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-strategies-for-dice-game-betting__btn-primary {
    background: var(--button-register);
    color: var(--font-register-login);
    border: 2px solid transparent;
}

.page-blog-top-strategies-for-dice-game-betting__btn-primary:hover {
    background: #a30606;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-top-strategies-for-dice-game-betting__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-top-strategies-for-dice-game-betting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-top-strategies-for-dice-game-betting__faq-section {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.page-blog-top-strategies-for-dice-game-betting__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details.page-blog-top-strategies-for-dice-game-betting__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
details.page-blog-top-strategies-for-dice-game-betting__faq-item summary.page-blog-top-strategies-for-dice-game-betting__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;
}
details.page-blog-top-strategies-for-dice-game-betting__faq-item summary.page-blog-top-strategies-for-dice-game-betting__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-top-strategies-for-dice-game-betting__faq-item summary.page-blog-top-strategies-for-dice-game-betting__faq-question:hover {
    background: #f5f5f5;
}
.page-blog-top-strategies-for-dice-game-betting__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--primary-color);
}
.page-blog-top-strategies-for-dice-game-betting__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-top-strategies-for-dice-game-betting__faq-item .page-blog-top-strategies-for-dice-game-betting__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--text-dark);
}
.page-blog-top-strategies-for-dice-game-betting__faq-answer p {
    margin-bottom: 0;
}

/* Related Articles Section */
.page-blog-top-strategies-for-dice-game-betting__related-articles-section {
    padding: 40px 20px 60px;
    background-color: var(--bg-light);
}

.page-blog-top-strategies-for-dice-game-betting__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-top-strategies-for-dice-game-betting__article-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-blog-top-strategies-for-dice-game-betting__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-top-strategies-for-dice-game-betting__article-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 0; /* Override global img border-radius */
    margin: 0; /* Override global img margin */
}

.page-blog-top-strategies-for-dice-game-betting__article-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 20px 20px 10px;
    font-weight: 600;
}

.page-blog-top-strategies-for-dice-game-betting__article-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-top-strategies-for-dice-game-betting__article-card h3 a:hover {
    color: #00562e; /* Slightly darker green on hover */
    text-decoration: underline;
}

.page-blog-top-strategies-for-dice-game-betting__article-card p {
    font-size: 16px;
    color: var(--text-dark);
    padding: 0 20px;
    margin-bottom: 15px;
}

.page-blog-top-strategies-for-dice-game-betting__article-date {
    display: block;
    font-size: 14px;
    color: #888;
    padding: 0 20px 20px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-top-strategies-for-dice-game-betting__hero-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-blog-top-strategies-for-dice-game-betting__hero-section {
        padding-top: 10px !important; /* body handles header offset */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-top-strategies-for-dice-game-betting__hero-container {
        padding: 0;
    }

    .page-blog-top-strategies-for-dice-game-betting__hero-image img {
        border-radius: 4px;
        height: 300px;
    }

    .page-blog-top-strategies-for-dice-game-betting__hero-content h1 {
        font-size: 28px;
    }

    .page-blog-top-strategies-for-dice-game-betting__intro-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-blog-top-strategies-for-dice-game-betting__cta-button {
        padding: 12px 30px;
        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-top-strategies-for-dice-game-betting__content-section,
    .page-blog-top-strategies-for-dice-game-betting__cta-section,
    .page-blog-top-strategies-for-dice-game-betting__faq-section,
    .page-blog-top-strategies-for-dice-game-betting__conclusion-section,
    .page-blog-top-strategies-for-dice-game-betting__related-articles-section {
        padding: 30px 15px;
    }

    .page-blog-top-strategies-for-dice-game-betting__container {
        padding: 0;
    }

    .page-blog-top-strategies-for-dice-game-betting__section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .page-blog-top-strategies-for-dice-game-betting p,
    .page-blog-top-strategies-for-dice-game-betting__list {
        font-size: 16px;
    }

    .page-blog-top-strategies-for-dice-game-betting__strategy-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-blog-top-strategies-for-dice-game-betting__strategy-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .page-blog-top-strategies-for-dice-game-betting__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-top-strategies-for-dice-game-betting__btn-primary,
    .page-blog-top-strategies-for-dice-game-betting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 16px;
    }
    
    details.page-blog-top-strategies-for-dice-game-betting__faq-item summary.page-blog-top-strategies-for-dice-game-betting__faq-question { padding: 15px; }
    .page-blog-top-strategies-for-dice-game-betting__faq-qtext { font-size: 16px; }
    .page-blog-top-strategies-for-dice-game-betting__faq-toggle { font-size: 22px; }
    details.page-blog-top-strategies-for-dice-game-betting__faq-item .page-blog-top-strategies-for-dice-game-betting__faq-answer { padding: 0 15px 15px; }

    .page-blog-top-strategies-for-dice-game-betting__articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-top-strategies-for-dice-game-betting__article-card img {
        
    }

    .page-blog-top-strategies-for-dice-game-betting__article-card h3 {
        font-size: 18px;
        margin: 15px 15px 8px;
    }

    .page-blog-top-strategies-for-dice-game-betting__article-card p {
        font-size: 15px;
        padding: 0 15px;
    }

    .page-blog-top-strategies-for-dice-game-betting__article-date {
        padding: 0 15px 15px;
    }

    /* Ensure all images are responsive */
    .page-blog-top-strategies-for-dice-game-betting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-top-strategies-for-dice-game-betting__section,
    .page-blog-top-strategies-for-dice-game-betting__card,
    .page-blog-top-strategies-for-dice-game-betting__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-top-strategies-for-dice-game-betting__hero-section {
        padding-top: 10px !important;
    }
}