/* Store Games - Ana Stil Dosyası */

:root {
    --color-primary: #f43f5e;
    --color-primary-hover: #e11d48;
    --color-secondary: #14b8a6;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header - Sabit (her zaman üstte) */
.header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10500; /* Mobil menü ve overlay'den yüksek */
    height: 88px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Sayfa içeriği header'ın altından başlasın */
body {
    padding-top: 88px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.logo { order: 1; }
.nav { order: 2; }
.header-actions { order: 3; margin-left: auto; }

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--color-primary);
}

/* Header Logo Responsive - cihaza göre boyutlandırma */
.header-logo {
    height: 72px; /* Desktop - tagline okunabilir */
    width: auto;
    margin: 0;
    display: block;
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
    .header-logo {
        height: 64px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 72px !important;
    }
    body {
        padding-top: 72px !important;
    }
    .header-logo {
        height: 58px; /* Mobil */
        margin: 0;
    }
}

.nav {
    display: none;
}

/* Mobil-özel öğeleri her ekran boyutunda göster (hamburger menüsü içinde) */
.nav .nav-mobile-only {
    display: block;
}

.nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: var(--color-primary);
}

/* +Bonus Paketler CTA - dikkat çekici buton */
.nav a.nav-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff4d6d 100%);
    color: #fff !important;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.25),
                inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    position: relative;
    overflow: hidden;
}

.nav a.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    border-radius: 999px 999px 0 0;
}

.nav a.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.35),
                inset 0 1px 0 rgba(255,255,255,0.3);
    filter: brightness(1.05);
}

/* Hamburger Menu - Daha büyük dokunma hedefi */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    z-index: 10001;
    position: relative;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover,
.hamburger:active {
    background: rgba(244, 63, 94, 0.08);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hamburger her ekranda görünür — masaüstü gizleme kuralı kaldırıldı */

/* Slide-in menü - tüm ekran boyutlarında (header'ın altından başlar) */
.nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: calc(100vh - 60px);
    background: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.25rem 1.25rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 9998;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav.active {
    right: 0;
    display: flex;
}

.nav a {
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.nav a:hover, .nav a:active {
    color: var(--color-primary);
}

/* Menü içi başlık (Kurumsal, Hızlı Linkler, vb.) */
.nav-section-title {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 1.1rem 0 0.35rem;
    border-bottom: none !important;
}

.nav-section-title + a {
    padding-top: 0.5rem;
}

/* Mobil Overlay - Header'ın altından (header görünmeye devam etsin) */
.mobile-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .mobile-overlay {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-bg);
}

/* Hero Section */
.hero {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title span {
    color: var(--color-primary);
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==================== 2. HERO - DUYURU BANDI ==================== */
.live-notify-hero {
    background: transparent;
    padding: 2rem 0 1rem;
    position: relative;
}

.live-notify-hero .container {
    position: relative;
}

/* "DUYURU" etiketi kutunun dışında, sol üst köşede */
.live-notify-pill {
    display: inline-block;
    margin: 0 0 -0.6rem 1rem;
    padding: 0.35rem 0.95rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 6px 16px rgba(244, 63, 94, 0.32);
    position: relative;
    z-index: 2;
}

.live-notify-box {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fce7f3 100%);
    border: 1px solid rgba(244, 63, 94, 0.18);
    border-radius: 1rem;
    padding: 1.4rem 1.5rem 1.4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.08);
}

.live-notify-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(244, 63, 94, 0.10), transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(236, 72, 153, 0.10), transparent 45%);
    pointer-events: none;
}

.live-notify-ticker {
    position: relative;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
    z-index: 1;
}

.live-notify-text {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.live-notify-text.fade-out {
    opacity: 0;
    transform: translateY(-6px);
}

.live-notify-text.fade-in {
    animation: liveTextIn 0.5s ease forwards;
}

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

.live-notify-text strong {
    color: var(--color-primary);
    font-weight: 800;
}

.live-notify-text .live-emoji {
    margin-right: 0.45rem;
    font-style: normal;
}

@media (max-width: 768px) {
    .live-notify-hero { padding: 1.5rem 0 0.75rem; }
    .live-notify-pill { font-size: 0.65rem; padding: 0.3rem 0.8rem; margin-left: 0.75rem; }
    .live-notify-box { padding: 1.1rem 1.1rem 1.1rem 1.25rem; }
    .live-notify-ticker { font-size: 0.92rem; min-height: 26px; }
}

@media (max-width: 480px) {
    .live-notify-hero { padding: 1.25rem 0 0.5rem; }
    .live-notify-pill { font-size: 0.62rem; padding: 0.28rem 0.7rem; margin-left: 0.5rem; }
    .live-notify-box { padding: 0.95rem 1rem; }
    .live-notify-ticker { font-size: 0.88rem; }
}

/* Live Purchases Box (eski - kullanılmıyor) */
.live-purchases {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}

.live-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        opacity: 0.8; 
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

.live-title {
    font-weight: 600;
    color: var(--color-text);
}

#liveList {
    position: relative;
}

.live-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    animation: slideIn 0.5s ease-out;
    border-bottom: 1px solid transparent;
}

.live-item:not(:last-child) {
    border-bottom-color: var(--color-border);
}

