/* Content & SEO Sections */
.content-section {
    padding: 4rem 0;
    background: #f8fafc;
    color: var(--lottoland-navy);
}

.content-section.white-bg {
    background: #ffffff;
}

.content-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-text p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.3rem;
    /* Larger */
    color: #000000;
    /* Pure Black - Target P directly to override global styles */
    line-height: 1.6;
    text-align: center;
    font-weight: 600;
    /* Medium-Bold */
}

/* How to Play - Steps */
.how-to-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #f1f5f9;
    /* Distinct light grey background */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: none;
    /* remove shadow for flat look */
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
    position: relative;
    overflow: visible;
    /* Allow number to pop out if needed */
}

.step-card p {
    color: #000000;
    /* Pure Black */
    font-size: 1.05rem;
    line-height: 1.6;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--lottoland-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    opacity: 1;
    /* Fully visible */
    box-shadow: 0 4px 10px rgba(105, 165, 7, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

/* Modern FAQ Design */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .content-title {
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* Minimalist Accordion FAQ */
.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #eef2f6;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #eef2f6;
}

.faq-trigger {
    width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 2rem;
    transition: background 0.2s ease;
}

.faq-trigger:hover {
    background: #fcfdfe;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    opacity: 0.7;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lottoland-navy);
}

.faq-plus {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
    content: '';
    position: absolute;
    background: #94a3b8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.faq-plus::before {
    width: 14px;
    height: 2px;
}

.faq-plus::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-plus::before {
    background: var(--primary-blue);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-item.active .faq-content {
    max-height: 500px;
    /* Large enough for content */
}

.faq-answer-inner {
    padding: 0 1.5rem 2rem 4.5rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-answer-inner {
        padding-left: 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }
}

.faq-section {
    padding: 4rem 1.5rem;
}

/* Insight & SEO Sections */
.insight-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.insight-item h3 {
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.insight-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}


/* Comparison Table */
.comparison-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.comparison-table th {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    background: #ffffff;
    font-size: 1rem;
    color: #475569;
}

.comparison-table tr td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--lottoland-navy);
    background: #f8fafc;
    width: 30%;
}

.comparison-table tr:hover td {
    background: #f1f7ff;
}

/* Responsive Insights */
@media (max-width: 768px) {
    .insight-grid {
        gap: 2rem;
    }
}

/* Odds and Tiers Table */
.odds-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.odds-container {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.odds-table th {
    background: var(--lottoland-navy);
    color: #ffffff;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.odds-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.odds-table tr:last-child td {
    border-bottom: none;
}

.odds-table tr:hover {
    background: #f1f5f9;
}

.tier-badge {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.85rem;
}

/* Mini Blue Table for FAQ (Comparison Style) */






/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tip-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.tip-card h3 {
    margin-bottom: 1rem;
    color: var(--lottoland-navy);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tip-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Jackpot Rules Note */
.rules-note {
    background: #f8fafc;
    color: #475569;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    position: relative;
    border: 1px solid #e2e8f0;
    border-left: 3px solid var(--primary-blue);
}

.rules-note::after {
    content: 'i';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    font-family: var(--font-heading);
    color: var(--primary-blue);
}

.rules-note h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--lottoland-navy);
    font-weight: 700;
}

.rules-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 800px;
    opacity: 1;
    color: #334155;
}