/* ============================================
   COPY TRADING LEADERS - COMPLETE CSS
   ============================================ */

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.header-left {
    flex: 1;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-right {
    display: flex;
    gap: 0.75rem;
}

.btn-compare,
.btn-filter {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-compare:hover,
.btn-filter:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.content-area {
    min-width: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Section Container */
.section-container {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.view-all-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #60a5fa;
    gap: 0.5rem;
}

/* Leaders Grid - SMALLER COMPACT CARDS */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* Leader Card - COMPACT SIZE */
.leader-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 10px;
    padding: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Risk Badge - SMALLER */
.risk-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-badge.risk-1,
.risk-badge.risk-2,
.risk-badge.risk-3 {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.risk-badge.risk-4,
.risk-badge.risk-5,
.risk-badge.risk-6 {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.risk-badge.risk-7,
.risk-badge.risk-8,
.risk-badge.risk-9,
.risk-badge.risk-10 {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Card Actions - SMALLER */
.card-actions-top {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    display: flex;
    gap: 0.35rem;
}

.action-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(51, 65, 85, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.65rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-icon:hover {
    background: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Avatar Section - COMPACT */
.card-avatar-section {
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0.65rem;
}

.leader-avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.leader-strategy {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 0.65rem;
}

/* Card Stats - COMPACT */
.card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-label {
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
}

/* ROI Display - SMALLER */
.card-roi {
    text-align: center;
    margin-bottom: 0.65rem;
}

.roi-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
}

.roi-value.negative {
    color: #ef4444;
}

/* Performance Chart - SMALLER */
.card-chart {
    height: 55px;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    padding: 0.3rem;
}

.chart-canvas {
    width: 100%;
    height: 100%;
}

/* Compact List Style */
.compact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compact-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.compact-item:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(59, 130, 246, 0.5);
}

.compact-rank {
    font-size: 1rem;
    font-weight: 700;
    color: #94a3b8;
    min-width: 25px;
}

.compact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
}

.compact-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compact-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.compact-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.compact-badge.verified {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.compact-badge.premium {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.compact-badge.new {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.compact-badge.trending {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.compact-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
    min-width: 90px;
    text-align: right;
}

.compact-change {
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 85px;
    text-align: right;
}

.compact-change.positive {
    color: #22c55e;
}

/* Simulator Box */
.simulator-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.simulator-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.simulator-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.simulator-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input-with-currency {
    position: relative;
}

.simulator-input {
    width: 100%;
    padding: 0.75rem 3.5rem 0.75rem 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.simulator-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.currency-label {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-select-leaders {
    width: 100%;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-select-leaders:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.btn-simulate {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-simulate:hover {
    filter: brightness(1.1);
}

/* Featured Box */
.featured-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.featured-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.featured-item:last-child {
    margin-bottom: 0;
}

.featured-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.featured-content {
    flex: 1;
}

.featured-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.featured-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Stats Box */
.stats-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.stats-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-row:first-child {
    padding-top: 0;
}

.stat-row .stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.stat-row .stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1400;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(30, 41, 59, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    width: 500px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.modal-large {
    width: 900px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.modal-header h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.close-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.modal-body {
    padding: 1.5rem;
}

.trader-modal-summary {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.trader-modal-summary h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.trader-modal-summary p {
    color: #cbd5e1;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group small {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.4rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

/* Trader Detail Modal */
.trader-detail-header {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    margin-bottom: 2rem;
}

.trader-detail-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
    overflow: hidden;
}

.trader-detail-info {
    flex: 1;
}

.trader-detail-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem 0;
}

.trader-detail-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.detail-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.detail-badge.verified {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.detail-badge.premium {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.detail-badge.risk-low {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.detail-badge.risk-medium {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.detail-badge.risk-high {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.trader-detail-strategy {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3b82f6;
    margin: 0 0 0.5rem 0;
}

.trader-detail-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.trader-detail-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-stat-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
}

.detail-stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.detail-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.detail-stat-value.positive {
    color: #22c55e;
}

.detail-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(51, 65, 85, 0.5);
}

.detail-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.detail-tab:hover {
    color: #cbd5e1;
}

.detail-tab.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.perf-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perf-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.perf-value {
    font-size: 1.4rem;
    font-weight: 700;
}

.perf-value.positive {
    color: #22c55e;
}

.perf-value.negative {
    color: #ef4444;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-left {
    font-size: 0.95rem;
    color: #94a3b8;
}

.stat-right {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-icon {
    color: #3b82f6;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-icon:hover {
    color: #60a5fa;
    transform: scale(1.1);
}

.trades-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trade-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr 1.2fr;
    gap: 1rem;
    align-items: center;
}

.trade-pair {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.trade-type {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
}

.trade-type.buy {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.trade-type.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.trade-type.hold {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.trade-amount {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.trade-profit {
    font-size: 1rem;
    font-weight: 700;
}

.trade-profit.positive {
    color: #22c55e;
}

.trade-profit.negative {
    color: #ef4444;
}

.trade-time {
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: right;
}

.portfolio-assets {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
}

.portfolio-assets h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
}

.assets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.asset-chip {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-detail-copy,
.btn-detail-favorite {
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-detail-copy {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
}

.btn-detail-copy:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-detail-favorite {
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.btn-detail-favorite:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

/* Leader Selector Modal */
.leader-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.selector-item {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(51, 65, 85, 0.5);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selector-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(30, 41, 59, 0.7);
}

.selector-item.selected {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.selector-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    overflow: hidden;
}

.selector-info {
    flex: 1;
}

.selector-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.selector-roi {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
}

.selector-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(51, 65, 85, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s ease;
}

.selector-item.selected .selector-check {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .leaders-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-right {
        width: 100%;
        flex-direction: column;
    }
    
    .trader-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .trade-item {
        grid-template-columns: 1fr;
    }
    
    .detail-actions {
        grid-template-columns: 1fr;
    }
}
