/* ================================================
   RULES SECTION 
   ================================================ */
.rules-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 30px auto 40px;
    max-width: 500px;
    border: 1px solid rgba(189,77,214,0.3);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(189,77,214,0.05);
}
.rules-tab {
    flex: 1;
    padding: 14px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}
.rules-tab:hover { color: #bd4dd6; }
.rules-tab.active {
    background: #bd4dd6;
    color: #fff;
    border-radius: 50px;
}
.rules-content { display: none; animation: rulesFadeIn 0.4s ease; }
.rules-content.active { display: block; }
@keyframes rulesFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.rule-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(189,77,214,0.15);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}
.rule-card:hover {
    border-color: rgba(189,77,214,0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(189,77,214,0.1);
}
.rule-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #bd4dd6, #8b32a3);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px; color: #fff;
    margin-bottom: 16px;
}
.rule-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.rule-divider { width: 40px; height: 3px; background: #bd4dd6; border-radius: 2px; margin-bottom: 12px; }
.rule-card p { color: #999; font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.rule-detail {
    background: rgba(189,77,214,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 8px;
}
.rule-detail-label { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.rule-detail-value { font-size: 14px; font-weight: 700; color: #bd4dd6; }

/* Rule Explainer */
.rule-explainer {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(189,77,214,0.15);
    border-radius: 16px;
    padding: 32px;
    margin-top: 30px;
}
.rule-explainer h3 { color: #fff; margin: 0 0 12px; font-size: 20px; }
.rule-explainer > p { color: #999; font-size: 14px; margin: 0 0 20px; }
.rule-example {
    background: rgba(189,77,214,0.06);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.rule-example h4 { color: #bd4dd6; margin: 0 0 10px; font-size: 15px; }
.rule-example ul { list-style: none; padding: 0; margin: 0; }
.rule-example li { color: #ccc; font-size: 14px; padding: 4px 0; }
.rule-example li::before { content: "→ "; color: #bd4dd6; }
.rule-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.rule-reasons > div {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}
.rule-reasons strong { color: #fff; display: block; margin-bottom: 4px; }
.rule-reason-icon { font-size: 20px; display: block; margin-bottom: 8px; }

/* Strategies */
.rules-subtitle { color: #fff; font-size: 22px; margin: 0 0 4px; text-align: center; }
.rules-subtitle-desc { color: #888; font-size: 14px; text-align: center; margin-bottom: 24px; }
.rules-subtitle-prohibited { color: #ff6b6b; margin-top: 40px; }
.strategy-icon { font-size: 32px; margin-bottom: 12px; }
.strategy-allowed { border-color: rgba(76,175,80,0.2); }
.strategy-allowed:hover { border-color: rgba(76,175,80,0.5); }
.strategy-prohibited { border-color: rgba(255,107,107,0.15); }
.strategy-prohibited:hover { border-color: rgba(255,107,107,0.4); }

/* Conditions */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.condition-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(189,77,214,0.15);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}
.condition-label {
    display: block;
    font-size: 12px; font-weight: 700; color: #888;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}
.condition-value {
    display: block;
    font-size: 18px; font-weight: 700; color: #fff;
}

/* Payout Process */
.payout-process {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(189,77,214,0.15);
    border-radius: 16px;
    padding: 32px;
}
.payout-process h3 { color: #fff; text-align: center; margin: 0 0 24px; }
.payout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.payout-step {
    background: rgba(189,77,214,0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 140px;
    flex: 1;
}
.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #bd4dd6;
    color: #fff;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}
.payout-step h4 { color: #fff; font-size: 14px; margin: 0 0 4px; }
.payout-step p { color: #999; font-size: 13px; margin: 0; }
.payout-step-arrow { color: #bd4dd6; font-size: 24px; font-weight: 700; }

/* ================================================
   PRICING SECTION (Accounts Page Style)
   ================================================ */
.pricing-type-toggle {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
}
.pricing-type {
    background: #bd4dd6;
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.pricing-tier-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(189,77,214,0.2);
    border-radius: 16px;
    padding: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}
.tier-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
}
.tier-option:hover { background: rgba(189,77,214,0.1); }
.tier-option.active { background: rgba(189,77,214,0.15); border: 1px solid rgba(189,77,214,0.4); }
.tier-option input { display: none; }
.tier-radio {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: all 0.3s ease;
    position: relative;
}
.tier-option.active .tier-radio {
    border-color: #bd4dd6;
    background: radial-gradient(circle, #bd4dd6 40%, transparent 41%);
}
.tier-label { font-weight: 700; color: #fff; font-size: 15px; }

/* Pricing Detail Card */
.pricing-detail-card {
    display: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(189,77,214,0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    animation: pricingFadeIn 0.35s ease;
}
.pricing-detail-card.active { display: flex; gap: 40px; flex-wrap: wrap; }
@keyframes pricingFadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

.pricing-detail-left { flex: 1; min-width: 280px; }
.pricing-detail-left h3 { color: #fff; font-size: 28px; font-weight: 800; margin: 0 0 12px; }
.pricing-badge {
    display: inline-block;
    background: rgba(189,77,214,0.15);
    border: 1px solid rgba(189,77,214,0.3);
    color: #e3aef2;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.pricing-fee-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}
.pricing-fee-label { display: block; font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-fee-amount { font-size: 36px; font-weight: 800; color: #fff; display: block; }
.pricing-fee-original { font-size: 18px; color: #666; text-decoration: line-through; margin-left: 8px; }
.pricing-fee-save { display: block; color: #bd4dd6; font-size: 13px; font-weight: 600; margin-top: 6px; }
.pricing-fee-note { display: block; color: #4caf50; font-size: 13px; font-weight: 600; margin-top: 6px; }

.pricing-detail-right { flex: 1.2; min-width: 300px; }
.pricing-detail-right h4 {
    color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 6px;
    border-bottom: 3px solid #bd4dd6;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 20px;
}
.pricing-features { display: flex; flex-direction: column; gap: 8px; }
.pricing-feature {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pf-label { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.pf-value { font-size: 16px; font-weight: 700; color: #fff; }
.pf-accent { color: #bd4dd6 !important; }
.pf-highlight { color: #e6a817 !important; font-size: 14px; }

/* ================================================
   VIDEO REVIEWS SECTION
   ================================================ */
.video-reviews-carousel {
    position: relative;
    margin: 30px 0 40px;
}
.video-reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: none;
}
.video-reviews-track::-webkit-scrollbar { display: none; }

.video-review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}
.video-review-card:hover { transform: translateY(-5px); }

.video-review-wrapper {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    position: relative;
    border: 1px solid rgba(189,77,214,0.2);
}
.video-review-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-review-thumb {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.video-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-review-play {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: rgba(189,77,214,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(189,77,214,0.4);
}
.video-review-thumb:hover .video-review-play {
    background: #bd4dd6;
    transform: translateX(-50%) scale(1.1);
}

.video-review-info { padding: 14px 4px; }
.video-review-info h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.video-review-info p { color: #888; font-size: 13px; margin: 0; }

.video-reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}
.video-nav-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(189,77,214,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #bd4dd6;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.video-nav-arrow:hover {
    background: #bd4dd6;
    color: #fff;
    border-color: #bd4dd6;
}

/* Written Testimonials */
.written-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(189,77,214,0.12);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: rgba(189,77,214,0.4);
    transform: translateY(-3px);
}
.testimonial-stars {
    color: #e6a817;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 14px;
}
.testimonial-author {
    color: #bd4dd6;
    font-weight: 700;
    font-size: 14px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .pricing-detail-card.active { flex-direction: column; padding: 24px; }
    .pricing-tier-selector { gap: 4px; padding: 10px; }
    .tier-option { padding: 10px 12px; min-width: 60px; }
    .tier-label { font-size: 13px; }
    .rules-grid { grid-template-columns: 1fr; }
    .payout-steps { flex-direction: column; }
    .payout-step-arrow { transform: rotate(90deg); }
    .video-review-card { flex: 0 0 240px; }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .rule-reasons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .conditions-grid { grid-template-columns: 1fr; }
    .rule-reasons { grid-template-columns: 1fr; }
    .rules-tabs { flex-direction: column; border-radius: 14px; }
    .rules-tab.active { border-radius: 14px; }
}
