/* style/blog-jackpot-winning-tips.css */

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

.page-blog-jackpot-winning-tips {
    background-color: var(--background-color-page); /* Use custom background color */
    color: var(--text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-blog-jackpot-winning-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top margin, body handles header offset */
    padding-bottom: 40px;
    overflow: hidden; /* Ensure content does not overflow */
}

.page-blog-jackpot-winning-tips__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
}

.page-blog-jackpot-winning-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-jackpot-winning-tips__hero-content {
    max-width: 1200px;
    width: 100%; /* Important for flex child */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px; /* Space between image and content */
}

.page-blog-jackpot-winning-tips__main-title {
    color: var(--text-main);
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-jackpot-winning-tips__subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Buttons */
.page-blog-jackpot-winning-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-jackpot-winning-tips__btn-primary,
.page-blog-jackpot-winning-tips__btn-secondary {
    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-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Ensure padding/border included in width */
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-blog-jackpot-winning-tips__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main); /* White text on dark green gradient */
    border: 2px solid transparent;
}

.page-blog-jackpot-winning-tips__btn-primary:hover {
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Enhanced glow on hover */
    transform: translateY(-2px);
}

.page-blog-jackpot-winning-tips__btn-secondary {
    background: transparent;
    color: var(--primary-color); /* Primary color text on transparent background */
    border: 2px solid var(--border-color); /* Border using deep green */
}

.page-blog-jackpot-winning-tips__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* General Section Styling */
.page-blog-jackpot-winning-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-jackpot-winning-tips__section-title {
    color: var(--gold-color); /* Gold for section titles */
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4); /* Subtle gold glow */
}

.page-blog-jackpot-winning-tips__sub-section-title {
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-blog-jackpot-winning-tips__text-block {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-blog-jackpot-winning-tips__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Card Grid */
.page-blog-jackpot-winning-tips__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-jackpot-winning-tips__card {
    background-color: var(--card-bg); /* Card BG color */
    border: 1px solid var(--border-color); /* Border color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main); /* Main text color for card content */
}

.page-blog-jackpot-winning-tips__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(87, 227, 141, 0.3); /* Glow on hover */
}

.page-blog-jackpot-winning-tips__card-title {
    color: var(--gold-color); /* Gold for card titles */
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-jackpot-winning-tips__card-text {
    color: var(--text-secondary); /* Secondary text color for card text */
    font-size: 1rem;
    line-height: 1.7;
}

/* Lists */
.page-blog-jackpot-winning-tips__list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-jackpot-winning-tips__list-item {
    background-color: var(--deep-green-color); /* Deep green for list item background */
    color: var(--text-main); /* Main text color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.5;
}

.page-blog-jackpot-winning-tips__list-item strong {
    color: var(--gold-color); /* Gold for strong text in list items */
}

/* Video Section */
.page-blog-jackpot-winning-tips__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Max width for video container */
    margin: 40px auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    box-sizing: border-box; /* Ensure padding/border included in width */
}

.page-blog-jackpot-winning-tips__video-link {
    display: block; /* Make the whole area clickable */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensure link is above video */
    cursor: pointer;
}

.page-blog-jackpot-winning-tips__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Ensure no extra space */
}

.page-blog-jackpot-winning-tips__video-caption {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    font-size: 0.95rem;
}

/* FAQ Section */
.page-blog-jackpot-winning-tips__faq-list {
    margin-top: 30px;
}

.page-blog-jackpot-winning-tips__faq-item {
    background-color: var(--card-bg); /* Card BG for FAQ item */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.page-blog-jackpot-winning-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-color); /* Gold for FAQ questions */
    cursor: pointer;
    background-color: var(--deep-green-color); /* Deep green for question background */
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
}

.page-blog-jackpot-winning-tips__faq-question:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
}

.page-blog-jackpot-winning-tips__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--text-main);
}

.page-blog-jackpot-winning-tips__faq-item[open] .page-blog-jackpot-winning-tips__faq-question {
    background-color: var(--primary-color);
    color: var(--text-main);
}

.page-blog-jackpot-winning-tips__faq-answer {
    padding: 20px;
    font-size: 1.05rem;
    color: var(--text-secondary); /* Secondary text for answers */
    line-height: 1.7;
}

.page-blog-jackpot-winning-tips__faq-answer p:last-child {
    margin-bottom: 0;
}

/* Remove default details marker */
.page-blog-jackpot-winning-tips__faq-item > summary {
    list-style: none;
}
.page-blog-jackpot-winning-tips__faq-item > summary::-webkit-details-marker {
    display: none;
}

/* Conclusion Section */
.page-blog-jackpot-winning-tips__conclusion-section {
    padding-bottom: 80px;
    text-align: center;
}