.live-item.new-item {
    animation: slideInNew 1s ease-out;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.live-item.exit-item {
    animation: slideOut 0.8s ease-in forwards;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInNew {
    from {
        opacity: 0;
        transform: translateY(-30px);
        background: rgba(16, 185, 129, 0.2);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        background: transparent;
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
        max-height: 50px;
    }
    to {
        opacity: 0;
        transform: translateX(30px);
        max-height: 0;
        padding: 0;
        margin: 0;
        border: none;
    }
}

/* Cascade animation - push down effect */
@keyframes pushDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes cascadeEnter {
    0% {
        opacity: 0;
        transform: translateY(-100%);
        max-height: 0;
    }
    30% {
        max-height: 60px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 60px;
    }
}

.live-item.push-down {
    animation: pushDownSmooth 0.8s ease-out forwards;
}

@keyframes pushDownSmooth {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.live-item.cascade-enter {
    animation: cascadeEnter 0.8s ease-out forwards;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
}

.live-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Status Dots */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.green {
    background: #10b981;
    animation: pulseGlow 1.5s infinite;
}

.status-dot.red {
    background: #ef4444;
    opacity: 0.7;
}

.live-coin {
    width: 24px;
    height: 24px;
}

.live-amount {
    color: var(--color-primary);
    font-weight: 700;
}

.live-time {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Packages Section */
.packages-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Package Cards */
.packages-wrapper {
    position: relative;
    padding: 0 1rem;
}

.packages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.packages-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
    justify-content: center;
}

.package-card {
    flex: 0 0 calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
    min-width: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: all 0.3s;
}

/* Scroll indicators artık gerekli değil, hepsini gizle */
.scroll-indicator {
    display: none !important;
}

/* Mobil: 2 kutu yan yana */
@media (max-width: 767px) {
    .packages-row {
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .package-card {
        flex: 0 0 calc(50% - 0.375rem);
        max-width: calc(50% - 0.375rem);
        padding: 1.5rem 0.9rem;
        min-height: 230px;
    }

    .package-tiktok-logo {
        width: 55px;
        margin-bottom: 0.6rem;
    }

    .package-coins {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .package-coin {
        width: 20px;
        height: 20px;
    }

    .package-bonus {
        font-size: 0.78rem;
        margin-bottom: 0.5rem;
    }

    .package-price {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .package-btn {
        padding: 0.7rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .package-card {
        padding: 1.35rem 0.75rem;
        min-height: 220px;
    }

    .package-tiktok-logo {
        width: 48px;
        margin-bottom: 0.5rem;
    }

    .package-coins {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .package-coin {
        width: 18px;
        height: 18px;
    }

    .package-bonus {
        font-size: 0.72rem;
    }

    .package-price {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .package-btn {
        padding: 0.6rem 0.4rem;
        font-size: 0.82rem;
    }
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.package-tiktok-logo {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
}

.package-coins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.3rem;
}

.package-coin {
    width: 18px;
    height: 18px;
}

.package-bonus {
    color: var(--color-success);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.package-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.package-btn {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.package-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

/* ==================== KART ALTI ÖZET ALANLAR ==================== */
.summary-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

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

.summary-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.10);
    border-color: rgba(244, 63, 94, 0.35);
}

.summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fee2e2 0%, #fce7f3 100%);
    color: var(--color-primary);
    border-radius: 12px;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.summary-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.summary-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0;
}

.summary-cta {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
}

.summary-cta h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.85rem;
}

.summary-cta p {
    color: var(--color-text-light);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.summary-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.summary-cta-links a {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.summary-cta-links a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 1023px) {
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 639px) {
    .summary-section {
        padding: 2rem 0 3rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-bottom: 2rem;
    }

    .summary-card {
        padding: 1.35rem 1.15rem;
    }

    .summary-icon {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }

    .summary-card h3 {
        font-size: 1rem;
    }

    .summary-card p {
        font-size: 0.88rem;
    }

    .summary-cta {
        padding: 1.75rem 1.25rem;
    }

    .summary-cta h2 {
        font-size: 1.3rem;
    }

    .summary-cta-links a {
        font-size: 0.82rem;
        padding: 0.5rem 0.85rem;
    }
}


/* Scroll Indicator Dots (artık kullanılmıyor) */
.scroll-indicator {
    display: none !important;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-primary);
}

.scroll-dot:hover {
    background: var(--color-primary);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 0.75rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ============================================================
   Footer Flat Links — Mobil ve Tablet'te 4 eşit sütun
   ============================================================ */
.footer-links-flat {
    width: 100%;
    columns: 1;
    column-gap: 0;
}

/* Footer grid: desktop 4 sütun, tablet/mobil 2 sütun (2x2 grid) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.75rem;
    margin-bottom: 2rem;
}

/* Tablet ve mobil: 2x2 grid (toplam 4 parça) */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
}

.footer-links-flat a {
    display: block;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 0.42rem 0;
    font-size: 0.85rem;
    line-height: 1.35;
    transition: color 0.2s, transform 0.2s;
    break-inside: avoid;
    page-break-inside: avoid;
}

.footer-links-flat a:hover {
    color: var(--color-white);
    transform: translateX(3px);
}

@media (max-width: 479px) {
    .footer-links-flat a { font-size: 0.62rem; padding: 0.28rem 0; line-height: 1.2; }
}

/* ============================================================
   Footer Güven Rozetleri — Küçültülmüş, Copyright satırında
   ============================================================ */
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.55rem 0.7rem;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0.4rem;
    padding: 0.28rem 0.42rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.16),
                inset 0 0 0 1px rgba(255,255,255,0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

.trust-badge img {
    height: 18px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    display: block;
}

.trust-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.trust-rating:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-1px);
}
.trust-rating .rating-stars {
    color: #fbbf24;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}
.trust-rating .rating-text { color: rgba(255,255,255,0.78); }
.trust-rating .rating-text strong { color: #fff; font-weight: 700; }
.trust-rating .rating-text span { opacity: 0.75; }

@media (max-width: 640px) {
    .footer-trust { gap: 0.4rem 0.5rem; padding-bottom: 0.85rem; margin-bottom: 0.55rem; }
    .trust-badge { padding: 0.2rem 0.28rem; border-radius: 0.32rem; }
    .trust-badge img { height: 16px; max-width: 50px; }
    .trust-rating { padding: 0.28rem 0.55rem; font-size: 0.72rem; }
    .trust-rating .rating-stars { font-size: 0.78rem; }
}

/* Eski footer-links-grid kuralları (geriye dönük uyumluluk için saklı) */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.25rem;
    width: 100%;
}

@media (min-width: 640px) {
    .footer-links-grid {
        grid-template-columns: 1fr 2fr 1.3fr;
        gap: 2rem;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: 1fr 2.2fr 1.4fr;
        gap: 3rem;
    }
}

/* Geniş sütun (Yasal): linkleri 2 alt sütuna böl */
.footer-links--wide .footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-links--wide .footer-link-list a {
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.2s, opacity 0.2s;
}

.footer-links--wide .footer-link-list a:hover {
    color: var(--color-white);
}

@media (min-width: 640px) {
    .footer-links--wide .footer-link-list {
        display: block;
        columns: 2;
        column-gap: 1.75rem;
    }
    .footer-links--wide .footer-link-list a {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-section a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.2s, opacity 0.2s;
}

.footer-links a:hover {
    color: var(--color-white);
    opacity: 1;
}

@media (max-width: 639px) {
    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .footer-links a {
        font-size: 0.82rem;
        padding: 0.25rem 0;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    line-height: 1.55;
}

.footer-bottom p {
    margin: 0.15rem 0;
}

.footer-disclaimer {
    color: rgba(255,255,255,0.68);
    font-size: 0.82rem;
    line-height: 1.75;
    text-align: center !important;
    max-width: none !important;
    margin: 0.5rem 0 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.92); }
.footer-disclaimer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.35);
}
.footer-disclaimer a:hover { color: #fff; border-bottom-color: #fff; }

/* Kurumsal Yasal Bilgiler Bloğu — Footer (LEGACY, artık kullanılmıyor; footer.disclaimer içine taşındı) */
.footer-legal-block { display: none; }

/* Ana Sayfa TikTok Bağımsızlık Uyarı Bandı */
.jc-disclaimer-banner {
    background: linear-gradient(90deg, #fff8e6 0%, #fff3d6 100%);
    border-top: 1px solid #f5d78a;
    border-bottom: 1px solid #f5d78a;
    color: #6a4a08;
    font-size: 0.85rem;
    padding: 0.65rem 0;
    line-height: 1.5;
}
.jc-disclaimer-banner p {
    margin: 0;
    text-align: center;
}
.jc-disclaimer-banner i {
    color: #d69a1f;
    margin-right: 0.35rem;
}
.jc-disclaimer-banner strong { color: #4a3400; }
@media (max-width: 640px) {
    .jc-disclaimer-banner { font-size: 0.78rem; padding: 0.55rem 0.35rem; }
}

/* Canlı Destek CTA — /canli-destek sayfası */
.jc-live-cta {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #fef2f4 0%, #fff 65%);
    border: 1px solid #fecdd3;
    border-left: 5px solid #FE2C55;
    border-radius: 14px;
    padding: 1.5rem 1.6rem;
    margin: 1.25rem 0 2rem;
    box-shadow: 0 8px 24px -12px rgba(254, 44, 85, 0.18);
}
.jc-live-cta-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FE2C55 0%, #ff5f7f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 20px -8px rgba(254, 44, 85, 0.55);
}
.jc-live-cta-body { flex: 1 1 auto; min-width: 0; }
.jc-live-cta-body h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: #1f2937;
}
.jc-live-cta-body > p {
    margin: 0 0 1rem;
    color: #4b5563;
    line-height: 1.55;
}
.jc-live-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #FE2C55 0%, #ff5f7f 100%);
    color: #fff;
    border: none;
    padding: 0.85rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    box-shadow: 0 10px 22px -10px rgba(254, 44, 85, 0.6);
}
.jc-live-cta-btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 28px -10px rgba(254, 44, 85, 0.7); }
.jc-live-cta-btn:active { transform: translateY(0); }
.jc-live-cta-note {
    margin: 0.9rem 0 0;
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.55;
}
.jc-live-cta-note a { color: #FE2C55; text-decoration: none; font-weight: 600; }
.jc-live-cta-note a:hover { text-decoration: underline; }
@media (max-width: 640px) {
    .jc-live-cta { flex-direction: column; padding: 1.15rem 1.1rem; }
    .jc-live-cta-icon { width: 54px; height: 54px; font-size: 1.4rem; }
    .jc-live-cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Ödeme Yöntemleri — Büyük Kart Görselli Grid
   ============================================================ */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 1.25rem 0 1.5rem;
}

.payment-method-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    border: 1px solid var(--color-border);
    border-radius: 0.95rem;
    padding: 1.4rem 1.2rem 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}

.payment-method-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
    box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}

.payment-method-card img {
    height: 78px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    margin: 0 auto 0.85rem;
    display: block;
}

.payment-method-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.payment-method-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   Müşteri Puanı Sayfası
   ============================================================ */
.rating-hero {
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fff4f6 100%);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem 1.6rem;
    margin: 1.25rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}
.rating-hero::before {
    content: '';
    position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244,63,94,0.45), transparent);
}
.rating-hero-score {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    line-height: 1;
}
.rating-hero-number {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff4d6d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.04em;
}
.rating-hero-out {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-weight: 600;
}
.rating-hero-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    margin-top: 0.4rem;
}
.rating-hero-meta {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin: 0.85rem 0 0;
}
.rating-hero-meta strong { color: var(--color-text); }

