/* style/blog-latest-offers-registration-guide.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --page-bg-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-latest-offers-registration-guide {
    color: var(--text-main-color); /* Main text color for the page, dark background needs light text */
    background-color: var(--page-bg-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-latest-offers-registration-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-latest-offers-registration-guide__section-title {
    font-size: clamp(2rem, 5vw, 2.8rem); /* H1/H2 font size, clamp for responsiveness */
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-blog-latest-offers-registration-guide__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-blog-latest-offers-registration-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-blog-latest-offers-registration-guide__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-blog-latest-offers-registration-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-latest-offers-registration-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-latest-offers-registration-guide__hero-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem); /* H1 specific for hero */
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.page-blog-latest-offers-registration-guide__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-blog-latest-offers-registration-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-latest-offers-registration-guide__btn-primary,
.page-blog-latest-offers-registration-guide__btn-secondary,
.page-blog-latest-offers-registration-guide__btn-tertiary,
.page-blog-latest-offers-registration-guide__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-latest-offers-registration-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.page-blog-latest-offers-registration-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-offers-registration-guide__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-latest-offers-registration-guide__btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.3);
}

.page-blog-latest-offers-registration-guide__btn-tertiary {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
    border: 2px solid var(--deep-green-color);
}

.page-blog-latest-offers-registration-guide__btn-tertiary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.page-blog-latest-offers-registration-guide__btn-link {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    text-decoration: underline;
}

.page-blog-latest-offers-registration-guide__btn-link:hover {
    color: var(--secondary-color);
}

/* Video Section */
.page-blog-latest-offers-registration-guide__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    background-color: var(--card-bg-color);
}

.page-blog-latest-offers-registration-guide__video-container {
    width: 100%;
    max-width: 1000px; /* Adjusted max-width for video */
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-offers-registration-guide__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.page-blog-latest-offers-registration-guide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-blog-latest-offers-registration-guide__video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

/* About Section */
.page-blog-latest-offers-registration-guide__about-section {
    padding: 80px 0;
    background-color: var(--page-bg-color);
}

.page-blog-latest-offers-registration-guide__about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-blog-latest-offers-registration-guide__about-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-secondary-color);
}

.page-blog-latest-offers-registration-guide__about-text p {
    margin-bottom: 15px;
}

.page-blog-latest-offers-registration-guide__about-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-offers-registration-guide__about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Games Section */
.page-blog-latest-offers-registration-guide__games-section {
    padding: 80px 0;
    background-color: var(--card-bg-color);
}

