/* ============================================
   EARNING METHODS (From Reward Landing)
   ============================================ */
.earning-method-card {
    background: linear-gradient(135deg, #1e2329 0%, #181a20 100%);
    border: 1px solid var(--earn-border);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.earning-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(56, 167, 187, 0.05), transparent 50%);
    pointer-events: none;
}

.earning-method-card:hover {
    border-color: var(--earn-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 167, 187, 0.1);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.method-icon-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--earn-primary), #2c8494);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.method-icon-badge i {
    font-size: 1.5rem;
    color: white;
}

.method-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--earn-text);
}

.method-description {
    color: var(--earn-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-showcase {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: auto;
}

/* Game Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.showcase-item {
    background: var(--earn-bg);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--earn-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item:hover {
    border-color: var(--earn-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.showcase-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-info {
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--earn-text);
}

.showcase-reward {
    color: var(--earn-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Survey List */
.survey-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.survey-item {
    background: var(--earn-bg);
    border: 1px solid var(--earn-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.survey-item:hover {
    border-color: var(--earn-primary);
    transform: translateX(5px);
    background: rgba(56, 167, 187, 0.05);
}

.survey-provider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--earn-text);
}

.survey-provider i {
    color: var(--earn-primary);
}

.survey-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.survey-details span:first-child {
    color: var(--earn-success);
    font-weight: 700;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-item {
    background: var(--earn-bg);
    border: 1px solid var(--earn-border);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    border-color: var(--earn-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-logo {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--earn-text);
}

.product-type {
    font-size: 0.75rem;
    color: var(--earn-text-muted);
}

.product-reward {
    color: var(--earn-success);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Video Providers */
.video-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.provider-card {
    background: var(--earn-bg);
    border: 1px solid var(--earn-border);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.provider-card:hover {
    border-color: var(--earn-primary);
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.provider-card-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 167, 187, 0.05);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.provider-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.provider-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    color: var(--earn-text);
}

.provider-card:hover .provider-card-title {
    color: var(--earn-primary);
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps-wrapper {
    position: relative;
    padding: 2rem 0;
}

.steps-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--earn-border);
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--earn-card-bg);
    border: 2px solid var(--earn-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--earn-primary);
    box-shadow: 0 0 0 10px var(--earn-bg);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--earn-text);
}

/* ============================================
   TOP EARNERS (Recent Orders)
   ============================================ */
.table-responsive {
    max-height: 400px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.earners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.earners-table th {
    padding: 1rem;
    text-align: left;
    color: var(--earn-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.earners-table td {
    background: var(--earn-card-bg);
    padding: 1rem;
    border-top: 1px solid var(--earn-border);
    border-bottom: 1px solid var(--earn-border);
    color: var(--earn-text);
}

.earners-table td:first-child {
    border-left: 1px solid var(--earn-border);
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.earners-table td:last-child {
    border-right: 1px solid var(--earn-border);
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: linear-gradient(135deg, #1e2329 0%, #181a20 100%);
    border: 1px solid var(--earn-border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--earn-primary);
    box-shadow: 0 4px 12px rgba(56, 167, 187, 0.1);
}

.faq-trigger {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--earn-text);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-trigger i {
    color: var(--earn-primary);
    transition: transform 0.3s ease;
}

.faq-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--earn-text-muted);
    line-height: 1.6;
    display: none;
}

/* Bootstrap 5 Compatibility */
.accordion-collapse .faq-answer {
    display: block !important;
}

.faq-trigger[aria-expanded="true"]+.faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */
.landing-section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--earn-text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--earn-text-muted);
    max-width: 600px;
    margin: 0 auto;
}