/* ============================================================
   PROFILE PAGE - Modern & Clean Design
   ============================================================ */

/* ============== VARIABLES ============== */
:root {
    --profile-bg: #0a0a0f;
    --profile-surface: #12121a;
    --profile-surface-hover: #1a1a25;
    --profile-border: rgba(255, 255, 255, 0.06);
    --profile-accent: #e63946;
    --profile-accent-glow: rgba(230, 57, 70, 0.3);
    --profile-text: #f1f1f1;
    --profile-text-muted: #8a8a9a;
    --profile-text-dim: #5a5a6a;
    --profile-success: #10b981;
    --profile-warning: #f59e0b;
    --profile-danger: #ef4444;
    --profile-gradient-1: linear-gradient(135deg, #e63946 0%, #f72585 100%);
    --profile-gradient-2: linear-gradient(135deg, #12121a 0%, #1a1a25 100%);
}

/* ============== BASE STYLES ============== */
.profile-page {
    position: relative;
    min-height: 100vh;
    background: var(--profile-bg);
    color: var(--profile-text);
    font-family: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.profile-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 18, 20, 0.92) 0%,
        rgba(28, 28, 32, 0.94) 55%,
        rgba(230, 57, 70, 0.15) 100%
    );
    backdrop-filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

.profile-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ============== HERO SECTION ============== */
.profile-hero {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 3rem;
    margin-bottom: 2rem;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(247, 37, 133, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--profile-surface) 0%, var(--profile-bg) 100%);
    z-index: 0;
}

.hero-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    /* noise.png removed - file not found */
    opacity: 0.03;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero User Info */
.hero-user {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.user-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--profile-surface);
    box-shadow: 
        0 0 0 2px var(--profile-accent),
        0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid var(--profile-surface);
}

