


.bounties-wrapper {
    --neon: #00FF94;
    --neon-primary: #00f0ff;
    --neon-secondary: #a855f7;
    --neon-success: #10b981;
    --neon-warning: #f59e0b;
    --neon-danger: #ef4444;
    --neon-info: #58a6ff;
    --gold: #F7931A;
    
    --glass-bg: rgba(22, 27, 34, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.05);
    
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    
    padding: 0 15px;
    padding-bottom: 120px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bounties-wrapper h1, 
.bounties-wrapper h2, 
.bounties-wrapper h3,
.bounties-wrapper .stat-value,
.bounties-wrapper .roy-total {
    font-family: 'Rajdhani', sans-serif;
}


.bounties-header {
    margin-bottom: 20px;
}

.bounties-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.bounties-title .title-icon {
    width: 26px;
    height: 26px;
    stroke: var(--neon);
    filter: drop-shadow(0 0 8px var(--neon));
}

.bounties-subtitle {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0 0 16px 0;
}


.bounties-stats, .my-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon);
}

.stat-value.stat-gold { color: var(--gold); }
.stat-value.stat-success { color: var(--neon-success); }
.stat-value.stat-neon { color: var(--neon); }

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}


.stat-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin: 0 auto 4px;
}
.stat-ico svg { width: 16px; height: 16px; stroke: var(--text-secondary); }
.bounties-stats .stat-value { text-shadow: 0 0 12px currentColor; }
.stat-card.s-en .stat-ico svg { stroke: var(--gold); }
.stat-card.s-xp .stat-ico svg { stroke: var(--neon-secondary); }


.bounties-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
    padding-bottom: 4px;
}

.bounties-tabs::-webkit-scrollbar { height: 3px; }
.bounties-tabs::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 3px; }

.tab-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.tab-btn:hover {
    border-color: var(--neon);
    color: var(--text-primary);
}

.tab-btn.active {
    background: rgba(0, 255, 148, 0.1);
    border-color: var(--neon);
    color: var(--neon);
}

.tab-btn.active svg {
    filter: drop-shadow(0 0 4px var(--neon));
}


.bounties-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}


.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 2px;
}



.filter-buttons {
    display: flex;
    gap: 8px; 
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 148, 0.5) transparent;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
    mask-image: linear-gradient(90deg, #000 92%, transparent);
}
.filter-buttons::-webkit-scrollbar { height: 3px; }
.filter-buttons::-webkit-scrollbar-thumb { background: rgba(0, 255, 148, 0.5); border-radius: 3px; }
.filter-buttons .filter-btn { flex-shrink: 0; white-space: nowrap; }


.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px; 
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.filter-btn svg.star-icon {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

.filter-btn:hover {
    border-color: var(--neon);
    color: var(--text-primary);
}

.filter-btn.active {
    background: rgba(0, 255, 148, 0.1);
    border-color: var(--neon);
    color: var(--neon);
}

.filter-btn.active svg {
    filter: drop-shadow(0 0 3px var(--neon));
}


.filter-btn.toggle {
    margin-top: 4px;
}

.filter-btn.toggle .check-icon {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.filter-btn.toggle.active .check-icon {
    opacity: 1;
}


.checkbox-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-filter:hover { border-color: var(--neon); }
.checkbox-filter input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--neon); }


.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

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


.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 12px;
}

.section-header svg {
    width: 16px;
    height: 16px;
    stroke: var(--neon);
}


.bounties-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bounty-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bounty-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.bounty-card.featured {
    border-color: rgba(0, 255, 148, 0.3);
}

.bounty-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.bounty-card-type {
    display: flex;
    align-items: center;
    gap: 10px;
}


.bounty-card-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bounty-card-icon svg {
    width: 22px;
    height: 22px;
}

.bounty-card-icon.scout { color: var(--neon-info); }
.bounty-card-icon.designer { color: #f778ba; }
.bounty-card-icon.hunter { color: var(--neon); }
.bounty-card-icon.custom { color: var(--neon-secondary); }


.difficulty-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.difficulty-stars .star-svg,
.star-svg {
    width: 10px;
    height: 10px;
    fill: var(--neon-warning);
}


.bounty-card .royalty-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid rgba(0, 255, 148, 0.3);
    color: var(--neon);
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 6px;
    margin-top: 8px;
}

.bounty-card .royalty-tag svg {
    width: 10px;
    height: 10px;
}

.bounty-type-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.bounty-type-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.bounty-card-reward {
    text-align: right;
}

.bounty-card-reward .reward-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.bounty-card-reward .reward-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.bounty-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.bounty-card-description {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bounty-card-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

.bounty-card-meta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    margin-right: 4px;
}

.bounty-card-progress {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon), var(--neon-info));
    box-shadow: 0 0 8px var(--neon);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 10px;
    color: var(--text-muted);
}


.bounty-card .royalty-tag {
    display: inline-block;
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid rgba(0, 255, 148, 0.3);
    color: var(--neon);
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 6px;
    margin-top: 8px;
}


