/* style/blog-pun88-exclusive-benefits.css */

/* General styles for the page */
.page-blog-pun88-exclusive-benefits {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Light text on dark background */
    background-color: var(--background); /* Dark background */
}

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

/* Section styling */
.page-blog-pun88-exclusive-benefits__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-pun88-exclusive-benefits__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--accent-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-pun88-exclusive-benefits__text-block {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-blog-pun88-exclusive-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-pun88-exclusive-benefits__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small padding for visual separation */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-blog-pun88-exclusive-benefits__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
}

.page-blog-pun88-exclusive-benefits__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-pun88-exclusive-benefits__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: 20px; /* Separates content from image */
    background-color: var(--card-bg); /* Dark background for content block */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-pun88-exclusive-benefits__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color); /* Gold color for main title */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.1;
}

.page-blog-pun88-exclusive-benefits__hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-pun88-exclusive-benefits__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-pun88-exclusive-benefits__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-pun88-exclusive-benefits__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

/* Introduction Section */
.page-blog-pun88-exclusive-benefits__introduction-section,
.page-blog-pun88-exclusive-benefits__benefits-overview-section,
.page-blog-pun88-exclusive-benefits__types-section,
.page-blog-pun88-exclusive-benefits__how-to-claim-section,
.page-blog-pun88-exclusive-benefits__tips-section,
.page-blog-pun88-exclusive-benefits__faq-section,
.page-blog-pun88-exclusive-benefits__cta-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-blog-pun88-exclusive-benefits__introduction-section p a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-pun88-exclusive-benefits__introduction-section p a:hover {
    text-decoration: underline;
}

/* Benefits Overview Section */
.page-blog-pun88-exclusive-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-pun88-exclusive-benefits__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-blog-pun88-exclusive-benefits__card:hover {
    transform: translateY(-5px);
}

.page-blog-pun88-exclusive-benefits__card-title {
    font-size: 1.4rem;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-pun88-exclusive-benefits__card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Types Section */
.page-blog-pun88-exclusive-benefits__image-wrapper {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-blog-pun88-exclusive-benefits__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* How to Claim Section */
.page-blog-pun88-exclusive-benefits__ordered-list,
.page-blog-pun88-exclusive-benefits__unordered-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-pun88-exclusive-benefits__ordered-list li,
.page-blog-pun88-exclusive-benefits__unordered-list li {
    background-color: var(--card-bg);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-pun88-exclusive-benefits__ordered-list li:last-child,
.page-blog-pun88-exclusive-benefits__unordered-list li:last-child {
    margin-bottom: 0;
}

.page-blog-pun88-exclusive-benefits__list-item-title {
    font-size: 1.25rem;
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-pun88-exclusive-benefits__list-item-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.page-blog-pun88-exclusive-benefits__ordered-list li a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-pun88-exclusive-benefits__ordered-list li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-blog-pun88-exclusive-benefits__faq-list {
    margin-top: 40px;
}

.page-blog-pun88-exclusive-benefits__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-pun88-exclusive-benefits__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

.page-blog-pun88-exclusive-benefits__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-pun88-exclusive-benefits__faq-item summary:hover {
    background-color: var(--deep-green);
}

.page-blog-pun88-exclusive-benefits__faq-qtext {
    flex-grow: 1;
}

.page-blog-pun88-exclusive-benefits__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--accent-color);
}

.page-blog-pun88-exclusive-benefits__faq-item[open] .page-blog-pun88-exclusive-benefits__faq-toggle {
    content: '−';
}

.page-blog-pun88-exclusive-benefits__faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* CTA Section */
.page-blog-pun88-exclusive-benefits__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-pun88-exclusive-benefits__hero-content {
        padding: 30px 15px;
    }

    .page-blog-pun88-exclusive-benefits__hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .page-blog-pun88-exclusive-benefits__hero-description {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
}

@media (max-width: 768px) {
    .page-blog-pun88-exclusive-benefits__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-pun88-exclusive-benefits__hero-content {
        margin-top: 15px;
    }

    .page-blog-pun88-exclusive-benefits__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-blog-pun88-exclusive-benefits__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .page-blog-pun88-exclusive-benefits__text-block,
    .page-blog-pun88-exclusive-benefits__card-description,
    .page-blog-pun88-exclusive-benefits__list-item-description,
    .page-blog-pun88-exclusive-benefits__faq-answer {
        font-size: 0.9rem;
    }

    .page-blog-pun88-exclusive-benefits__grid {
        grid-template-columns: 1fr;
    }

    .page-blog-pun88-exclusive-benefits__card {
        padding: 25px;
    }

    .page-blog-pun88-exclusive-benefits__card-title {
        font-size: 1.2rem;
    }

    .page-blog-pun88-exclusive-benefits__ordered-list li,
    .page-blog-pun88-exclusive-benefits__unordered-list li {
        padding: 20px;
    }

    .page-blog-pun88-exclusive-benefits__list-item-title {
        font-size: 1.15rem;
    }

    .page-blog-pun88-exclusive-benefits__faq-item summary {
        padding: 18px 20px;
        font-size: 1rem;
    }

    /* Images responsiveness */
    .page-blog-pun88-exclusive-benefits img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Containers for images and other content */
    .page-blog-pun88-exclusive-benefits__container,
    .page-blog-pun88-exclusive-benefits__hero-image-wrapper,
    .page-blog-pun88-exclusive-benefits__image-wrapper,
    .page-blog-pun88-exclusive-benefits__grid,
    .page-blog-pun88-exclusive-benefits__card,
    .page-blog-pun88-exclusive-benefits__ordered-list,
    .page-blog-pun88-exclusive-benefits__unordered-list,
    .page-blog-pun88-exclusive-benefits__faq-list,
    .page-blog-pun88-exclusive-benefits__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Specific adjustment for hero content padding on mobile */
    .page-blog-pun88-exclusive-benefits__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsiveness */
    .page-blog-pun88-exclusive-benefits__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px; /* Ensure text doesn't touch edges */
        padding-right: 15px;
    }

    .page-blog-pun88-exclusive-benefits__cta-button--large {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .page-blog-pun88-exclusive-benefits__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-blog-pun88-exclusive-benefits__hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    }
    .page-blog-pun88-exclusive-benefits__cta-button {
        font-size: 1rem;
        padding: 12px 20px;
    }
    .page-blog-pun88-exclusive-benefits__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}