/* ===== GLOBAL VARIABLES ===== */
:root {
    --bg-primary: #0d0d12;
    --bg-secondary: #13131a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --bg-input: #13131a;
    --border-color: #2a2a3d;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --accent-hover: #fbbf24;
    --text-primary: #eef2f7;
    --text-secondary: #94a3b8;
    --green: #22c55e;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #a855f7;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
}

/* ===== NAVBAR (index.php'den tam senkronize) ===== */
.navbar-custom {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand-custom {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--accent) !important;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand-custom:hover {
    color: var(--accent-hover) !important;
    text-shadow: 0 0 20px var(--accent-glow);
}

.brand-slogan {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.nav-link-custom {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after {
    width: 70%;
}

.nav-link-custom:hover {
    color: var(--accent) !important;
    background: rgba(245, 158, 11, 0.05);
}

.user-actions-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.notif-scroll::-webkit-scrollbar {
    width: 4px;
}

.notif-scroll::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

/* ===== PREMIUM TYPOGRAPHY & BADGES ===== */
.premium-card-price {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
}

.premium-card-label {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-rank-badge {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-prime-badge {
    background: #10b981;
    color: #fff !important;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    text-transform: uppercase;
}

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filter-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.filter-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

/* Form Elemanları Görünürlük Düzenlemesi */
.form-control,
.form-select {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color);
    color: var(--text-primary) !important;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #94a3b8 !important;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #94a3b8 !important;
}

.form-control::-ms-input-placeholder {
    color: #94a3b8 !important;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-input) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25) !important;
    outline: none !important;
}

/* Select Dropdown Menü Rengi */
.form-select option {
    background-color: var(--bg-input);
    color: #fff;
}

.form-check-input {
    background-color: var(--bg-primary);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* ===== LISTING AREA ===== */
.listing-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.listing-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.listing-count b {
    color: #fff;
}

/* ===== FILTER CHIPS ===== */
.filter-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.filter-chip {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.filter-chip:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.filter-chip i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.filter-chip-clear-all {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.2s;
}

.filter-chip-clear-all:hover {
    color: var(--red);
}

/* ===== CARDS (index.php'den kopyalandı) ===== */
.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Mobile overflow clip fix */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    isolation: isolate;
}

.account-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.1);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 345 / 325;
    overflow: hidden;
    background: #000;
    border-radius: 20px 20px 0 0;
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.account-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 40%);
    pointer-events: none;
}

/* ===== SELECT DROPDOWN THEMING ===== */
select option {
    background-color: var(--bg-secondary);
    color: #fff;
}

/* ===== BUTTON CLASSES ===== */
.btn-cs-action {
    background: #3b82f6;
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cs-action:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.btn-cs-outline {
    background: transparent;
    color: #fff !important;
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cs-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    color: var(--accent) !important;
}

/* ===== FEATURES & FOOTER (index.php'den tam senkronize) ===== */
.features-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0;
    margin-top: 2rem;
}

.feature-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-custom {
    background-color: var(--bg-secondary);
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 500px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

/* ===== PREMIUM CARD STATS GRID & CIRCLE ===== */
.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.steam-level-circle-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--lvl-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.card-body-custom {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-custom {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-medal-row {
    display: flex;
    gap: 6px;
    margin-bottom: 1.25rem;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 42px;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
}

.card-medal-item {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
    flex-shrink: 0;
}

.card-medal-row::-webkit-scrollbar {
    height: 4px;
}

.card-medal-row::-webkit-scrollbar-track {
    background: transparent;
}

.card-medal-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.card-medal-row:hover::-webkit-scrollbar-thumb {
    background: var(--accent);
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-item i {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.stat-value {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}

.card-footer-custom {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.current-price {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 2px;
}

.currency {
    font-size: 1rem;
    margin-left: 2px;
}

.btn-detail {
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: #0a0a0f !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-detail:hover {
    background: linear-gradient(135deg, var(--accent-hover), #f59e0b);
    color: #0a0a0f !important;
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}

/* ===== PAGINATION ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link-custom {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-link-custom:hover,
.page-link-custom.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    border-radius: 30px;
    border: 1px dashed var(--border-color);
    margin-top: 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
    display: block;
}

.empty-state h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* ===== MOBILE FILTER TOGGLE ===== */
.mobile-filter-btn {
    display: none;
    width: 100%;
    background: var(--accent);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 991px) {
    .mobile-filter-btn {
        display: flex;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        max-height: 100vh;
        z-index: 9999;
        transition: left 0.3s ease;
        border-radius: 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
    }

    .filter-sidebar.show {
        left: 0;
    }

    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 9998;
    }

    .filter-overlay.show {
        display: block;
    }

    .filter-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
    }
}

.card-bansiz-badge {
    background: rgba(34, 197, 94, 0.18);
    color: #22c55e !important;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(34, 197, 94, 0.4);
    text-transform: uppercase;
    box-shadow: none;
}


@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12);
    }
}

/* ── Oyun & Madalya Filtre Scroll Listesi ── */
.filter-scroll-list {
    max-height: 210px;
    overflow-y: auto;
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.3) transparent;
}

.filter-scroll-list::-webkit-scrollbar {
    width: 4px;
}

.filter-scroll-list::-webkit-scrollbar-track {
    background: transparent;
}

.filter-scroll-list::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.35);
    border-radius: 4px;
}

.filter-item-check {
    padding: 0.3rem 0.25rem;
    border-radius: 6px;
    transition: background 0.15s ease;
    cursor: pointer;
}

.filter-item-check:hover {
    background: rgba(245, 158, 11, 0.06);
}

.filter-item-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 148px;
}