.bounty-card-rewards {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.bounty-card-rewards .reward-energy,
.bounty-card-rewards .reward-xp {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.bounty-card-rewards .reward-energy {
    background: rgba(247, 147, 26, 0.15);
    color: var(--gold);
}

.bounty-card-rewards .reward-xp {
    background: rgba(168, 85, 247, 0.15);
    color: var(--neon-secondary);
}

.bounty-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.bounty-slots {
    font-size: 11px;
    color: var(--text-muted);
}

.bounty-slots.low { color: var(--neon-warning); }
.bounty-slots.full { color: var(--neon-danger); }


.bounty-card { border-color: rgba(0, 255, 148, 0.18); }
.bounty-card:hover,
.bounty-card:active {
    border-color: var(--neon);
    box-shadow: 0 0 22px rgba(0, 255, 148, 0.12);
    transform: translateY(-1px);
}
.bc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.bc-meta { flex: 1; min-width: 0; }
.bc-type {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--neon-info);
    text-transform: uppercase;
}
.bc-diff {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--neon-warning);
    flex-shrink: 0;
}
.bounty-card-rewards { flex-wrap: wrap; }
.bounty-card-rewards .reward-roy {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(0, 255, 148, 0.1);
    color: var(--neon);
}
.bc-participate {
    color: var(--neon);
    font-size: 11px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    flex-shrink: 0;
}

.btn-participate {
    padding: 8px 16px;
    background: var(--neon);
    border: none;
    border-radius: 8px;
    color: #05070a;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-participate:hover {
    box-shadow: 0 0 15px rgba(0, 255, 148, 0.4);
}

.btn-participate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.submissions-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 14px; 
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover { border-color: var(--neon); }
.filter-btn.active {
    background: rgba(0, 255, 148, 0.1);
    border-color: var(--neon);
    color: var(--neon);
}


.submissions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.submission-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submission-card-info {
    display: flex;
    align-items: center;
    gap: 10px;
}


.submission-card-icon {
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.submission-card-icon svg {
    width: 18px;
    height: 18px;
}


.submission-card-feedback svg {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-right: 4px;
}


.submission-card-actions button svg {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-right: 4px;
}

.submission-bounty-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
}

.submission-card-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.submission-status-badge {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.submission-status-badge.pending { background: rgba(210, 153, 34, 0.15); color: #d29922; }
.submission-status-badge.approved { background: rgba(0, 255, 148, 0.1); color: var(--neon); }
.submission-status-badge.rejected { background: rgba(239, 68, 68, 0.15); color: var(--neon-danger); }
.submission-status-badge.revision { background: rgba(88, 166, 255, 0.15); color: var(--neon-info); }
.submission-status-badge.reviewing { background: rgba(168, 85, 247, 0.15); color: var(--neon-secondary); }

.submission-card-feedback {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
    font-size: 12px;
    color: var(--text-secondary);
    display: none;
}

.submission-card-feedback.visible { display: block; }

.submission-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.submission-card-actions button {
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submission-card-actions button:hover {
    border-color: var(--neon);
    color: var(--neon);
}


.royalties-box {
    background: linear-gradient(135deg, rgba(0, 255, 148, 0.1), rgba(88, 166, 255, 0.1));
    border: 1px solid rgba(0, 255, 148, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.roy-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.roy-total {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(247, 147, 26, 0.4);
}

.roy-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.roy-stat { text-align: center; }

.roy-stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.roy-stat-value.stat-neon { color: var(--neon); }

.roy-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}


.royalties-missions, .royalties-history {
    margin-bottom: 20px;
}

.missions-list, .payments-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mission-item, .payment-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-item h4, .payment-item .payment-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}


.mission-item h4 svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.mission-item p, .payment-item .payment-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.mission-earn, .payment-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.mission-sub {
    font-size: 10px;
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 13px;
}


.empty-rich {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 22px;
    gap: 10px;
}
.empty-rich .er-ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 148, 0.06);
    border: 1px solid rgba(0, 255, 148, 0.18);
}
.empty-rich .er-ico svg { width: 28px; height: 28px; stroke: var(--neon); opacity: 0.9; }
.empty-rich .er-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}
.empty-rich .er-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 240px;
}
.empty-rich .er-cta {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid var(--neon);
    color: var(--neon);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.empty-rich .er-cta svg { width: 14px; height: 14px; stroke: currentColor; }




.bounty-info { margin-bottom: 20px; }

.bounty-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.bounty-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.meta-label { display: block; font-size: 10px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.meta-value { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-primary); }
.meta-value.reward { color: var(--gold); }
.meta-value.xp { color: var(--neon-secondary); }


.meta-value .difficulty-stars {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 4px;
}

.meta-value .difficulty-stars .star-svg {
    width: 12px;
    height: 12px;
}

.bounty-slots { margin-bottom: 15px; }

.slots-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.slots-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon), var(--neon-info));
    box-shadow: 0 0 8px var(--neon);
}