.rating-categories {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}
.rating-categories li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 0.65rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}
.rating-categories li strong { color: var(--color-primary); font-weight: 700; }

/* ============================================================
   Ana Sayfa SSS (FAQ) Bölümü — Accordion
   ============================================================ */
.faq-section {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
    position: relative;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244,63,94,0.25), transparent);
}

.faq-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.faq-eyebrow {
    display: inline-block;
    background: color-mix(in srgb, var(--color-primary) 12%, transparent);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}
.faq-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.faq-head p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}
.faq-head a { color: var(--color-primary); text-decoration: none; font-weight: 600; }
.faq-head a:hover { text-decoration: underline; }

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border: 1px solid var(--color-border);
    border-radius: 0.95rem;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04),
                inset 0 0 0 1px rgba(255,255,255,0.6);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
}

.faq-item:hover {
    border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}

.faq-item[open] {
    border-color: color-mix(in srgb, var(--color-primary) 45%, var(--color-border));
    box-shadow: 0 8px 24px rgba(244,63,94,0.10);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 3rem 1.1rem 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.02rem;
    line-height: 1.45;
    position: relative;
    user-select: none;
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-primary) 12%, transparent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.3s ease, background 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    background: var(--color-primary);
    color: #fff;
}

.faq-item summary:hover { color: var(--color-primary); }

.faq-body {
    padding: 0.2rem 1.4rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.96rem;
    border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
.faq-body p { margin: 0.6rem 0; }
.faq-body ul { padding-left: 1.25rem; margin: 0.6rem 0; }
.faq-body li { margin-bottom: 0.35rem; }
.faq-body strong { color: var(--color-text); }
.faq-body a { color: var(--color-primary); text-decoration: none; font-weight: 600; }
.faq-body a:hover { text-decoration: underline; }

.faq-cta {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}
.faq-cta a { color: var(--color-primary); font-weight: 600; text-decoration: none; }
.faq-cta a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .faq-section { padding: 3rem 0 3.5rem; }
    .faq-item summary { padding: 0.95rem 2.6rem 0.95rem 1.1rem; font-size: 0.96rem; }
    .faq-item summary::after { right: 0.85rem; width: 24px; height: 24px; font-size: 1.2rem; }
    .faq-body { padding: 0.15rem 1.1rem 1rem; font-size: 0.92rem; }
}

/* ============================================================
   Dil Seçici (Hamburger Yanı)
   ============================================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jcb-lng-wrap {
    position: relative;
}

.jcb-lng-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.55rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    color: var(--color-text);
    font-family: inherit;
}

.jcb-lng-btn:hover {
    background: rgba(15,23,42,0.06);
}

.jcb-lng-flag { font-size: 1.2rem; line-height: 1; }
.jcb-lng-code { font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--color-text); }
.jcb-lng-cur  { display: none !important; }
.jcb-lng-arrow { font-size: 0.85rem; color: var(--color-text-light); transition: transform 0.2s; }
.jcb-lng-btn[aria-expanded="true"] .jcb-lng-arrow { transform: rotate(180deg); }

.jcb-lng-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    min-width: 200px;
    max-height: 65vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    box-shadow: 0 18px 40px rgba(15,23,42,0.16);
    padding: 0.35rem;
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}

.jcb-lng-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.jcb-lng-menu button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 0.55rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.88rem;
    cursor: pointer;
    color: var(--color-text);
    font-family: inherit;
    transition: background 0.15s;
}

.jcb-lng-menu button:hover {
    background: rgba(244,63,94,0.07);
    color: var(--color-primary);
}

.jcb-lng-menu button > span:first-child { font-size: 1.05rem; line-height: 1; }
.jcb-lng-menu button > small {
    margin-left: auto;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.78rem;
}

@media (max-width: 540px) {
    .jcb-lng-btn { padding: 0.35rem 0.55rem 0.35rem 0.45rem; }
    .jcb-lng-code { font-size: 0.72rem; }
    .jcb-lng-menu { min-width: 180px; right: -0.5rem; }
}

/* ============================================================
   Satın Alma Modal
   ============================================================ */
.jc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.jc-modal[hidden] { display: none; }
.jc-modal.is-open { opacity: 1; pointer-events: auto; }

.jc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.jc-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    border-radius: 1.1rem;
    padding: 2rem 1.75rem 1.5rem;
    box-shadow: 0 24px 60px rgba(15,23,42,0.28),
                inset 0 0 0 1px rgba(255,255,255,0.6);
    transform: translateY(14px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.jc-modal.is-open .jc-modal-card {
    transform: translateY(0) scale(1);
}
.jc-modal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244,63,94,0.55), transparent);
    border-radius: 1px;
}

.jc-modal-close {
    position: absolute;
    top: 0.8rem; right: 0.85rem;
    width: 34px; height: 34px;
    border: none;
    background: rgba(15,23,42,0.06);
    color: var(--color-text);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.jc-modal-close:hover { background: rgba(15,23,42,0.12); transform: rotate(90deg); }

.jc-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}
.jc-modal-sub {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin: 0 0 1.2rem;
}

.jc-modal-pkg {
    background: linear-gradient(135deg, rgba(244,63,94,0.07), rgba(255,77,109,0.05));
    border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    margin-bottom: 1.25rem;
}
.jc-modal-pkg-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.jc-modal-pkg-icon svg { width: 38px; height: 38px; }
.jc-modal-pkg-meta { flex: 1; }
.jc-modal-pkg-coins {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}
.jc-modal-pkg-bonus {
    color: #10b981;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.15rem;
}
.jc-modal-pkg-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.jc-modal-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.45rem;
}

.jc-modal-search {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 0.65rem;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.jc-modal-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244,63,94,0.15);
}
.jc-modal-at {
    padding: 0 0.15rem 0 0.85rem;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 1rem;
}
.jc-modal-search input {
    flex: 1;
    padding: 0.75rem 0.5rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--color-text);
    font-family: inherit;
    outline: none;
}
.jc-modal-search-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0 1rem;
    align-self: stretch;
    cursor: pointer;
    transition: background 0.2s, filter 0.2s;
    font-size: 1rem;
}
.jc-modal-search-btn:hover { filter: brightness(1.08); }

.jc-modal-user-result { margin-top: 0.85rem; min-height: 0; }

.jc-modal-status {
    padding: 0.7rem 0.9rem;
    border-radius: 0.55rem;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.jc-modal-status.loading { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.jc-modal-status.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.jc-modal-user-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    background: #f7f8fb;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    position: relative;
}
.jc-modal-avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}
.jc-modal-user-info { flex: 1; min-width: 0; }
.jc-modal-user-name { font-weight: 700; color: var(--color-text); font-size: 0.98rem; }
.jc-modal-user-nick { display: none; }
.jc-modal-user-stats {
    display: flex; gap: 0.7rem; margin-top: 0.35rem;
    color: var(--color-text-light); font-size: 0.74rem;
}
.jc-modal-user-stats span { white-space: nowrap; }
.jc-modal-user-verified {
    display: none;
}

.jc-modal-checkout {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    gap: 0.5rem;
}
.jc-modal-checkout[disabled] { opacity: 0.55; cursor: not-allowed; }
.jc-modal-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.78rem;
    margin: 0.7rem 0 0;
}

body.jc-modal-open { overflow: hidden; }

