/* ===== GLOBAL ===== */
:root {
    --bg-primary: #0d0d12;
    --bg-secondary: #13131a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --border-color: #2a2a3d;
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.3);
    --accent-hover: #fbbf24;
    --text-primary: #ECECEC;
    --text-secondary: #D1D5DB;
    /* Lighter gray for better contrast */
    --green: #22c55e;
    --red: #ef4444;
    --blue: #3b82f6;
    --purple: #a855f7;

    /* Semantic Tokens */
    --bg-section-alt: #0a0a0f;
    /* SEO ve alt section arka planı */
    --bg-card-deep: #13131a;
    /* Derin kart / kutu arka planı */
    --border-subtle: #2a2a3d;
    /* Hafif border rengi */
    --icon-decorative: var(--accent);
    /* Dekoratif ikonlar — tek renk */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== MARKET STATS BAR ===== */
.market-stats-bar {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-box.low .stat-box-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.stat-box.high .stat-box-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.stat-box.avg .stat-box-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.stat-box.total .stat-box-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-box-info h6,
.stat-box-info p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.stat-box-info div {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.stat-box-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 2px;
}

/* ===== PREMIUM CARD STATS GRID & CIRCLE ===== */
.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    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-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-item:hover {
    transform: scale(1.2) translateY(-2px);
}

.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);
}

.premium-card-price {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
}

.premium-card-label {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-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);
}

.navbar-brand-custom .brand-icon {
    font-size: 1.4rem;
}

.brand-slogan {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85) !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;
}

.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 CONTAINER ===== */
.user-actions-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 35, 0.8) 100%),
        url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070&auto=format&fit=crop');
    /* Gaming placeholder, ideally a CS2 map */
    background-size: cover;
    background-position: center;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
    background: linear-gradient(135deg, var(--accent), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-btn-primary {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    color: #000;
    background: var(--accent-hover);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hero-stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== SECTION ===== */
.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ===== ACCOUNT CARDS ===== */
.account-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.account-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.15);
    background: var(--bg-card-hover);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 345 / 325;
    /* Senin istediğin tam oran */
    overflow: hidden;
    background: #000;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.account-card:hover .card-img-wrapper img {
    transform: scale(1.1) rotate(1deg);
}

.card-img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 40%);
    pointer-events: none;
}

.card-badge-container {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 5;
}

.card-rank-badge {
    background: rgba(18, 18, 18, 0.75);
    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.35);
    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;
}

.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;
}