.form-check-input:checked+.form-check-label .filter-item-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== CUSTOM FILTER RADIO LIST ===== */
.filter-radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
    margin: 0;
    font-weight: 400;
}

.filter-radio-item:first-child {
    border-radius: 10px 10px 0 0;
}

.filter-radio-item:last-child {
    border-radius: 0 0 10px 10px;
}

.filter-radio-item:hover {
    background: rgba(245, 158, 11, 0.08);
    color: var(--text-primary);
}

.filter-radio-item.active {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    font-weight: 600;
}

.filter-radio-item input[type="radio"] {
    display: none;
    /* Radio'yu gizle, sadece label görünsün */
}

/* Mobil Kart Iyileştirmeleri */
@media (max-width: 576px) {

    /* Kart body padding küçült */
    .card-body-custom {
        padding: 0.75rem !important;
    }

    /* Başlık font küçült */
    .card-title-custom {
        font-size: 0.8rem !important;
        min-height: 36px !important;
        margin-bottom: 0.5rem !important;
    }

    /* Madalya satırı küçült */
    .card-medal-item {
        width: 20px !important;
        height: 20px !important;
    }

    .card-stats {
        gap: 0.3rem !important;
        padding-top: 0.6rem !important;
        margin-bottom: 0.5rem !important;
    }

    .stat-item {
        padding: 0.3rem 0.4rem !important;
        gap: 0.3rem !important;
        align-items: center !important;
        min-height: 38px !important;
    }

    .stat-item > div {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
    }

    .stat-value {
        font-size: 0.7rem !important;
        max-width: none !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .stat-label {
        font-size: 0.5rem !important;
        white-space: nowrap !important;
    }

    .stat-item i {
        display: none !important;
        /* Sadece ikon gizle, steam level çemberi kalsın */
    }

    /* Fiyat küçült */
    .current-price {
        font-size: 1.1rem !important;
    }

    /* İncele butonu küçült */
    .btn-detail {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.6rem !important;
    }

    /* Kart grid gap küçült */
    .row.g-4 {
        --bs-gutter-x: 0.5rem !important;
        --bs-gutter-y: 0.5rem !important;
    }

    /* Kart köşeleri */
    .account-card {
        border-radius: 12px !important;
    }

    /* İkonları tamamen kaldırmak yerine boyutlarını küçültelim ki tasarım bozulmasın (isteğe bağlı) */
    .stat-item i {
        display: none !important;
    }
    
    .steam-level-circle-sm {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.6rem !important;
    }

    /* Rozet (Badge) Boyutlandırma ve Hizalama (Detay sayfası ile aynı) */
    .card-rank-badge {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.6rem !important;
        top: 5px !important;
        right: 5px !important;
    }
    .card-prime-badge, .card-bansiz-badge {
        padding: 2px 6px !important;
        font-size: 0.6rem !important;
        bottom: 5px !important;
    }
    .card-bansiz-badge {
        left: 5px !important;
    }
    .card-prime-badge {
        right: 5px !important;
    }
}