@media (max-width: 540px) {
    .jc-modal-card { padding: 1.6rem 1.15rem 1.1rem; border-radius: 0.95rem; }
    .jc-modal-title { font-size: 1.2rem; }
    .jc-modal-user-stats {
        flex-wrap: nowrap;
        gap: 0.5rem;
        font-size: 0.68rem;
    }
    .jc-modal-user-stats span { flex: 0 0 auto; }
    .jc-modal-user-verified { font-size: 0.72rem; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none; }

@media (min-width: 1024px) {
    .lg-block { display: block; }
    .lg-hidden { display: none; }
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-name {
    font-weight: 700;
    color: var(--color-text);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.875rem;
}

.review-text {
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
}

/* Review Form */
.review-form-container {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .review-form-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

.review-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating i {
    color: #fbbf24;
    transition: transform 0.2s;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
}

.review-form .form-group {
    margin-bottom: 1rem;
}

.review-form .form-label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.review-form .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.review-form .form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.review-form .form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 0;
}

.star-rating .star {
    font-size: 1.75rem;
    color: var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f59e0b;
    transform: scale(1.1);
}

/* Page Section - SPA Pages */
.page-section {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.spa-back-link {
    margin-bottom: 1.5rem;
}

.spa-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.spa-back-link a:hover {
    background: var(--color-bg);
}

.content-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .content-card {
        padding: 1.5rem;
    }
}

.content-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.content-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-card h2:first-of-type {
    margin-top: 0;
}

.content-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card ul, .content-card ol {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-card li {
    margin-bottom: 0.5rem;
}

.content-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.content-card a:hover {
    text-decoration: underline;
}

.content-card strong {
    color: var(--color-text);
}

/* ============================================================
   İçerik Kutuları - Hafif İç Gradyan + Üst Işık Parlaması
   ============================================================ */
.content-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    padding: 1.5rem 1.75rem 1.25rem;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
                inset 0 0 0 1px rgba(255,255,255,0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.content-section:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06),
                inset 0 0 0 1px rgba(255,255,255,0.7);
    border-color: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
}

/* Üst kenarda ince ışık yansıması (refleks) */
.content-section::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.95) 50%,
        rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Üstten aşağı doğru ince parlama gradyanı */
.content-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.55) 0%,
        rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}

.content-section > * {
    position: relative;
    z-index: 1;
}

.content-section > h2 {
    margin-top: 0;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
    margin-bottom: 0.9rem;
}

.content-section > h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--color-primary);
    border-radius: 2px;
    vertical-align: -0.12em;
    margin-right: 0.6rem;
}

.content-section > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .content-section {
        padding: 1.15rem 1.15rem 0.9rem;
        border-radius: 0.7rem;
    }
}

/* ============================================================
   JC FORMS — İletişim / Destek Talebi / Destek Takibi
   ============================================================ */
.jc-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.jc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .jc-form-row { grid-template-columns: 1fr; }
}

.jc-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.jc-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.01em;
}

.jc-field input,
.jc-field select,
.jc-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 0.55rem;
    background: #fff;
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.jc-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.jc-field input:focus,
.jc-field select:focus,
.jc-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.jc-form-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.jc-form-actions .btn { gap: 0.5rem; }
.jc-form-actions .btn[disabled],
.jc-form-actions .btn.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.jc-form-feedback {
    padding: 0.75rem 1rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.jc-form-feedback i { margin-top: 0.18rem; }

.jc-feedback-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.jc-feedback-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.jc-feedback-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* Talep durum kartı */
.jc-ticket-card { margin-top: 1.25rem; }
.jc-ticket-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: var(--color-text-light);
}
.jc-ticket-meta strong { color: var(--color-text); }

.jc-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.jc-badge.st-new        { background: #dbeafe; color: #1e40af; }
.jc-badge.st-progress   { background: #fef3c7; color: #92400e; }
.jc-badge.st-waiting    { background: #fce7f3; color: #9d174d; }
.jc-badge.st-resolved   { background: #d1fae5; color: #065f46; }
.jc-badge.st-closed     { background: #e5e7eb; color: #374151; }

.jc-timeline {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    position: relative;
}
.jc-timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 4px; bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), rgba(244,63,94,0.15));
    border-radius: 1px;
}
.jc-timeline-item {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.75rem;
    color: var(--color-text-light);
}
.jc-timeline-item strong { color: var(--color-text); }
.jc-timeline-dot {
    position: absolute;
    left: 0; top: 0.7rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244,63,94,0.12);
}
.jc-timeline-item.st-closed .jc-timeline-dot   { border-color: #6b7280; box-shadow: 0 0 0 3px rgba(107,114,128,0.15); }
.jc-timeline-item.st-resolved .jc-timeline-dot { border-color: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.jc-timeline-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.1rem;
}


/* SEO sayfası alt CTA */
.seo-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.seo-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    width: 40px;
    text-align: center;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    margin-top: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* News Items */
.news-item {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-primary);
}

.news-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-text);
}

.news-item p {
    margin: 0;
}

/* SPA Styles removed - using full page view */

/* ==================== SEPET SAYFASI ==================== */
.cart-page {
    min-height: calc(100vh - 150px);
    padding: 2rem 0;
    background: var(--color-bg);
}

.cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.cart-header .back-link:hover {
    color: var(--color-primary);
}

.cart-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.cart-header p {
    color: var(--color-text-light);
}

.success-notification {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #059669;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.success-notification.show {
    display: flex;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

.cart-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.cart-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-card-header .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.cart-card-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.search-box button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border: none;
    border-radius: 0.375rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.search-box button:hover {
    background: var(--color-primary-hover);
}

.user-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-light);
}