.card-body-custom {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== MOBİL HERO BANNER (VİTRİN) İYİLEŞTİRMELERİ ===== */
@media (max-width: 576px) {
    .hero-banner {
        padding-top: 110px !important;
        padding-bottom: 20px !important;
        min-height: auto !important;
        height: auto !important;
        text-align: center;
    }

    /* KaptanTurk Güvencesiyle Etiketi */
    .hero-content .rounded-pill {
        padding: 0.4rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-content .rounded-pill span {
        font-size: 0.75rem !important;
    }

    /* Ana Başlık (H1) */
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    /* Alt Açıklama (P) */
    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 10px;
    }

    /* Butonlar: Mobilde tam genişlik ve alt alta */
    .hero-content .d-flex {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-content .btn-cs-action,
    .hero-content .btn-cs-outline {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.8rem !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        white-space: nowrap !important;
        /* Yazı ve simgenin bölünmesini engeller */
        gap: 8px !important;
        /* İkon ve yazı arasındaki boşluk */
    }

    .hero-content .btn-cs-action i,
    .hero-content .btn-cs-outline i {
        margin: 0 !important;
        /* ms-2 veya me-2 class'larını ezip gap'i kullanmasını sağlar */
    }

    /* Ajan Görseli Mobilde Gizle */
    .hero-agent {
        display: none !important;
    }
}

.card-title-custom {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    min-height: 48px;
    word-break: break-word;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.tag-trust {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag-guarantee {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-fast {
    background: rgba(168, 85, 247, 0.1);
    color: var(--purple);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    min-width: 0;
    overflow: hidden;
}

.stat-item i {
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
    opacity: 0.85;
    flex-shrink: 0;
}

.stat-item .stat-value {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.stat-item .stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.stat-hours i {
    color: var(--blue);
}

.stat-wins i {
    color: var(--green);
}

.stat-medals i {
    color: var(--accent);
}

.stat-level i {
    color: var(--purple);
}

.card-footer-custom {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.current-price {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--accent);
    line-height: 1;
}

.current-price .currency {
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-detail {
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: #0a0a0f;
    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;
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: var(--text-secondary);
    font-weight: 600;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== FEATURES & FOOTER ===== */
.features-section {
    background: transparent;
    border-top: 1px solid var(--border-color);
    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: transparent;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    background: rgba(245, 158, 11, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.feature-content h5,
.feature-content h3 {
    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: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== NEW UTILITY CLASSES ===== */
.section-seo {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0;
}

.card-seo {
    background: var(--bg-card-deep);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 1rem;
}

.faq-accordion-item {
    background: var(--bg-card-deep) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
    overflow: hidden;
}

.faq-accordion-button {
    background: var(--bg-card-deep) !important;
    color: #f8fafc !important;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: none !important;
    border-radius: 10px !important;
    gap: 0.6rem;
}

.icon-accent {
    color: var(--accent) !important;
}

.feature-box .feature-icon {
    color: var(--icon-decorative);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    opacity: 0.85;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.2rem;
    }

    .hero-stat-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .navbar-custom .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand-custom img {
        height: 80px !important;
    }

    .brand-slogan {
        font-size: 0.6rem;
    }

    .user-actions-glass {
        padding: 4px 6px;
        gap: 4px;
    }

    .hero-section {
        padding: 2.5rem 0 2rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-bansiz-badge {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e !important;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(34, 197, 94, 0.4);
    text-transform: uppercase;
    box-shadow: none;
}


/* ================= YENİ CS2 DYNAMIC BANNER CSS ================= */
.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    /* Arka plan görselin */
    background: no-repeat center center/cover;
    margin-top: -80px;
    /* Navbar'ın altına girmesi için */
    padding-top: 80px;
    overflow: hidden;
}

/* Soldan sağa doğru açılan karanlık filtre (Dust 2 parlaklığını kırmak için) */
.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.7) 45%, rgba(18, 18, 18, 0.1) 100%);
    z-index: 2;
}

/* --- Tipografi --- */
.hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    background: linear-gradient(to right, var(--accent) 20%, #ffd700 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

/* --- Ajan Konumlandırma (Absolute ile sağa yaslama) --- */
.hero-agent {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 90%;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.agent-glow {
    position: absolute;
    bottom: 10%;
    width: 80%;
    height: 60%;
    background: rgba(245, 158, 11, 0.4);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    will-change: opacity;
}

.hero-agent img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-15px 15px 25px rgba(0, 0, 0, 0.8));
    animation: infinite-float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes infinite-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    color: var(--accent);
    animation: float-soft 8s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
}

.floating-icon i {
    font-size: 3rem;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 4rem;
}

.icon-2 {
    top: 60%;
    left: 25%;
    animation-delay: -2s;
    font-size: 2.8rem;
}

.icon-3 {
    top: 25%;
    left: 45%;
    animation-delay: -4s;
    font-size: 3.5rem;
}

@keyframes float-soft {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -20px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }
}

/* --- CS Tarzı Butonlar (Senin eski kodun, korundu) --- */
.btn-cs-action {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    text-decoration: none;
}

.btn-cs-action:hover {
    background: #ffb300;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

.btn-cs-outline {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
    text-decoration: none;
}

.btn-cs-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}

/* =========================================
           KAYMA ANİMASYONLARI (Dinamik Efekt)
        ========================================= */
.js-slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.js-slide-in-right {
    opacity: 0;
    transform: translateX(150px);
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 991px) {
    .hero-banner {
        height: auto;
        padding-top: 130px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-banner .overlay {
        background: rgba(10, 15, 24, 0.85);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin: 0 auto 2rem auto;
    }

    .hero-agent {
        position: relative;
        right: auto;
        height: 350px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .hero-floating-icons,
    .cs-sparks,
    .cs-smoke {
        display: none !important;
    }

    .btn-cs-action,
    .btn-cs-outline {
        width: 100%;
        clip-path: none;
        border-radius: 8px;
    }
}

/* --- CS Tarzı Butonlar (Köşeli) --- */
.btn-cs-action {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* CS Menüsü gibi hafif eğik kesim */
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.btn-cs-action:hover {
    background: #ffb300;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

.btn-cs-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
    /* Tersi eğik kesim */
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.btn-cs-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}

/* --- Alt Geçiş --- */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-main) 10%, transparent);
    z-index: 5;
    pointer-events: none;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .hero-dynamic-cs2 {
        height: auto;
        min-height: 70vh;
        padding: 120px 0 80px;
    }

    .hero-big-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-cs-action,
    .btn-cs-outline {
        width: 100%;
        clip-path: none;
        border-radius: 8px;
    }

    /* Mobilde düz buton */
}

.review-track-idx {
    display: flex;
    gap: 24px;
    padding: 1.5rem 1rem 3rem;
    width: max-content;
    animation: scroll-reviews-idx 60s linear infinite;
}

.review-track-idx:hover {
    animation-play-state: paused;
}

.review-card-idx {
    flex: 0 0 auto;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card-idx:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.review-card-idx::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

@keyframes scroll-reviews-idx {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== YORUMLAR MOBİL UYUM ===== */
@media (max-width: 576px) {
    .review-card-idx {
        width: 270px !important;
        padding: 1.2rem !important;
    }

    .review-track-idx {
        gap: 16px !important;
        animation-duration: 40s !important;
    }
}

/* ================= SİNEMATİK EFEKTLER ================= */

/* 1. Sürekli Akan Sis Efekti */
.cs-smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.7) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    will-change: opacity;
    contain: strict;
    animation: none;
}

@keyframes driftSmoke {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Yarıya gelince başa sarar (kesintisiz görüntü) */
}

/* 2. Uçuşan Ateş Kıvılcımları (Sarı/Turuncu) */
.cs-sparks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: transparent;
    will-change: transform;
    contain: layout style;
}

.cs-sparks::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
    /* KaptanTurk renklerinde rastgele konumlarda parlayan noktalar */
    box-shadow:
        10vw 10vh 2px #f59e0b, 20vw 50vh 3px #f59e0b, 30vw 20vh 1px #ffb300,
        40vw 80vh 2px #f59e0b, 50vw 30vh 4px #ffb300, 60vw 60vh 2px #f59e0b,
        70vw 10vh 1px #ffb300, 80vw 50vh 3px #f59e0b, 90vw 80vh 2px #ffb300,
        15vw 70vh 2px #f59e0b, 45vw 10vh 3px #ffb300, 75vw 40vh 1px #f59e0b,
        85vw 90vh 2px #ffb300, 5vw 40vh 3px #f59e0b, 95vw 20vh 2px #ffb300;
    animation: sparksFly 15s linear infinite;
}

@keyframes sparksFly {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        /* Yukarı doğru uçar ve küçülür */
        opacity: 0;
    }
}

#whatsapp-btn {
    position: fixed !important;
}

#whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: wa-ripple-gpu 2s ease-out infinite;
}

@keyframes wa-ripple-gpu {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===== TRUST STORES SECTION ===== */
.section-trust-stores {
    background: var(--bg-primary);
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.store-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    backdrop-filter: blur(10px);
}

.store-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.1);
}

.store-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 100% 0%, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.store-card:hover::after {
    opacity: 1;
}

.store-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.store-brand-icon {
    width: 64px;
    height: 64px;
    background: #1e1e2d;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.store-brand-icon i {
    font-size: 2.2rem;
}

.store-brand-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-info h4 {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.store-verified {
    color: #22c55e;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.store-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.store-stat-pill {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.store-card:hover .store-stat-pill {
    background: rgba(255, 255, 255, 0.05);
}

.store-stat-v {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.store-stat-l {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.store-rating-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 158, 11, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.store-rating-val {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff;
}

.store-rating-stars-v {
    color: var(--accent);
    display: flex;
    gap: 3px;
    font-size: 1.1rem;
}

.store-cta-line {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: color 0.3s;
}

.store-card:hover .store-cta-line {
    color: var(--accent);
}

.store-card:hover .store-cta-line i {
    transform: translateX(5px);
}

.store-cta-line i {
    transition: transform 0.3s ease;
}

/* Store Specific Colors */
.store-gamesatis .store-brand-icon i {
    color: #3b82f6;
}

.store-itemsatis .store-brand-icon i {
    color: #f59e0b;
}

@media (max-width: 991px) {
    .section-trust-stores .row>div {
        margin-bottom: 1.5rem;
    }
}

/* 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;
    }

    /* Rozet İyileştirmeleri (Equal Dimensions) */
    .card-prime-badge,
    .card-bansiz-badge {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        bottom: 8px !important;
        border-radius: 6px !important;
    }

    .card-prime-badge {
        right: 8px !important;
    }

    .card-bansiz-badge {
        left: 8px !important;
    }


    /* Güven Mağazaları Başlık Küçültmeleri */
    .section-trust-stores h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }

    .section-trust-stores p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* Mobil Özellik Kutuları (Features) 2'li Düzen İyileştirmeleri */
    .features-section .row.g-4 {
        --bs-gutter-x: 0.75rem !important;
        --bs-gutter-y: 0.75rem !important;
    }


    /* Güven Mağazaları Kart Küçültmeleri (Mobil) */
    .store-card {
        padding: 1.2rem !important;
        gap: 1rem !important;
    }

    .store-brand-icon {
        width: 50px !important;
        height: 50px !important;
        padding: 8px !important;
        border-radius: 12px !important;
    }

    .store-brand-icon i {
        font-size: 1.6rem !important;
    }

    .store-info h4 {
        font-size: 1.1rem !important;
    }

    .store-info div {
        font-size: 0.7rem !important;
    }

    .store-stat-pill {
        padding: 0.6rem !important;
    }

    .store-stat-v {
        font-size: 1.1rem !important;
        margin-bottom: 0.2rem !important;
    }

    .store-stat-l {
        font-size: 0.55rem !important;
    }

    .store-rating-footer {
        padding: 0.8rem 1rem !important;
    }

    .store-rating-val {
        font-size: 1.4rem !important;
    }

    .store-rating-stars-v {
        font-size: 0.9rem !important;
    }

    .store-cta-line {
        font-size: 0.75rem !important;
    }

    .feature-box {
        padding: 1.2rem 0.5rem !important;
        gap: 0.8rem !important;
        border-radius: 16px !important;
    }

    .feature-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.6rem !important;
        margin-bottom: 0 !important;
        border-radius: 14px !important;
    }

    .feature-content h3 {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }

    .feature-content p {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
}