.slots-text { font-size: 11px; color: var(--text-muted); }
.bounty-royalties { margin-top: 15px; }


.royalties-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(0, 255, 148, 0.1), rgba(0, 255, 148, 0.05));
    border: 1px solid rgba(0, 255, 148, 0.3);
    border-radius: 10px;
    font-size: 13px;
    color: var(--neon);
    text-align: center;
}

.royalties-badge .royalty-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


.submission-form h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px 0;
}

.submission-form h3 .section-icon {
    width: 18px;
    height: 18px;
    stroke: var(--neon);
}


.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group label .req {
    color: #f85149;
    font-size: 14px;
    line-height: 1;
}


.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(30, 35, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--neon);
    background: rgba(30, 35, 45, 1);
    box-shadow: 0 0 0 2px rgba(0, 255, 148, 0.15);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(139, 148, 158, 0.8);
    font-style: italic;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group .field-hint { 
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}


.submission-status { padding: 20px; background: rgba(0, 0, 0, 0.2); border-radius: 12px; }
.status-card { display: flex; align-items: center; gap: 15px; }
.status-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    flex-shrink: 0;
}
.status-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-secondary);
}

.status-icon.pending svg { stroke: var(--neon-warning); }
.status-icon.reviewing svg { stroke: var(--neon-secondary); }
.status-icon.approved svg { stroke: var(--neon-success); }
.status-icon.rejected svg { stroke: var(--neon-danger); }
.status-icon.revision svg { stroke: var(--neon-info); }

.status-info { flex: 1; }
.status-title { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-primary); }
.status-text { font-size: 13px; color: var(--text-muted); }

.submission-feedback { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--glass-border); }
.submission-feedback h4 { font-size: 12px; color: var(--text-secondary); margin: 0 0 8px 0; }
.submission-feedback p { font-size: 13px; color: var(--text-primary); margin: 0; line-height: 1.5; }


.revision-feedback {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}


.revision-feedback h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--neon-info);
    margin: 0 0 8px 0;
}
.revision-feedback h4 .feedback-icon {
    width: 14px;
    height: 14px;
}
.revision-feedback p { font-size: 13px; color: var(--text-primary); margin: 0; line-height: 1.5; }


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}


.btn-cancel {
    background: rgba(45, 55, 72, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e6edf3;
}

.btn-cancel:hover {
    background: rgba(55, 65, 82, 1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon), #00cc77);
    color: #05070a;
    font-weight: 700;
    text-shadow: none;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 255, 148, 0.5);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    background: linear-gradient(135deg, #4a5568, #3d4452);
    color: #9ca3af;
    transform: none;
    pointer-events: none;
}


.btn-icon {
    width: 16px;
    height: 16px;
}
.btn svg.btn-icon {
    stroke: currentColor;
}


.bounty-detail-view {
    padding: 0 0 80px 0;
    animation: fadeIn 0.3s ease;
}

.detail-header {
    margin-bottom: 16px;
}

.detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.detail-back-btn:hover {
    border-color: var(--neon);
    color: var(--neon);
}

.detail-back-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.detail-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-title-row h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.detail-title-row .bounty-type-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-title-row .bounty-type-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--neon);
}

.detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.detail-actions .btn {
    flex: 1;
}


@media (max-width: 768px) {
    .bounty-detail-view {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0d1117;
        z-index: 101;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0;
        animation: fadeIn 0.2s ease;
    }

    .bounty-detail-view .detail-header {
        flex-shrink: 0;
        padding: 12px 15px;
        padding-top: calc(12px + env(safe-area-inset-top, 0));
    }

    .bounty-detail-view .detail-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0 15px 140px;
    }
}


.bounties-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2000;
}

.bounties-toast.visible { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }
.bounties-toast.success { border-color: var(--neon); }
.bounties-toast.error { border-color: var(--neon-danger); }
.bounties-toast.warning { border-color: var(--neon-warning); }


.bounties-toast .toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bounties-toast .toast-icon svg {
    width: 18px;
    height: 18px;
}

.bounties-toast.success .toast-icon svg { stroke: var(--neon); }
.bounties-toast.error .toast-icon svg { stroke: var(--neon-danger); }
.bounties-toast.warning .toast-icon svg { stroke: var(--neon-warning); }
.bounties-toast.info .toast-icon svg { stroke: var(--neon-info); }


.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--neon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin { to { transform: rotate(360deg); } }
.loading-spinner p { font-size: 14px; margin: 0; }



@media (max-width: 600px) {
    .bounties-wrapper { padding: 0 10px; padding-bottom: 120px; }
    .bounties-stats, .my-stats { flex-wrap: wrap; }
    .stat-card { min-width: calc(33% - 7px); }
    .bounties-tabs { justify-content: flex-start; }
    .tab-btn { padding: 8px 12px; font-size: 11px; }
    .bounties-filters { flex-direction: column; }
    .bounties-filters select { width: 100%; }
    .bounty-meta { grid-template-columns: 1fr 1fr; }
    .roy-stats { gap: 16px; }

}