.user-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* User Found Card */
.user-found-card {
    background: var(--color-bg);
    border-radius: 0.75rem;
    padding: 1rem;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    object-fit: cover;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.user-nickname {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 0.5rem;
}

.user-stats .stat-item {
    text-align: center;
}

.user-stats .stat-label {
    font-size: 0.65rem;
    color: var(--color-text-light);
}

.user-stats .stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Order Summary */
.order-card {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0.5rem;
}

.delete-btn:hover {
    color: var(--color-primary);
}

.order-summary-box {
    background: var(--color-bg);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.tiktok-logo-summary {
    display: block;
    margin: 0 auto 1rem;
    width: 80px;
    height: auto;
}

.jeton-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.coin-icon-small {
    width: 28px;
    height: 28px;
}

.bonus-text {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

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

.checkout-note {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}



/* ==================== MOBİL UYUM (Genel İyileştirmeler) ==================== */
@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        padding: 2rem 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats {
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .live-purchases {
        padding: 1rem 1.25rem;
        max-width: 100%;
    }

    .live-header {
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }

    .live-title {
        font-size: 0.95rem;
    }

    .live-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    .packages-wrapper {
        padding: 0 0.5rem;
    }

    .cart-page {
        padding: 1rem 0;
    }

    .cart-card {
        padding: 1.25rem;
    }

    .cart-header h1 {
        font-size: 1.5rem;
    }

    .content-card h1 {
        font-size: 1.5rem;
    }

    .content-card h2 {
        font-size: 1.15rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-grid {
        gap: 1.75rem;
        margin-bottom: 2rem;
    }

    .footer-links-grid {
        gap: 1.25rem;
    }

    .footer-links h4 {
        font-size: 0.95rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

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

    .stat-value {
        font-size: 1.15rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    .live-purchases {
        padding: 0.9rem 1rem;
    }

    .contact-info-grid {
        gap: 0.75rem;
    }

    .contact-item {
        padding: 0.85rem;
    }
}

/* ==================== CANLI DESTEK BUTONU ==================== */
.live-support {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #FE2C55 0%, #c3194a 100%);
    color: #fff;
    border: none;
    text-decoration: none;
    padding: 0.85rem 1.25rem 0.85rem 1.1rem;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 28px rgba(254, 44, 85, 0.45), 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.live-support i {
    font-size: 1.4rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.live-support-text {
    line-height: 1;
    position: relative;
    z-index: 1;
}

.live-support:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 34px rgba(254, 44, 85, 0.55), 0 6px 14px rgba(0,0,0,0.10);
    color: #fff;
}

.live-support:active {
    transform: translateY(-1px) scale(1.01);
}

.live-support-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(254, 44, 85, 0.55);
    z-index: 0;
    animation: livePulse 2s infinite;
    pointer-events: none;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 639px) {
    .live-support {
        right: 0.9rem;
        bottom: 0.9rem;
        padding: 0;
        width: 56px;
        height: 56px;
        justify-content: center;
        gap: 0;
        font-size: 0;
    }

    .live-support i {
        font-size: 1.7rem;
    }

    .live-support-text {
        display: none;
    }

    body {
        padding-bottom: 76px;
    }
}

/* ============================================================
   Hero Slider (3 görsel carousel) — Mobil/Tablet/Desktop responsive
   Görseller cover/contain karması ile koyu fon üzerinde sığar, kırılma olmaz
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    margin: 0 0 1.25rem;
    background: #0a0a1a;
    overflow: hidden;
    /* Desktop varsayılan oran: ~16:9 (hero-1 ve hero-3 ile uyumlu) */
    aspect-ratio: 1717 / 916;
    max-height: 620px;
}
.hero-slider-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #0a0a1a;
}

/* Ok butonları */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.18s, opacity 0.18s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-slider-arrow:hover {
    background: rgba(254, 44, 85, 0.85);
    transform: translateY(-50%) scale(1.05);
}
.hero-slider-arrow--prev { left: 14px; }
.hero-slider-arrow--next { right: 14px; }

/* Dotlar */
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.18s, width 0.18s;
}
.hero-dot.is-active {
    background: #fff;
    width: 22px;
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
    .hero-slider {
        aspect-ratio: 1717 / 916;
        max-height: 520px;
    }
}

/* Mobil */
@media (max-width: 640px) {
    .hero-slider {
        /* Mobilde biraz daha uzun göster (kullanıcı isteği) */
        aspect-ratio: 4 / 3;
        max-height: 560px;
        margin-bottom: 0.5rem;
        background: #0a0a1a;
    }
    /* Slaytlar mobilde alt 28px açık bırakır → dots oraya yerleşir */
    .hero-slide {
        bottom: 28px;
    }
    /* Mobilde sol/sağ ok butonlarını gizle */
    .hero-slider-arrow {
        display: none !important;
    }
    /* Dots: görsele binmesin diye en alta yerleşir, transparan zemin */
    .hero-slider-dots {
        bottom: 6px;
        padding: 4px 8px;
        gap: 6px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .hero-dot {
        width: 7px;
        height: 7px;
        background: rgba(255,255,255,0.55);
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .hero-dot.is-active {
        width: 18px;
        background: #fff;
    }
    /* Paketler bölümünün üst boşluğunu kısalt */
    .packages,
    .packages-section,
    section.packages {
        padding-top: 1rem !important;
        margin-top: 0 !important;
    }
}

/* Çok küçük mobil (≤380px) */
@media (max-width: 380px) {
    .hero-slider {
        aspect-ratio: 1717 / 916;
        max-height: 400px;
    }
}

/* ============================================================
   BLOG & KAMPANYA SAYFALARI (pages-blog.js)
   ============================================================ */

/* Blog meta bar (etiket, tarih, okuma süresi) */
.jc-blog-meta {
    display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center;
    font-size: 0.8rem; color: #6b7280; margin: 0 0 0.9rem;
}
.jc-blog-tag {
    background: #fdecef; color: #FE2C55; padding: 0.22rem 0.65rem;
    border-radius: 999px; font-weight: 700; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.jc-blog-date, .jc-blog-read { position: relative; }
.jc-blog-date::before, .jc-blog-read::before {
    content: "•"; margin-right: 0.55rem; color: #cbd5e1;
}

.jc-blog-lead {
    font-size: 1.1rem; line-height: 1.65; color: #374151;
    padding: 0.85rem 1.1rem; background: #f8fafc; border-left: 4px solid #FE2C55;
    border-radius: 8px; margin: 1rem 0 1.5rem;
}

/* Paket karşılaştırma tablosu */
.jc-pkg-table-wrap {
    overflow-x: auto; margin: 1rem 0 1.5rem;
    border-radius: 12px; border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px -8px rgba(0,0,0,0.06);
}
.jc-pkg-table {
    width: 100%; border-collapse: collapse; min-width: 520px;
    font-size: 0.92rem; background: #fff;
}
.jc-pkg-table thead th {
    background: linear-gradient(180deg, #fef2f4 0%, #fff 100%);
    color: #1f2937; font-weight: 700; text-align: left;
    padding: 0.85rem 1rem; border-bottom: 2px solid #FE2C55;
    font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.02em;
}
.jc-pkg-table tbody td {
    padding: 0.75rem 1rem; border-bottom: 1px solid #f1f5f9;
    color: #374151;
}
.jc-pkg-table tbody tr:hover { background: #fafbfc; }
.jc-pkg-table tbody tr:last-child td { border-bottom: none; }
.jc-pkg-table .jc-bonus-cell {
    color: #10b981; font-weight: 700;
}
.jc-pkg-table tr.is-best {
    background: linear-gradient(90deg, #fff8e6 0%, #fffdf5 100%);
}
.jc-pkg-table tr.is-best td { color: #6a4a08; }

/* Mini paket kartları (3'lü grid, kampanya vitrini) */
.jc-mini-pkg-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; margin: 1rem 0 1.5rem;
}
.jc-mini-pkg {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
    padding: 1.15rem 1.1rem; text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.jc-mini-pkg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -14px rgba(254, 44, 85, 0.35);
    border-color: #fecdd3;
}
.jc-mini-pkg-top { margin-bottom: 0.35rem; }
.jc-mini-pkg-coins {
    font-size: 1.75rem; font-weight: 800; color: #1f2937;
    line-height: 1.1;
}
.jc-mini-pkg-label {
    font-size: 0.78rem; color: #6b7280; text-transform: uppercase;
    letter-spacing: 0.05em; font-weight: 600;
}
.jc-mini-pkg-bonus {
    display: inline-block; background: #ecfdf5; color: #059669;
    font-weight: 700; font-size: 0.86rem;
    padding: 0.2rem 0.7rem; border-radius: 999px; margin: 0.35rem 0 0.6rem;
}
.jc-mini-pkg-total { color: #4b5563; font-size: 0.86rem; margin-bottom: 0.6rem; }
.jc-mini-pkg-price {
    font-size: 1.35rem; font-weight: 800; color: #FE2C55; margin-bottom: 0.85rem;
}
.jc-mini-pkg-btn {
    display: inline-block; background: linear-gradient(135deg, #FE2C55 0%, #ff5f7f 100%);
    color: #fff !important; text-decoration: none; font-weight: 700;
    padding: 0.55rem 1.15rem; border-radius: 999px; font-size: 0.88rem;
    transition: filter 0.15s, transform 0.15s;
    box-shadow: 0 8px 18px -10px rgba(254,44,85,0.55);
}
.jc-mini-pkg-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

@media (max-width: 720px) {
    .jc-mini-pkg-grid { grid-template-columns: 1fr; }
}

/* Blog CTA butonu bloğu */
.jc-blog-cta {
    background: linear-gradient(135deg, #fff8f9 0%, #fff 100%);
    border: 1px dashed #fecdd3; border-radius: 14px;
    padding: 1.4rem 1.5rem; text-align: center; margin: 2rem 0 1rem;
}
.jc-blog-cta p { margin: 0 0 0.85rem; font-size: 1.05rem; color: #374151; }

/* Kampanya sayfası hero */
.jc-campaign-hero {
    background: linear-gradient(135deg, #FE2C55 0%, #ff5f7f 60%, #ffb199 100%);
    color: #fff; border-radius: 18px;
    padding: 2rem 1.75rem; margin: 0 0 1.5rem;
    text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 18px 40px -18px rgba(254,44,85,0.55);
}
.jc-campaign-hero h1 { color: #fff; margin: 0.4rem 0 0.7rem; font-size: 1.85rem; }
.jc-campaign-hero .jc-campaign-sub {
    color: rgba(255,255,255,0.94); font-size: 1.02rem; line-height: 1.6;
    max-width: 720px; margin: 0 auto;
}
.jc-campaign-badge {
    display: inline-block; background: rgba(255,255,255,0.22);
    color: #fff; padding: 0.32rem 0.85rem; border-radius: 999px;
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
}

/* Kampanya öne çıkan kartlar (3'lü) */
.jc-campaign-highlights {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem; margin: 1rem 0 1.5rem;
}
.jc-campaign-card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
    padding: 1.35rem 1.2rem; display: flex; flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.jc-campaign-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -14px rgba(0,0,0,0.12);
}
.jc-campaign-card.is-featured {
    background: linear-gradient(180deg, #fef2f4 0%, #fff 60%);
    border-color: #FE2C55; border-width: 2px;
    box-shadow: 0 16px 40px -16px rgba(254,44,85,0.35);
}
.jc-campaign-card-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
    font-weight: 800; color: #FE2C55; margin-bottom: 0.55rem;
}
.jc-campaign-card h3 { margin: 0 0 0.55rem; font-size: 1.15rem; color: #1f2937; line-height: 1.35; }
.jc-campaign-card-price {
    font-size: 1.65rem; font-weight: 800; color: #FE2C55;
    margin: 0.35rem 0 0.75rem;
}
.jc-campaign-card p { flex: 1; color: #4b5563; margin: 0 0 0.9rem; font-size: 0.93rem; line-height: 1.55; }
.jc-campaign-card .btn { align-self: flex-start; }

@media (max-width: 900px) {
    .jc-campaign-highlights { grid-template-columns: 1fr; }
}

/* Kampanya tek büyük highlight (deneme paketi vb.) */
.jc-campaign-highlight-single {
    display: flex; gap: 1.5rem; align-items: center;
    background: #fff; border: 1px solid #fecdd3; border-radius: 16px;
    padding: 1.35rem 1.5rem; margin: 1rem 0 1.5rem;
    border-left: 5px solid #FE2C55;
}
.jc-campaign-single-left { flex: 1; }
.jc-campaign-single-left h3 { margin: 0.35rem 0 0.55rem; color: #1f2937; }
.jc-campaign-single-left ul { margin: 0.4rem 0 0; padding-left: 1.15rem; }
.jc-campaign-single-left li { color: #4b5563; font-size: 0.94rem; padding: 0.2rem 0; }
.jc-campaign-single-right { text-align: center; }
.jc-campaign-single-right .jc-campaign-card-price { margin-bottom: 0.85rem; }
@media (max-width: 720px) {
    .jc-campaign-highlight-single { flex-direction: column; align-items: stretch; }
    .jc-campaign-single-right { text-align: left; }
}

/* Blog liste kartları */
.jc-blog-list {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem; margin: 1rem 0 2rem;
}
.jc-blog-item {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
    padding: 1.15rem 1.2rem;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.jc-blog-item:hover {
    transform: translateY(-3px); border-color: #fecdd3;
    box-shadow: 0 14px 30px -14px rgba(254,44,85,0.28);
}
.jc-blog-item-tag {
    align-self: flex-start;
    background: #fdecef; color: #FE2C55;
    padding: 0.2rem 0.7rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em;
    text-transform: uppercase; margin-bottom: 0.7rem;
}
.jc-blog-item--campaign .jc-blog-item-tag {
    background: linear-gradient(90deg, #fff8e6 0%, #ffe3ec 100%);
    color: #b8280d;
}
.jc-blog-item h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: #1f2937; line-height: 1.4; }
.jc-blog-item p { color: #6b7280; font-size: 0.9rem; line-height: 1.55; margin: 0 0 0.85rem; flex: 1; }
.jc-blog-item-more { color: #FE2C55; font-weight: 700; font-size: 0.88rem; }

@media (max-width: 900px) {
    .jc-blog-list { grid-template-columns: 1fr; }
}

/* ==================== HEADER DARK THEME (Store-Games Logo Uyumlu) ==================== */
.header {
    background: #0f172a !important;                       /* Koyu lacivert-siyah — logo arka planı ile birebir uyumlu */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

/* Hamburger menü çubukları beyaz */
.header .hamburger span {
    background: #fff !important;
}
.header .hamburger:hover,
.header .hamburger:active {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Dil seçici butonu (üst nav'da görünen) — beyaz metin */
.header .jcb-lng-btn {
    color: #fff !important;
}
.header .jcb-lng-btn:hover {
    background: rgba(255, 255, 255, 0.10) !important;
}
.header .jcb-lng-code,
.header .jcb-lng-arrow {
    color: #fff !important;
}

/* Header nav linkleri (slide-in menu içinde) - orijinal beyaz zemin korunuyor,
   sadece üst çubuktakini etkiliyoruz */

/* Logo container: bağlantıya minimal padding */
.header .logo {
    padding: 4px 0;
}

/* ============================================================================
   STORE GAMES — TAM KOYU TEMA (Global Dark Theme)
   Sitenin genelini koyu paletle örter. 3d_dogrulama.php bu CSS'i yüklemediği
   için otomatik olarak hariçtir. Ayrıca .no-dark class'ı ile içerik özelinde
   koyulaştırma iptal edilebilir.
   ============================================================================ */

:root {
    /* Ana palette - koyu tema */
    --color-primary: #f43f5e;
    --color-primary-hover: #e11d48;
    --color-secondary: #14b8a6;
    --color-text: #f1f5f9;              /* Beyaz text (was: #1e293b) */
    --color-text-light: #94a3b8;        /* Muted text (was: #64748b) */
    --color-bg: #0f172a;                /* Ana zemin - koyu lacivert (was: #f8fafc) */
    --color-white: #1e293b;             /* Kart/panel arka planı (was: #ffffff) */
    --color-border: #334155;            /* Border (was: #e2e8f0) */
    --color-success: #10b981;
    --color-surface-elevated: #273449;  /* Yüksek yüzeyler (dropdown, modal) */
}

html, body {
    background-color: #0f172a !important;
    color: #f1f5f9;
}

/* Hardcoded beyaz zemin kullanan yapıları koyulaştır */
.card,
.package-card,
.paket-card,
.pkg-card,
.feature-card,
.info-card,
.faq-item,
.faq-body,
.container-card,
.content-card,
section.section,
.seo-content-section {
    background-color: #1e293b !important;
    color: #f1f5f9;
    border-color: #334155 !important;
}

/* SEO içerik bölümü (footer üstü) — özel arka plan zaten f8fafc idi */
.seo-content-section {
    background: #0b1220 !important;
    border-top: 1px solid #1e293b !important;
    color: #cbd5e1 !important;
}
.seo-content-section h2,
.seo-content-section h3 {
    color: #f8fafc !important;
}

/* Genel başlıklar & metinler */
h1, h2, h3, h4, h5, h6 {
    color: #f8fafc;
}
p, li, span, td, th, label, small {
    color: #e2e8f0;
}
strong, b { color: #f8fafc; }

/* Link renkleri (marka pembe/kırmızı korunur) */
a {
    color: #f43f5e;
}
a:hover {
    color: #ff6b81;
}

/* Ana sayfa "Neden Store Games?" kutuları vb. */
.features-grid > *,
.reasons-grid > *,
.testimonials-grid > *,
.reviews-grid > *,
.rating-item,
.review-card,
.testimonial-card {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border-color: #334155 !important;
}

/* Butonlar - primary CTA korunur (kırmızı gradient). Secondary butonlar koyulaştırılır */
.btn-secondary,
.button-secondary,
.btn.btn-secondary {
    background: #334155 !important;
    color: #f1f5f9 !important;
    border: 1px solid #475569 !important;
}
.btn-secondary:hover {
    background: #475569 !important;
}

/* Input / textarea / select */
input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]),
textarea,
select {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155 !important;
}
input::placeholder,
textarea::placeholder {
    color: #64748b !important;
}
input:focus,
textarea:focus,
select:focus {
    border-color: #f43f5e !important;
    outline: none;
}

/* FAQ (details/summary) - accordion */
details.faq-item {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}
details.faq-item > summary {
    color: #f8fafc !important;
    padding: 1rem;
}
details.faq-item > summary:hover {
    background: #263449;
}
details.faq-item .faq-body {
    color: #cbd5e1;
    padding: 0 1rem 1rem;
    background: transparent !important;
}

/* Footer - zaten koyu tema (siteyle uyumlu tut) */
.footer,
footer.footer {
    background: #050b17 !important;
    color: #cbd5e1 !important;
    border-top: 1px solid #1e293b !important;
}
.footer a { color: #cbd5e1 !important; }
.footer a:hover { color: #f43f5e !important; }
.footer-disclaimer { color: #94a3b8 !important; }
.footer-disclaimer strong { color: #f1f5f9 !important; }

/* Hero slider (paket indirim banner) - koyu zaten */

/* Dil seçici dropdown menü */
.jcb-lng-menu {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55) !important;
}
.jcb-lng-menu button,
.jcb-lng-menu a {
    color: #f1f5f9 !important;
}
.jcb-lng-menu button:hover,
.jcb-lng-menu a:hover {
    background: #334155 !important;
}

/* Slide-in nav menu (hamburger açılınca gelen) */
.nav {
    background: #0f172a !important;
    color: #f1f5f9 !important;
    border-left: 1px solid #1e293b !important;
}
.nav a { color: #f1f5f9 !important; }
.nav a:hover,
.nav a.active { color: #f43f5e !important; }

/* Paket / kart fiyat text ve badge'ler */
.package-card .price,
.pkg-card .price,
.paket-card .price {
    color: #f43f5e !important;
}
.package-card .old-price,
.pkg-card .old-price,
.paket-card .old-price {
    color: #64748b !important;
    text-decoration: line-through;
}
.bonus-badge,
.package-card .bonus,
.pkg-card .bonus {
    color: #10b981 !important;
}

/* Slider oklar */
.slider-arrow,
.hero-arrow,
.carousel-arrow {
    background: rgba(30, 41, 59, 0.7) !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155 !important;
}
.slider-arrow:hover {
    background: rgba(51, 65, 85, 0.85) !important;
}

/* Modal / overlay */
.modal,
.overlay-card {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155 !important;
}

/* Payment method logos wrap */
.pay-soon,
.payment-methods {
    background: #050b17 !important;
    border-color: #1e293b !important;
}

/* Kod blokları */
code, pre {
    background: #050b17 !important;
    color: #a5f3fc !important;
    border: 1px solid #1e293b !important;
}

/* Table */
table {
    background: #1e293b !important;
    color: #f1f5f9 !important;
}
th, td {
    border-color: #334155 !important;
}
tr:nth-child(even) {
    background: #263449 !important;
}

/* Tooltip / notification */
.tooltip, .notification {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155 !important;
}

/* Scrollbar - webkit */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Selection */
::selection {
    background: #f43f5e;
    color: #fff;
}

/* ============================================================================
   DARK THEME FIX-UPS (kontrast düzeltmeleri)
   ============================================================================ */

/* TikTok SVG logo — orijinal SVG'de "TikTok" harfleri fill="#000" siyah renkli.
   Koyu zeminde okunmuyor. Beyaz'a çevir. */
.package-tiktok-logo path[fill="#000"],
.tiktok-logo-summary path[fill="#000"],
svg[class*="tiktok"] path[fill="#000"],
svg.package-tiktok-logo path[fill="black"] {
    fill: #f8fafc !important;
}

/* Paket kartlarındaki jeton adet metni ve fiyatı */
.package-card, .paket-card, .pkg-card {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.package-card:hover, .paket-card:hover, .pkg-card:hover {
    border-color: #f43f5e !important;
    box-shadow: 0 8px 24px rgba(244,63,94,0.15), 0 0 0 1px rgba(244,63,94,0.3) inset;
}
.package-coins, .package-price, .paket-fiyat {
    color: #f8fafc !important;
}

/* FAQ başlığı — daha belirgin hale getir */
.faq-head h2,
.faq-head h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(244,63,94,0.15);
}
.faq-head p {
    color: #cbd5e1 !important;
}

/* Section title genel (footer üstü SEO bölümü haricindeki tüm bölüm başlıkları) */
.section-title {
    color: #ffffff !important;
}
.section-desc {
    color: #cbd5e1 !important;
}

/* Ana sayfa "Neden Store Games?" ve benzer feature grid kartları */
.reason-card, .feature-item, .why-us-item {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155 !important;
}
.reason-card h3, .feature-item h3, .why-us-item h3 {
    color: #f8fafc !important;
}
.reason-card p, .feature-item p, .why-us-item p {
    color: #cbd5e1 !important;
}

/* Icon renkli kutucuklar (gradient background'lı olanlar korunur) */
.reason-icon, .feature-icon {
    /* background genelde renkli gradient - dokunma */
}

/* "TikTok" markası bildirim bandı (Bağımsızlık uyarısı) */
.tiktok-independence-banner,
.independence-notice {
    background: #1e293b !important;
    color: #cbd5e1 !important;
    border: 1px solid #334155 !important;
    border-left: 4px solid #f43f5e !important;
}

/* Yorum kartları (müşteri yorumları) */
.review-card, .comment-card, .testimonial {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    border: 1px solid #334155 !important;
}
.review-card .reviewer-name,
.testimonial .name {
    color: #f8fafc !important;
}
.review-card .review-text,
.testimonial .content {
    color: #cbd5e1 !important;
}
.review-card .rating-stars {
    color: #fbbf24 !important;
}

/* Blog kartları */
.blog-card, .article-card {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
}
.blog-card h3, .article-card h3 {
    color: #f8fafc !important;
}
.blog-card p, .article-card p {
    color: #cbd5e1 !important;
}

/* Rating skoru büyük başlık */
.rating-hero-out {
    color: #cbd5e1 !important;
}
.rating-hero-count {
    color: #94a3b8 !important;
}

/* ============================================================================
   BEYAZ SECTION BACKGROUND'LARINI KOYULAŞTIR (dark theme final override)
   ============================================================================ */

.packages-section,
.faq-section,
.reviews-section,
.rating-hero,
.summary-section,
.page-section,
.content-section,
.info-section,
.features-section,
.reasons-section,
.testimonials-section,
.stats-section,
.why-us-section,
.trust-section,
.support-banner-section,
section.section {
    background: #0f172a !important;
    background-image: none !important;
}

/* Section decorative ::before öğeleri (renkli overlay'ler) — ya kaldır ya koyulaştır */
.faq-section::before,
.reviews-section::before,
.rating-hero::before {
    background: rgba(244, 63, 94, 0.05) !important;
    opacity: 0.5;
}

/* Ana Sayfa TikTok Bağımsızlık Bandı (renkli sarı-krem gradient'i koyulaştır) */
.tiktok-independence-banner,
[class*="independence"],
.disclaimer-banner {
    background: #1e293b !important;
    background-image: none !important;
    color: #cbd5e1 !important;
    border: 1px solid #334155 !important;
    border-left: 4px solid #f59e0b !important;
}
.tiktok-independence-banner strong,
.disclaimer-banner strong { color: #fbbf24 !important; }

/* Rating hero başlık ve yıldızlar */
.rating-hero {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

/* Testimonial / review section decorative gradient temizle */
.reviews-section {
    background: #0f172a !important;
}

/* ============================================================================
   ALT SAYFALAR (SPA) — DARK THEME KART DÜZELTMESİ
   .content-section wrapContentSections() ile otomatik oluşturulur.
   Ayrıca inline style'lı açık zeminli kutuların hepsi koyulaştırılır.
   ============================================================================ */

/* .content-section — SPA sayfalarındaki her H2 bloğunun otomatik sarıldığı kart */
.content-section {
    background: linear-gradient(180deg, #1e293b 0%, #172033 100%) !important;
    border: 1px solid #334155 !important;
    color: #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25),
                inset 0 0 0 1px rgba(255,255,255,0.03) !important;
}

.content-section:hover {
    border-color: rgba(244, 63, 94, 0.4) !important;
    box-shadow: 0 8px 24px rgba(244, 63, 94, 0.08),
                inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}

/* Üst refleks çizgileri — beyaz yerine hafif pembe */
.content-section::before {
    background: linear-gradient(90deg,
        rgba(244,63,94,0) 0%,
        rgba(244,63,94,0.35) 50%,
        rgba(244,63,94,0) 100%) !important;
}

/* Üst parlama — beyaz yerine karanlık ambient */
.content-section::after {
    background: linear-gradient(180deg,
        rgba(255,255,255,0.03) 0%,
        rgba(255,255,255,0) 100%) !important;
}

.content-section > h2 {
    color: #f8fafc !important;
    border-bottom: 1px solid rgba(244, 63, 94, 0.25) !important;
}

.content-section > h2::before {
    background: linear-gradient(180deg, #f43f5e 0%, #ec4899 100%) !important;
}

.content-section > h3 {
    color: #f1f5f9 !important;
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.content-section > p,
.content-section > ul li,
.content-section > ol li {
    color: #cbd5e1 !important;
    line-height: 1.75;
}

.content-section > ul,
.content-section > ol {
    padding-left: 1.5rem;
}

.content-section > ul li,
.content-section > ol li {
    margin-bottom: 0.35rem;
}

.content-section strong,
.content-section b {
    color: #f8fafc !important;
    font-weight: 700;
}

.content-section a {
    color: #f472b6 !important;
    text-decoration: underline;
    text-decoration-color: rgba(244, 114, 182, 0.4);
}
.content-section a:hover {
    color: #f9a8d4 !important;
    text-decoration-color: rgba(244, 114, 182, 0.8);
}

/* SPA sayfa H1 (başlık) */
#spaPageContent > h1 {
    color: #ffffff !important;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #334155;
    position: relative;
}
#spaPageContent > h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #f43f5e 0%, #ec4899 100%);
}

/* SPA content container'ı */
#spaPageContainer {
    background: #0f172a !important;
    color: #f1f5f9 !important;
    padding: 2rem 1rem 4rem;
    min-height: 60vh;
}

#spaPageContent {
    max-width: 900px;
    margin: 0 auto;
}


/* ============================================================================
   İNLİNE STİLLERLE YAZILMIŞ AÇIK RENKLİ KART/BOX'LARI KOYULAŞTIR
   (Kurumsal sayfasındaki corporate-identity-card gibi.)
   ============================================================================ */

/* Beyaz / açık gri arka planlar → koyu kart */
[style*="background:#fff"],
[style*="background: #fff"],
[style*="background-color:#fff"],
[style*="background-color: #fff"],
[style*="background:#ffffff"],
[style*="background: #ffffff"],
[style*="background:#f8fafc"],
[style*="background: #f8fafc"],
[style*="background-color:#f8fafc"],
[style*="background:#f9fafb"],
[style*="background: #f9fafb"],
[style*="background:#f7f8fb"],
[style*="background: #f7f8fb"],
[style*="background:#f1f5f9"],
[style*="background:#e2e8f0"],
[style*="background:#e0f2fe"],
[style*="background:#dbeafe"],
[style*="background:#fce7f3"],
[style*="background:#fef3c7"],
[style*="background:#fef2f2"],
[style*="background:#fff8e6"],
[style*="background: #fff8e6"],
[style*="background:#ecfdf5"],
[style*="background:#f0fdf4"] {
    background: #1e293b !important;
    color: #e2e8f0 !important;
    border-color: #334155 !important;
}

/* Kurumsal identity kartı — özel */
.corporate-identity-card {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    color: #e2e8f0 !important;
}
.corporate-identity-card h2 {
    color: #f8fafc !important;
    border-bottom: 1px solid #334155;
    padding-bottom: 0.5rem;
    margin-bottom: 0.85rem;
}
.corporate-identity-card p {
    color: #cbd5e1 !important;
    margin: 0.35rem 0;
}
.corporate-identity-card strong {
    color: #f8fafc !important;
}
.corporate-identity-card a {
    color: #f472b6 !important;
}

/* Bağımsızlık bildirimi (sarı-krem uyarı bandı) — sadece corporate/disclaimer-banner
   class'lı elementleri hedefle. .footer-disclaimer'ı ETKILEMEZ. */
.corporate-disclaimer,
.disclaimer-banner,
[class*="disclaimer"]:not(.footer-disclaimer):not(.footer-disclaimer *) {
    background: #1e293b !important;
    color: #cbd5e1 !important;
    border-left: 4px solid #f59e0b !important;
    border-top: 1px solid #334155 !important;
    border-right: 1px solid #334155 !important;
    border-bottom: 1px solid #334155 !important;
}
.corporate-disclaimer strong,
.disclaimer-banner strong,
[class*="disclaimer"]:not(.footer-disclaimer):not(.footer-disclaimer *) strong {
    color: #fbbf24 !important;
}

/* İçindeki metinlerin RGB inline style'ları için */
[style*="color:#5a3f00"],
[style*="color: #5a3f00"] {
    color: #fcd34d !important;  /* Sarı uyarı text */
}
[style*="color:#1e293b"],
[style*="color: #1e293b"] {
    color: #f1f5f9 !important;
}
[style*="color:#334155"] {
    color: #cbd5e1 !important;
}
[style*="color:#64748b"] {
    color: #94a3b8 !important;
}

/* Iletişim, KVKK, destek formları için tablo ve list */
.content-section table {
    background: rgba(15, 23, 42, 0.5) !important;
    border: 1px solid #334155 !important;
    color: #e2e8f0 !important;
}
.content-section table th {
    background: #263449 !important;
    color: #f8fafc !important;
    border-bottom: 1px solid #334155 !important;
}
.content-section table td {
    border-top: 1px solid #334155 !important;
    color: #cbd5e1 !important;
}

/* SPA sayfa scroll spacing */
#spaPageContainer .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================================================
   MOBİLE — Kullanıcı Fix'leri (Logo, Footer, SPA Wrapper)
   ============================================================================ */

@media (max-width: 768px) {

    /* --- Fix 2: Mobilde header ve logo daha küçük ---
       Önceki: header 88px, logo 58px — çok yer kaplıyor.
       Yeni:    header 64px, logo 44px — kompakt ve okunabilir. */
    .header {
        height: 64px !important;
    }
    body {
        padding-top: 64px !important;
    }
    .header-logo {
        height: 44px !important;
    }

    /* --- Fix 3: Footer-disclaimer mobilde full-width, sağ/sol boşluk yok --- */
    .footer .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .footer-disclaimer {
        padding: 0 !important;
        margin: 0.5rem 0 0 !important;
        font-size: 0.72rem !important;
        line-height: 1.55 !important;
        text-align: justify !important;
        text-align-last: left !important;
        hyphens: auto !important;
        word-break: break-word !important;
        border: none !important;
        background: transparent !important;
        max-width: none !important;
    }
    .footer-disclaimer a {
        word-break: break-all;
    }

    /* --- Fix 4: SPA sayfalarını saran dış kutu yok, her .content-section
              doğrudan sayfa arka planında yüzsün --- */
    #spaPageContainer {
        padding: 1rem 0.5rem 3rem !important;
        background: #0f172a !important;
    }
    #spaPageContent {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }
    .page-section {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    /* Her content-section (h2 kartı) doğrudan viewport'ta yüzsün,
       aralarında hafif boşluk kalsın */
    .content-section {
        margin: 0.75rem 0 !important;
        border-radius: 0.75rem !important;
        padding: 1rem 1rem 0.85rem !important;
    }
    /* SPA H1 - sayfa başlığı - kartsız, sadece text */
    #spaPageContent > h1 {
        padding: 0.5rem 0.75rem 0.75rem !important;
        margin: 0.5rem 0 0.75rem !important;
        font-size: 1.5rem !important;
        background: transparent !important;
    }

    /* Ana Sayfa'ya dön linki — mobilde de görünsün */
    .back-to-home {
        padding: 0.5rem 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
}

/* Küçük mobiller (iPhone SE vb.) için ek düşürme */
@media (max-width: 380px) {
    .header {
        height: 60px !important;
    }
    body {
        padding-top: 60px !important;
    }
    .header-logo {
        height: 40px !important;
    }
    .footer-disclaimer {
        font-size: 0.68rem !important;
    }
    #spaPageContainer {
        padding: 0.75rem 0.35rem 2rem !important;
    }
    .content-section {
        margin: 0.5rem 0 !important;
        padding: 0.85rem 0.85rem 0.7rem !important;
    }
}

/* ============================================================================
   KULLANICI KART & HAVALE INFO — DARK THEME KONTRAST FIX
   .jc-modal-user-card ve .info-row hardcoded açık renkler kullanıyordu,
   koyu zeminde okunmuyordu. Aşağıdaki override'lar bunları düzeltir.
   ============================================================================ */

/* TikTok kullanıcı arama sonuç kartı */
.jc-modal-user-card {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    color: #f1f5f9 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.jc-modal-user-card:hover {
    border-color: rgba(244, 63, 94, 0.4) !important;
}
.jc-modal-user-name {
    color: #f8fafc !important;
    font-weight: 700;
}
.jc-modal-user-nick {
    color: #94a3b8 !important;
    font-size: 0.85rem;
    display: block !important;
    margin-top: 0.15rem;
}
.jc-modal-user-stats {
    color: #cbd5e1 !important;
    font-size: 0.78rem;
}
.jc-modal-user-stats span {
    color: #cbd5e1 !important;
}
.jc-modal-user-verified {
    color: #10b981 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.jc-modal-user-verified i {
    color: #10b981 !important;
}
.jc-modal-avatar {
    border: 2px solid #f43f5e !important;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

/* jc-modal-status renk override (info/success/error) */
.jc-modal-status.loading,
.jc-modal-status.info {
    background: #1e293b !important;
    color: #93c5fd !important;
    border: 1px solid #334155 !important;
}
.jc-modal-status.success {
    background: #0f2c22 !important;
    color: #6ee7b7 !important;
    border: 1px solid #10b981 !important;
}
.jc-modal-status.error {
    background: #2c1518 !important;
    color: #fca5a5 !important;
    border: 1px solid #ef4444 !important;
}