.status-online { background: #22c55e; box-shadow: 0 0 12px #22c55e; }
.status-idle { background: #f59e0b; box-shadow: 0 0 12px #f59e0b; }
.status-dnd { background: #ef4444; box-shadow: 0 0 12px #ef4444; }
.status-offline { background: #6b7280; }

.user-info {
    flex: 1;
}

.username {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.25rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.display-name {
    font-size: 1.1rem;
    color: var(--profile-text-muted);
    margin: 0 0 1rem;
}

.user-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid;
    backdrop-filter: blur(8px);
}

.badge-icon {
    font-size: 1rem;
}

.badge-role-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--profile-surface);
    border: 1px solid var(--profile-border);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 57, 70, 0.3);
}

.stat-card.highlight {
    background: var(--profile-gradient-1);
    border: none;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--profile-text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card.highlight .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ============== PROFILE GRID ============== */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============== SECTION BASE ============== */
.profile-section {
    background: var(--profile-surface);
    border: 1px solid var(--profile-border);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-section:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.section-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--profile-border);
    background: rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    font-size: 1.25rem;
}

/* ============== ETKINLIK SECTION ============== */
.etkinlik-content {
    padding: 1.5rem;
}

.ep-display {
    margin-bottom: 1.5rem;
}

.ep-rank-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.ep-icon {
    font-size: 2.5rem;
}

.ep-info {
    display: flex;
    flex-direction: column;
}

.ep-rank-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.ep-value {
    font-size: 0.9rem;
    opacity: 0.9;
}

.xp-progress {
    margin-top: 0.75rem;
}

.xp-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: var(--profile-gradient-1);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.xp-text {
    display: block;
    font-size: 0.75rem;
    color: var(--profile-text-muted);
    margin-top: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
    border: 1px solid var(--profile-border);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-name {
    font-size: 0.7rem;
    color: var(--profile-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.game-info {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--profile-border);
}

.game-info-item {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
}

.info-label {
    display: block;
    font-size: 0.7rem;
    color: var(--profile-text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
}

/* ============== MATCHES SECTION ============== */
.matches-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.match-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    min-height: 140px;
}

.match-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 1;
}

.match-card.match-win {
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.match-card.match-lose {
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.match-card.match-win .match-card-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.match-card.match-lose .match-card-overlay {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.match-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
}

/* Sol: Karakter Bölümü */
.match-character-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.match-character-icon {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.match-character-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-character-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    text-align: center;
    max-width: 80px;
}

/* Orta: Harita ve İstatistikler */
.match-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.match-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.map-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    margin: 0;
}

.match-score-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.match-kda-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.kda-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.kda-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.kda-value {
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.kda-value.kills {
    color: var(--profile-success);
}

.kda-value.deaths {
    color: var(--profile-danger);
}

.kda-value.assists {
    color: rgba(255, 255, 255, 0.9);
}

.acs-display {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.acs-display strong {
    color: #fff;
    font-weight: 700;
}

/* Sağ: Sonuç, MP ve Tarih */
.match-meta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.match-result-badge {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.match-result-badge.win {
    background: var(--profile-success);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

.match-result-badge.lose {
    background: var(--profile-danger);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.mp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    min-width: 60px;
    gap: 0.15rem;
}

.mp-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.mp-value {
    font-size: 1.25rem;
    font-weight: 800;
}

.mp-change {
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 0.05rem;
}

.mp-change.mp-up {
    color: var(--profile-success);
}

.mp-change.mp-down {
    color: var(--profile-danger);
}

.mp-badge.mp-high {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: var(--profile-success);
}

.mp-badge.mp-mid {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: var(--profile-warning);
}

.mp-badge.mp-low {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: var(--profile-danger);
}

.mp-badge.mp-unknown {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--profile-text-dim);
}

.match-date {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.35rem;
}

/* ============== LEJYON SECTION ============== */
.lejyon-content {
    padding: 1.5rem;
}

.lejyon-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.point-card {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
    border: 1px solid var(--profile-border);
}

.point-card.primary {
    background: var(--profile-gradient-1);
    border: none;
}

.point-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.point-label {
    display: block;
    font-size: 0.7rem;
    color: var(--profile-text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.point-card.primary .point-label {
    color: rgba(255, 255, 255, 0.8);
}

.lejyon-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mini-stat {
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}

.mini-label {
    display: block;
    font-size: 0.65rem;
    color: var(--profile-text-dim);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.mini-value {
    font-weight: 700;
    font-size: 1rem;
}

.mini-value.win { color: var(--profile-success); }
.mini-value.lose { color: var(--profile-danger); }

.evaluation-section h4 {
    font-size: 0.85rem;
    color: var(--profile-text-muted);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eval-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.eval-grid.eval-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.eval-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}

.eval-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.eval-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.eval-label {
    font-size: 0.65rem;
    color: var(--profile-text-dim);
    text-transform: uppercase;
}

/* ============== ACTIVITY SECTION ============== */
.activity-content {
    padding: 1.5rem;
}

/* Aktivite İstatistikleri */
.activity-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.activity-stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 0.75rem;
}

.activity-stat-icon {
    font-size: 1.75rem;
}

.activity-stat-data {
    display: flex;
    flex-direction: column;
}

.activity-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.activity-stat-label {
    font-size: 0.7rem;
    color: var(--profile-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.join-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.join-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
}

.join-icon {
    font-size: 1.5rem;
}

.join-data {
    display: flex;
    flex-direction: column;
}

.join-label {
    font-size: 0.7rem;
    color: var(--profile-text-dim);
    text-transform: uppercase;
}

.join-value {
    font-weight: 600;
}

.join-relative {
    font-size: 0.75rem;
    color: var(--profile-text-muted);
}

/* Davet Eden Avatar */
.inviter-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.inviter-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--profile-accent);
    object-fit: cover;
}

.inviter-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.inviter-link:hover .join-value {
    color: var(--profile-accent);
}

.channel-activity h4 {
    font-size: 0.85rem;
    color: var(--profile-text-muted);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.channel-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--profile-border);
    border-radius: 0.5rem;
    color: var(--profile-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: var(--profile-text);
}

.tab-btn.active {
    background: var(--profile-accent);
    border-color: var(--profile-accent);
    color: #fff;
}

.channel-list {
    display: none;
}

.channel-list.active {
    display: block;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.channel-item:last-child {
    margin-bottom: 0;
}

.channel-rank {
    font-weight: 800;
    color: var(--profile-text-dim);
    width: 2rem;
}

.channel-name {
    flex: 1;
    font-weight: 500;
}

.channel-time {
    color: var(--profile-accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.no-data {
    text-align: center;
    color: var(--profile-text-dim);
    padding: 1rem;
    font-size: 0.85rem;
}

/* ============== ROLES SECTION ============== */
.roles-content {
    padding: 1.5rem;
}

.roles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.role-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid;
    background: rgba(0, 0, 0, 0.3);
}

.role-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.role-tag.more {
    border-color: var(--profile-border);
    color: var(--profile-text-muted);
}

/* ============== MODERATION SECTION ============== */
.moderation-content {
    padding: 1.5rem;
}

.mod-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mod-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
}

.mod-stat.danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mod-icon {
    font-size: 1.25rem;
}

.mod-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.warning-list h4 {
    font-size: 0.85rem;
    color: var(--profile-text-muted);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--profile-warning);
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 0.5rem;
}

.warning-code {
    font-family: monospace;
    font-weight: 700;
    color: var(--profile-warning);
    font-size: 0.8rem;
}

.warning-reason {
    font-size: 0.85rem;
    color: var(--profile-text-muted);
}

/* ============== ECONOMY SECTION ============== */
.economy-content {
    padding: 1.5rem;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.currency-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
    border: 1px solid var(--profile-border);
}

.currency-icon {
    width: 32px;
    height: 32px;
}

.currency-data {
    display: flex;
    flex-direction: column;
}

.currency-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.currency-name {
    font-size: 0.7rem;
    color: var(--profile-text-dim);
    text-transform: uppercase;
}

.currency-card.gumus .currency-value { color: #c0c0c0; }
.currency-card.altin .currency-value { color: #ffd700; }
.currency-card.elmas .currency-value { color: #00bcd4; }
.currency-card.rozet .currency-value { color: #e91e63; }

.economy-extra {
    display: flex;
    gap: 0.75rem;
}

.extra-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}

.extra-label {
    font-size: 0.8rem;
    color: var(--profile-text-muted);
}

.extra-value {
    font-weight: 700;
}

.extra-item.company {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(247, 37, 133, 0.1) 100%);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

/* ============== TEAM SECTION ============== */
.team-section {
    /* Tek sütun düzeni için grid-column gerekmiyor */
}

.team-content {
    padding: 1.5rem;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--team-color), 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid var(--team-color, var(--profile-border));
    border-radius: 1rem;
}

.team-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 0.5rem;
}

.team-logo.team-role-badge {
    border-radius: 0;
    background: transparent;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.team-role {
    color: var(--profile-text-muted);
    font-size: 0.9rem;
}

.team-link {
    padding: 0.75rem 1.5rem;
    background: var(--profile-accent);
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.team-link:hover {
    background: #d63040;
    transform: translateY(-2px);
}

/* ============== EMPTY STATE ============== */
.empty-state {
    padding: 3rem;
    text-align: center;
}

.empty-icon {
    font-size: 3rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--profile-text-dim);
    margin: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1200px) {
    /* Grid zaten tek sütun */
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-user {
        flex-direction: column;
        text-align: center;
    }

    .user-avatar {
        width: 100px;
        height: 100px;
    }

    .username {
        font-size: 1.75rem;
    }

    .user-badges {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lejyon-points,
    .lejyon-stats,
    .eval-grid,
    .eval-grid.eval-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .join-info {
        grid-template-columns: 1fr;
    }

    .activity-stats-row {
        grid-template-columns: 1fr;
    }

    .currency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mod-stats {
        grid-template-columns: 1fr;
    }

    .match-content {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 1rem;
    }

    .match-character-section {
        order: 1;
    }

    .match-info-section {
        order: 2;
        flex: 1 1 100%;
    }

    .match-meta-section {
        order: 3;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0.75rem;
    }

    .match-header {
        gap: 0.5rem;
    }

    .map-name {
        font-size: 1.1rem;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 0 1rem 3rem;
    }

    .stats-grid,
    .lejyon-points,
    .lejyon-stats,
    .eval-grid,
    .eval-grid.eval-grid-5,
    .currency-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .economy-extra {
        flex-direction: column;
    }

    .match-content {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .match-character-icon {
        width: 56px;
        height: 56px;
    }

    .match-kda-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .match-meta-section {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