.page-blog-latest-offers-registration-guide__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-blog-latest-offers-registration-guide__game-card {
    background-color: var(--deep-green-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-offers-registration-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-offers-registration-guide__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-blog-latest-offers-registration-guide__game-card-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-latest-offers-registration-guide__game-card-title a {
    color: inherit;
    text-decoration: none;
}

.page-blog-latest-offers-registration-guide__game-card-title a:hover {
    text-decoration: underline;
}

.page-blog-latest-offers-registration-guide__game-card-description {
    font-size: 1rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Promotions Section */
.page-blog-latest-offers-registration-guide__promotions-section {
    padding: 80px 0;
    background-color: var(--page-bg-color);
}

.page-blog-latest-offers-registration-guide__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-latest-offers-registration-guide__promotion-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-blog-latest-offers-registration-guide__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-latest-offers-registration-guide__promotion-card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-blog-latest-offers-registration-guide__promotion-card-title {
    font-size: 1.5rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-blog-latest-offers-registration-guide__promotion-card-description {
    font-size: 1rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-blog-latest-offers-registration-guide__view-all-promos {
    text-align: center;
}

/* Registration Guide Section */
.page-blog-latest-offers-registration-guide__registration-guide-section {
    padding: 80px 0;
    background-color: var(--card-bg-color);
}

.page-blog-latest-offers-registration-guide__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-latest-offers-registration-guide__guide-step-card {
    background-color: var(--deep-green-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-latest-offers-registration-guide__guide-step-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

.page-blog-latest-offers-registration-guide__guide-step-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-blog-latest-offers-registration-guide__guide-step-description {
    font-size: 1rem;
    color: var(--text-secondary-color);
}

.page-blog-latest-offers-registration-guide__register-cta {
    text-align: center;
}

/* App Download Section */
.page-blog-latest-offers-registration-guide__app-download-section {
    padding: 80px 0;
    background-color: var(--page-bg-color);
}

.page-blog-latest-offers-registration-guide__app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-blog-latest-offers-registration-guide__app-qr-code {
    text-align: center;
}

.page-blog-latest-offers-registration-guide__app-qr-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 5px solid #fff;
    border-radius: 12px;
}

.page-blog-latest-offers-registration-guide__app-qr-code p {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
}

.page-blog-latest-offers-registration-guide__app-features {
    max-width: 500px;
}

.page-blog-latest-offers-registration-guide__app-features h3 {
    font-size: 1.8rem;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-blog-latest-offers-registration-guide__app-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-latest-offers-registration-guide__app-features ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%232AD16F"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-secondary-color);
    font-size: 1.1rem;
}

.page-blog-latest-offers-registration-guide__app-features .page-blog-latest-offers-registration-guide__btn-primary,
.page-blog-latest-offers-registration-guide__app-features .page-blog-latest-offers-registration-guide__btn-secondary {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Blog Section */
.page-blog-latest-offers-registration-guide__blog-section {
    padding: 80px 0;
    background-color: var(--card-bg-color);
}

.page-blog-latest-offers-registration-guide__blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-latest-offers-registration-guide__blog-card {
    background-color: var(--deep-green-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-blog-latest-offers-registration-guide__blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-offers-registration-guide__blog-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog-latest-offers-registration-guide__blog-card-content {
    padding: 20px;
}

.page-blog-latest-offers-registration-guide__blog-card-title {
    font-size: 1.3rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
}

.page-blog-latest-offers-registration-guide__blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.page-blog-latest-offers-registration-guide__blog-card-title a:hover {
    text-decoration: underline;
    color: var(--gold-color);
}

.page-blog-latest-offers-registration-guide__blog-card-meta {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    margin-bottom: 15px;
}

.page-blog-latest-offers-registration-guide__blog-card-excerpt {
    font-size: 1rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
}

.page-blog-latest-offers-registration-guide__view-all-posts {
    text-align: center;
}

/* FAQ Section */
.page-blog-latest-offers-registration-guide__faq-section {
    padding: 80px 0;
    background-color: var(--page-bg-color);
}

.page-blog-latest-offers-registration-guide__faq-list {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-blog-latest-offers-registration-guide__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-latest-offers-registration-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main-color);
    cursor: pointer;
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
}

.page-blog-latest-offers-registration-guide__faq-item[open] .page-blog-latest-offers-registration-guide__faq-question {
    border-bottom: none;
}

.page-blog-latest-offers-registration-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-latest-offers-registration-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 20px;
    color: var(--gold-color);
}

.page-blog-latest-offers-registration-guide__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--text-secondary-color);
    background-color: var(--card-bg-color);
}

.page-blog-latest-offers-registration-guide__faq-answer p {
    margin-bottom: 10px;
}

/* Details element specific styling */
.page-blog-latest-offers-registration-guide__faq-item summary {
    list-style: none;
}

.page-blog-latest-offers-registration-guide__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-latest-offers-registration-guide__faq-cta {
    text-align: center;
}

/* Safety Section */
.page-blog-latest-offers-registration-guide__safety-section {
    padding: 80px 0;
    background-color: var(--card-bg-color);
}

.page-blog-latest-offers-registration-guide__safety-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-blog-latest-offers-registration-guide__safety-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-secondary-color);
}

.page-blog-latest-offers-registration-guide__safety-text p {
    margin-bottom: 15px;
}

.page-blog-latest-offers-registration-guide__safety-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-offers-registration-guide__safety-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Final CTA Section */
.page-blog-latest-offers-registration-guide__cta-final-section {
    padding: 80px 0;
    background-color: var(--page-bg-color);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-latest-offers-registration-guide__about-content,
    .page-blog-latest-offers-registration-guide__safety-content {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-latest-offers-registration-guide__about-image-wrapper,
    .page-blog-latest-offers-registration-guide__safety-image-wrapper {
        max-width: 80%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-blog-latest-offers-registration-guide__hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-blog-latest-offers-registration-guide__hero-description {
        font-size: 1rem;
    }

    .page-blog-latest-offers-registration-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-latest-offers-registration-guide__btn-primary,
    .page-blog-latest-offers-registration-guide__btn-secondary,
    .page-blog-latest-offers-registration-guide__btn-tertiary,
    .page-blog-latest-offers-registration-guide__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-latest-offers-registration-guide__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .page-blog-latest-offers-registration-guide__section-description {
        font-size: 0.95rem;
    }

    .page-blog-latest-offers-registration-guide__container,
    .page-blog-latest-offers-registration-guide__hero-content,
    .page-blog-latest-offers-registration-guide__video-section,
    .page-blog-latest-offers-registration-guide__video-container,
    .page-blog-latest-offers-registration-guide__video-wrapper,
    .page-blog-latest-offers-registration-guide__about-section,
    .page-blog-latest-offers-registration-guide__games-section,
    .page-blog-latest-offers-registration-guide__promotions-section,
    .page-blog-latest-offers-registration-guide__registration-guide-section,
    .page-blog-latest-offers-registration-guide__app-download-section,
    .page-blog-latest-offers-registration-guide__blog-section,
    .page-blog-latest-offers-registration-guide__faq-section,
    .page-blog-latest-offers-registration-guide__safety-section,
    .page-blog-latest-offers-registration-guide__cta-final-section {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-blog-latest-offers-registration-guide img,
    .page-blog-latest-offers-registration-guide video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-latest-offers-registration-guide__app-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-blog-latest-offers-registration-guide__app-features ul li {
        font-size: 1rem;
    }

    .page-blog-latest-offers-registration-guide__video-section {
        padding-top: 10px !important; /* body handles header offset */
    }
}

@media (max-width: 480px) {
    .page-blog-latest-offers-registration-guide__hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .page-blog-latest-offers-registration-guide__game-card-image,
    .page-blog-latest-offers-registration-guide__promotion-card-image,
    .page-blog-latest-offers-registration-guide__blog-card-image {
        height: 180px; /* Adjust height for smaller screens */
    }

    .page-blog-latest-offers-registration-guide__app-qr-image {
        width: 200px;
        height: 200px;
    }

    .page-blog-latest-offers-registration-guide__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-blog-latest-offers-registration-guide__faq-answer {
        font-size: 0.9rem;
        padding: 15px;
    }
}