/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-h: 80px;
}

html,
body {
    margin: 0 !important;
    min-height: 100%;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}
html {
    padding: 0 !important;
    scroll-padding-top: var(--header-h);
    overflow-y: scroll;
}
body { padding-left: 0 !important; padding-right: 0 !important; padding-bottom: 0 !important; }

/* Kopyalama koruması - sadece iletişim bilgileri kopyalanabilir */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Footer her zaman en altta */
.footer {
    margin-top: auto;
    padding-top: 3rem;
}
/* İletişim bilgileri kopyalanabilir */
.contact-info, .support-info, .phone, .email, .address {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
/* İletişim bilgileri stilleri */
.contact-info p {
    margin: 0.5rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-info i {
    color: #3b82f6;
    width: 16px;
}
/* Görsel koruması */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: var(--header-h);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Override for specific pages */
body[data-page="payment-form"],
body[data-page="bank-info"],
body[data-page="order-inquiry"] {
    padding-top: 0 !important;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0;
    transition: background 0.3s ease;
    height: var(--header-h);
    min-height: var(--header-h);
    display: flex;
    align-items: center;
}
.header > .container { width: 100%; }
/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-right: 10px;
    font-size: 16px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
.theme-toggle:active {
    background: rgba(255, 255, 255, 0.3);
}
.theme-toggle i {
    transition: transform 0.3s ease;
}
/* Dark mode styles */
[data-theme="dark"] .theme-toggle {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
}
[data-theme="dark"] .theme-toggle:hover {
    background: rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.6);
}
[data-theme="dark"] .theme-toggle i {
    transform: rotate(180deg);
}
/* Dark Mode CSS Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --shadow-color: rgba(0, 0, 0, 0.3);
}
/* Gece modu genel text rengi: yalnızca body üzerine uygula, böylece
   beyaz kart arkaplanlı bileşenler kendi koyu metin rengini koruyabilir.
   (Her elemana zorla beyaz dayatmak okunabilirliği bozuyordu.) */
[data-theme="dark"] body {
    color: var(--text-primary);
}

/* OKUNABILIRLIK GÜVENCESI:
   Dark mode'da arkaplan rengi açık tonda (beyaz/krem) kalan kartlarda
   metin de açık olursa okunamaz hale geliyordu. Bu kural, açık tema
   renklerinde kalan kart-benzeri öğelerin metinlerini koyu tutar. */
[data-theme="dark"] .package-info-card,
[data-theme="dark"] .info-card,
[data-theme="dark"] .platform-page-header ~ * .service-card,
[data-theme="dark"] .platform-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .stats-card {
    color: #1f2937;
}
[data-theme="dark"] .package-info-card h1, [data-theme="dark"] .package-info-card h2, [data-theme="dark"] .package-info-card h3, [data-theme="dark"] .package-info-card h4,
[data-theme="dark"] .info-card h1, [data-theme="dark"] .info-card h2, [data-theme="dark"] .info-card h3, [data-theme="dark"] .info-card h4,
[data-theme="dark"] .testimonial-card h1, [data-theme="dark"] .testimonial-card h2, [data-theme="dark"] .testimonial-card h3, [data-theme="dark"] .testimonial-card h4,
[data-theme="dark"] .feature-card h1, [data-theme="dark"] .feature-card h2, [data-theme="dark"] .feature-card h3, [data-theme="dark"] .feature-card h4 {
    color: #111827;
}
/* Gece modu koyu renkli elementler */
[data-theme="dark"] .counter-label,
[data-theme="dark"] .order-item span,
[data-theme="dark"] .notification-text,
[data-theme="dark"] .contact-item a,
[data-theme="dark"] .feature-item span,
[data-theme="dark"] .balance-label,
[data-theme="dark"] .edit-cancel-btn,
[data-theme="dark"] .cart-header h3,
[data-theme="dark"] .cart-item-title,
[data-theme="dark"] .order-item strong,
[data-theme="dark"] .package-header h4,
[data-theme="dark"] .edit-modal-body strong {
    color: #f1f5f9 !important;
}
/* Gece modu açık gri renkli elementler */
[data-theme="dark"] .cart-item-price,
[data-theme="dark"] .cart-item-quantity,
[data-theme="dark"] .cart-summary-item,
[data-theme="dark"] .cart-total,
[data-theme="dark"] .order-summary-item,
[data-theme="dark"] .order-total,
[data-theme="dark"] .package-description,
[data-theme="dark"] .package-features,
[data-theme="dark"] .edit-modal-body,
[data-theme="dark"] .edit-modal-footer {
    color: #cbd5e1 !important;
}
/* Gece modu orta gri renkli elementler */
[data-theme="dark"] .campaign-description,
[data-theme="dark"] .upcoming-card p,
[data-theme="dark"] .features .section-subtitle,
[data-theme="dark"] .pricing-preview .section-subtitle {
    color: #94a3b8 !important;
}
/* Gece modu koyu gri renkli elementler */
[data-theme="dark"] .cart-item-details,
[data-theme="dark"] .cart-item-actions,
[data-theme="dark"] .cart-summary,
[data-theme="dark"] .order-details,
[data-theme="dark"] .order-actions,
[data-theme="dark"] .package-info,
[data-theme="dark"] .package-actions,
[data-theme="dark"] .edit-modal-header,
[data-theme="dark"] .edit-modal-content {
    color: #94a3b8 !important;
}
/* Gece modu çok koyu gri renkli elementler */
[data-theme="dark"] .upcoming-card h3,
[data-theme="dark"] .upcoming-card .campaign-date,
[data-theme="dark"] .upcoming-card .campaign-time {
    color: #cbd5e1 !important;
}
/* Gece modu mavi renkli elementler */
[data-theme="dark"] .nav-link,
[data-theme="dark"] .btn-outline,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-secondary {
    color: #60a5fa !important;
}
/* Gece modu yeşil renkli elementler */
[data-theme="dark"] .success-text,
[data-theme="dark"] .success-message,
[data-theme="dark"] .success-icon,
[data-theme="dark"] .success-badge,
[data-theme="dark"] .success-indicator {
    color: #34d399 !important;
}
/* Gece modu sarı renkli elementler */
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .theme-toggle i,
[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .theme-toggle:active,
[data-theme="dark"] .theme-toggle:focus {
    color: #fbbf24 !important;
}
/* Gece modu kırmızı renkli elementler */
[data-theme="dark"] .error-text,
[data-theme="dark"] .error-message,
[data-theme="dark"] .error-icon,
[data-theme="dark"] .error-badge,
[data-theme="dark"] .error-indicator {
    color: #f87171 !important;
}
/* Gece modu turuncu renkli elementler */
[data-theme="dark"] .warning-text,
[data-theme="dark"] .warning-message,
[data-theme="dark"] .warning-icon,
[data-theme="dark"] .warning-badge,
[data-theme="dark"] .warning-indicator {
    color: #fbbf24 !important;
}
/* Gece modu koyu kırmızı renkli elementler */
[data-theme="dark"] .danger-text,
[data-theme="dark"] .danger-message,
[data-theme="dark"] .danger-icon,
[data-theme="dark"] .danger-badge,
[data-theme="dark"] .danger-indicator {
    color: #f87171 !important;
}
/* Gece modu koyu yeşil renkli elementler */
[data-theme="dark"] .info-text,
[data-theme="dark"] .info-message,
[data-theme="dark"] .info-icon,
[data-theme="dark"] .info-badge,
[data-theme="dark"] .info-indicator {
    color: #34d399 !important;
}
/* Gece modu text renkleri */
[data-theme="dark"] .primary-text,
[data-theme="dark"] .secondary-text,
[data-theme="dark"] .tertiary-text,
[data-theme="dark"] .quaternary-text,
[data-theme="dark"] .quinary-text {
    color: #60a5fa !important;
}
/* Gece modu temel renkler */
[data-theme="dark"] .black-text { color: #f1f5f9 !important; }
[data-theme="dark"] .white-text { color: #0f172a !important; }
/* Gece modu renk sınıfları - basitleştirilmiş */
[data-theme="dark"] .light-gray-text,
[data-theme="dark"] .medium-gray-text,
[data-theme="dark"] .slate-text,
[data-theme="dark"] .gray-text,
[data-theme="dark"] .neutral-text,
[data-theme="dark"] .cool-gray-text,
[data-theme="dark"] .blue-gray-text,
[data-theme="dark"] .indigo-text,
[data-theme="dark"] .fuchsia-text,
[data-theme="dark"] .pink-text,
[data-theme="dark"] .amber-text,
[data-theme="dark"] .yellow-text {
    color: #94a3b8 !important;
}
[data-theme="dark"] .dark-gray-text,
[data-theme="dark"] .very-dark-gray-text,
[data-theme="dark"] .zinc-text,
[data-theme="dark"] .stone-text,
[data-theme="dark"] .warm-gray-text,
[data-theme="dark"] .true-gray-text,
[data-theme="dark"] .violet-text,
[data-theme="dark"] .purple-text,
[data-theme="dark"] .rose-text,
[data-theme="dark"] .orange-text,
[data-theme="dark"] .lime-text {
    color: #f1f5f9 !important;
}
/* Özel başlık stilleri */
.highlight-yellow {
    color: #fbbf24 !important;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}
.references .section-title {
    color: #3b82f6 !important;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}
.pricing-preview .section-title {
    color: #1e3a8a !important;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.3);
}
/* Gece modu için özel başlık stilleri - gündüz moduyla aynı renkler */
[data-theme="dark"] .highlight-yellow {
    color: #fbbf24 !important;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3) !important;
}
[data-theme="dark"] .references .section-title {
    color: #3b82f6 !important;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3) !important;
}
[data-theme="dark"] .pricing-preview .section-title {
    color: #f1f5f9 !important;
}
/* Soru işaretleri sarı yap */
.question-mark {
    color: #fbbf24 !important;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3) !important;
}
/* Gece modu için soru işaretleri */
[data-theme="dark"] .question-mark {
    color: #fbbf24 !important;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3) !important;
}
/* En Popüler etiketi özelleştirmesi */
.popular-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
/* Gece modu için En Popüler etiketi */
[data-theme="dark"] .popular-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4) !important;
}
/* Instagram Takipçi Sayfası - Gece Modu Düzeltmeleri */
[data-theme="dark"] .package-header,
[data-theme="dark"] .package-header span,
[data-theme="dark"] .package-header i {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
[data-theme="dark"] .package-features,
[data-theme="dark"] .package-features .feature-item,
[data-theme="dark"] .package-features .feature-item i,
[data-theme="dark"] .package-features .feature-item span {
    color: #1f2937 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}
[data-theme="dark"] .package-price,
[data-theme="dark"] .package-price .original-price,
[data-theme="dark"] .package-price .current-price,
[data-theme="dark"] .package-price .discount-badge {
    color: #1f2937 !important;
}
[data-theme="dark"] .package-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}
[data-theme="dark"] .package-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}
[data-theme="dark"] .warning-banner {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    border: 2px solid #f59e0b !important;
    color: #1f2937 !important;
}
[data-theme="dark"] .warning-content i {
    color: #f59e0b !important;
}
[data-theme="dark"] .warning-text h3 {
    color: #1f2937 !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .warning-text p {
    color: #374151 !important;
    line-height: 1.6 !important;
}
/* Instagram Takipçi Sayfası - Daha Spesifik Düzeltmeler */
[data-theme="dark"] .package-card {
    background: #1e293b !important;
    border: 1px solid #475569 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}
[data-theme="dark"] .package-card .package-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: #ffffff !important;
}
[data-theme="dark"] .package-card .package-header i {
    color: #ffffff !important;
}
[data-theme="dark"] .package-card .package-features .feature-item {
    background: #f8fafc !important;
    color: #1f2937 !important;
    border: 1px solid #e2e8f0 !important;
}
[data-theme="dark"] .package-card .package-features .feature-item i {
    color: #3b82f6 !important;
}
[data-theme="dark"] .package-card .package-features .feature-item span {
    color: #1f2937 !important;
    font-weight: 500 !important;
}
[data-theme="dark"] .package-card .package-price {
    background: #f8fafc !important;
    color: #1f2937 !important;
}
[data-theme="dark"] .package-card .package-price .original-price {
    color: #6b7280 !important;
    text-decoration: line-through !important;
}
[data-theme="dark"] .package-card .package-price .current-price {
    color: #1f2937 !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .package-card .package-price .discount-badge {
    background: #10b981 !important;
    color: #ffffff !important;
}
[data-theme="dark"] .package-card .package-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}
[data-theme="dark"] .package-card .package-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}
[data-theme="dark"] .package-card .package-btn i {
    color: #ffffff !important;
}
/* Instagram Takipçi Sayfası - Fiyat Görünürlük Düzeltmeleri */
[data-theme="dark"] .package-price,
[data-theme="dark"] .package-price *,
[data-theme="dark"] .package-price .original-price,
[data-theme="dark"] .package-price .current-price,
[data-theme="dark"] .package-price .discount-badge,
[data-theme="dark"] .package-price .price-text,
[data-theme="dark"] .package-price .price-amount,
[data-theme="dark"] .package-price .price-currency,
[data-theme="dark"] .package-price .price-discount,
[data-theme="dark"] .package-price .price-original,
[data-theme="dark"] .package-price .price-current {
    background: #f8fafc !important;
    color: #1f2937 !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .package-price .original-price {
    color: #6b7280 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}
[data-theme="dark"] .package-price .current-price {
    color: #1f2937 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}
[data-theme="dark"] .package-price .discount-badge {
    background: #10b981 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.375rem !important;
}
/* Instagram Takipçi Sayfası - Ultra Güçlü Fiyat Düzeltmeleri */
[data-theme="dark"] .package-card .package-pricing,
[data-theme="dark"] .package-card .package-pricing *,
[data-theme="dark"] .package-card .package-pricing div,
[data-theme="dark"] .package-card .package-pricing span,
[data-theme="dark"] .package-card .package-pricing p,
[data-theme="dark"] .package-card .package-pricing strong,
[data-theme="dark"] .package-card .package-pricing em,
[data-theme="dark"] .package-card .package-pricing b,
[data-theme="dark"] .package-card .package-pricing i {
    background: #f8fafc !important;
    background-color: #f8fafc !important;
    background-image: none !important;
    color: #1f2937 !important;
    text-shadow: none !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
[data-theme="dark"] .package-card .package-pricing .original-price,
[data-theme="dark"] .package-card .package-pricing .original-price * {
    color: #6b7280 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
    background: #f8fafc !important;
    background-color: #f8fafc !important;
    background-image: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
[data-theme="dark"] .package-card .package-pricing .final-price,
[data-theme="dark"] .package-card .package-pricing .final-price * {
    color: #1f2937 !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    background: #f8fafc !important;
    background-color: #f8fafc !important;
    background-image: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
[data-theme="dark"] .package-card .package-pricing .discount,
[data-theme="dark"] .package-card .package-pricing .discount * {
    background: #10b981 !important;
    background-color: #10b981 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.375rem !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
[data-theme="dark"] .package-card .package-pricing .price-info,
[data-theme="dark"] .package-card .package-pricing .price-info * {
    background: #f8fafc !important;
    background-color: #f8fafc !important;
    background-image: none !important;
    color: #1f2937 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* Instagram Takipçi Sayfası - Açık Mod Benzeri Gece Modu */
[data-theme="dark"] .package-card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}
[data-theme="dark"] .package-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: #ffffff !important;
}
[data-theme="dark"] .package-header i {
    color: #ffffff !important;
}
[data-theme="dark"] .package-header span {
    color: #ffffff !important;
}
[data-theme="dark"] .package-features {
    background: #ffffff !important;
}
[data-theme="dark"] .package-features .feature-item {
    background: #f8fafc !important;
    color: #1f2937 !important;
    border: 1px solid #e2e8f0 !important;
}
[data-theme="dark"] .package-features .feature-item i {
    color: #3b82f6 !important;
}
[data-theme="dark"] .package-features .feature-item span {
    color: #1f2937 !important;
    font-weight: 500 !important;
}
[data-theme="dark"] .package-pricing {
    background: #ffffff !important;
    color: #1f2937 !important;
}
[data-theme="dark"] .package-pricing .price-info {
    background: #ffffff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    width: 100% !important;
}
[data-theme="dark"] .package-pricing .price-info .original-price,
[data-theme="dark"] .package-pricing .price-info .discount {
    white-space: nowrap !important;
    min-width: 0 !important;
}
[data-theme="dark"] .package-pricing .price-info .discount {
    display: inline-flex !important;
    align-items: center !important;
}
[data-theme="dark"] .package-pricing .price-info .final-price {
    flex: 1 1 100% !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 0.75rem !important;
}
[data-theme="dark"] .package-pricing .original-price {
    color: #6b7280 !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}
[data-theme="dark"] .package-pricing .final-price {
    color: #1f2937 !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
}
[data-theme="dark"] .package-pricing .discount {
    background: #10b981 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.375rem !important;
}
[data-theme="dark"] .add-to-cart-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
    transform: translateY(-2px) !important;
}
[data-theme="dark"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    background-color: #059669 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}
[data-theme="dark"] .add-to-cart-btn i {
    color: #ffffff !important;
}
/* Gece modu için ekstra güvenlik - Satın Al butonları sürekli yeşil */
[data-theme="dark"] .package-card .add-to-cart-btn,
[data-theme="dark"] .add-to-cart-btn {
    background: #10b981 !important;
    background-color: #10b981 !important;
    background-image: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}
[data-theme="dark"] .package-card .add-to-cart-btn:hover,
[data-theme="dark"] .add-to-cart-btn:hover {
    background: #059669 !important;
    background-color: #059669 !important;
    background-image: linear-gradient(135deg, #059669, #047857) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}
/* Package Warning Styles */
.package-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}
.package-warning span {
    color: white !important;
}
.package-warning i {
    color: white !important;
    font-size: 1rem;
}
/* Gece modu için package warning */
[data-theme="dark"] .package-warning {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
}
[data-theme="dark"] .package-warning span {
    color: #ffffff !important;
}
[data-theme="dark"] .package-warning i {
    color: #ffffff !important;
}
/* Gece modu çok koyu gri renkli elementler */
[data-theme="dark"] .green-text,
[data-theme="dark"] .green-message,
[data-theme="dark"] .green-icon,
[data-theme="dark"] .green-badge,
[data-theme="dark"] .green-indicator {
    color: #f1f5f9 !important;
}
/* Gece modu orta gri renkli elementler */
[data-theme="dark"] .emerald-text,
[data-theme="dark"] .emerald-message,
[data-theme="dark"] .emerald-icon,
[data-theme="dark"] .emerald-badge,
[data-theme="dark"] .emerald-indicator {
    color: #94a3b8 !important;
}
/* Gece modu orta gri renkli elementler */
[data-theme="dark"] .teal-text,
[data-theme="dark"] .teal-message,
[data-theme="dark"] .teal-icon,
[data-theme="dark"] .teal-badge,
[data-theme="dark"] .teal-indicator {
    color: #94a3b8 !important;
}
/* Gece modu koyu gri renkli elementler */
[data-theme="dark"] .cyan-text,
[data-theme="dark"] .cyan-message,
[data-theme="dark"] .cyan-icon,
[data-theme="dark"] .cyan-badge,
[data-theme="dark"] .cyan-indicator {
    color: #f1f5f9 !important;
}
/* Gece modu çok koyu gri renkli elementler */
[data-theme="dark"] .sky-text,
[data-theme="dark"] .sky-message,
[data-theme="dark"] .sky-icon,
[data-theme="dark"] .sky-badge,
[data-theme="dark"] .sky-indicator {
    color: #f1f5f9 !important;
}
/* Gece modu orta gri renkli elementler */
[data-theme="dark"] .blue-text,
[data-theme="dark"] .blue-message,
[data-theme="dark"] .blue-icon,
[data-theme="dark"] .blue-badge,
[data-theme="dark"] .blue-indicator {
    color: #94a3b8 !important;
}
/* Gece modu orta gri renkli elementler */
[data-theme="dark"] .indigo-text,
[data-theme="dark"] .indigo-message,
[data-theme="dark"] .indigo-icon,
[data-theme="dark"] .indigo-badge,
[data-theme="dark"] .indigo-indicator {
    color: #94a3b8 !important;
}
/* Campaigns Page Styles */
.campaigns-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}
.campaigns-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.campaigns-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.campaigns-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.campaign-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.campaign-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}
.campaign-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.campaign-card.featured .campaign-badge {
    background: rgba(255, 255, 255, 0.2);
}
.campaign-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.campaign-card.featured .campaign-icon {
    background: rgba(255, 255, 255, 0.2);
}
.campaign-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.campaign-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.campaign-card.featured .campaign-description {
    color: rgba(255, 255, 255, 0.8);
}
.campaign-details {
    margin-bottom: 2rem;
}
.campaign-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.campaign-benefit i {
    color: #10b981;
    font-size: 0.8rem;
}
.campaign-card.featured .campaign-benefit i {
    color: #fbbf24;
}
.upcoming-campaigns {
    padding: 4rem 0;
    background: white;
}
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.upcoming-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
}
.upcoming-card:hover {
    border-color: #667eea;
    background: #f1f5f9;
}
.upcoming-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}
.upcoming-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}
.upcoming-card p {
    color: #64748b;
    margin-bottom: 1rem;
}
.countdown {
    background: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}
.countdown-text {
    font-weight: 600;
    color: #475569;
}
/* Dark mode for campaigns */
[data-theme="dark"] .campaigns-section {
    background: #1e293b;
}
[data-theme="dark"] .campaign-card {
    background: #334155;
    color: #f1f5f9;
}
[data-theme="dark"] .campaign-description {
    color: #cbd5e1;
}
[data-theme="dark"] .upcoming-campaigns {
    background: #1e293b;
}
[data-theme="dark"] .upcoming-card {
    background: #334155;
    border-color: #475569;
}
[data-theme="dark"] .upcoming-card:hover {
    background: #475569;
    border-color: #667eea;
}
[data-theme="dark"] .upcoming-card h3 {
    color: #f1f5f9;
}
/* Comprehensive Dark Mode Styles */
[data-theme="dark"] .header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border-bottom: 1px solid #475569 !important;
}
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%) !important;
}
[data-theme="dark"] .hero .hero-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .hero .hero-subtitle {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .features {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    background-color: #0f172a !important;
}
[data-theme="dark"] .features .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .features .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-preview {
    background-color: #1e293b !important;
}
[data-theme="dark"] .pricing-preview .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-preview .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .references {
    background-color: #1e293b !important;
}
[data-theme="dark"] .references .section-title {
    color: #3b82f6 !important;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3) !important;
}
[data-theme="dark"] .references .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .how-it-works {
    background-color: #1e293b !important;
}
[data-theme="dark"] .how-it-works .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .how-it-works .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .reviews {
    background-color: #1e293b !important;
}
[data-theme="dark"] .reviews .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .reviews .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .faq-section {
    background-color: #1e293b !important;
}
[data-theme="dark"] .faq-section .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-section .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .live-shopping {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
}
[data-theme="dark"] .animated-platforms {
    background-color: #1e293b !important;
}
/* Dark Mode Cards */
[data-theme="dark"] .feature-card {
    background: #334155 !important;
    border-color: #475569 !important;
}
[data-theme="dark"] .pricing-card {
    background: #334155 !important;
    border-color: #475569 !important;
}
[data-theme="dark"] .pricing-card h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-card p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .service-item {
    background: #1e293b !important;
    border: 2px solid #475569 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}
/* Dark Mode Navigation */
[data-theme="dark"] .nav-link {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .nav-link:hover {
    color: #f1f5f9 !important;
}
/* Dark Mode Buttons */
[data-theme="dark"] .btn {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6 !important;
}
[data-theme="dark"] .btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
}
[data-theme="dark"] .btn-outline {
    background: transparent !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}
[data-theme="dark"] .btn-outline:hover {
    background: #3b82f6 !important;
    color: white !important;
}
/* Dark Mode Forms */
[data-theme="dark"] .form-group input {
    background: #334155 !important;
    border-color: #475569 !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .form-group input:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}
/* Dark Mode Modals */
[data-theme="dark"] .modal-content {
    background: #334155 !important;
    border-color: #475569 !important;
}
/* Dark Mode Cart */
[data-theme="dark"] .cart-dropdown {
    background: #334155 !important;
    border-color: #475569 !important;
}
/* Dark Mode Footer */
[data-theme="dark"] .footer {
    background: #0f172a !important;
    border-top: 1px solid #475569 !important;
}
/* Dark Mode Text Elements */
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, 
[data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .feature-card h3, [data-theme="dark"] .feature-card p {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .service-name {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-header h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-features .feature-item span {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .step-title, [data-theme="dark"] .step-description {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .review-text, [data-theme="dark"] .review-date, 
[data-theme="dark"] .review-info h4, [data-theme="dark"] .rating-number {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-intro, [data-theme="dark"] .faq-question h3, 
[data-theme="dark"] .faq-answer p {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .footer-description {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .footer-section h3, [data-theme="dark"] .footer-section h4 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .footer-section ul li a {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .footer-section ul li a:hover {
    color: #60a5fa !important;
}
[data-theme="dark"] .copyright-text {
    color: #94a3b8 !important;
}
[data-theme="dark"] .contact-item span, [data-theme="dark"] .contact-item a {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .form-group label {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .auth-form h2 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .auth-footer p, [data-theme="dark"] .auth-footer a {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .modal-content h2, [data-theme="dark"] .modal-content p {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .cart-header h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .cart-total-items, [data-theme="dark"] .cart-total, 
[data-theme="dark"] .cart-total-price {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .empty-cart p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .live-indicator {
    background: #ef4444 !important;
    color: white !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
    border: 2px solid #dc2626 !important;
}
[data-theme="dark"] .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .support-message p, [data-theme="dark"] .support-text {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .profile-details h3, [data-theme="dark"] .profile-details p {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .balance-label, [data-theme="dark"] .balance-amount {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .user-name, [data-theme="dark"] .user-balance {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .shopping-counter {
    background: #1e40af !important;
    background-color: #1e40af !important;
    background-image: none !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    border: 2px solid #3b82f6 !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #3b82f6 !important;
    transition: all 0.3s ease !important;
    margin: 2rem 0 !important;
}
[data-theme="dark"] .counter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .hero-stats, [data-theme="dark"] .stat, 
[data-theme="dark"] .stat small, [data-theme="dark"] .stat span {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .campaigns-hero .hero-title, 
[data-theme="dark"] .campaigns-hero .hero-subtitle {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .campaign-title, [data-theme="dark"] .campaign-description, 
[data-theme="dark"] .campaign-benefit, [data-theme="dark"] .campaign-benefit span {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .upcoming-card h3, [data-theme="dark"] .upcoming-card p, 
[data-theme="dark"] .countdown-text {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .campaign-badge, [data-theme="dark"] .coming-soon-badge {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-features .feature-item, 
[data-theme="dark"] .pricing-features .feature-item span {
    color: #cbd5e1 !important;
}
/* Campaign Button Styles for Dark Mode */
[data-theme="dark"] .campaign-cta .btn {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6 !important;
}
[data-theme="dark"] .campaign-cta .btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
}
[data-theme="dark"] .campaign-cta .btn-outline {
    background: transparent !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}
[data-theme="dark"] .campaign-cta .btn-outline:hover {
    background: #3b82f6 !important;
    color: white !important;
}
[data-theme="dark"] .campaign-card.featured .campaign-cta .btn {
    background: #f59e0b !important;
    color: white !important;
    border-color: #f59e0b !important;
}
[data-theme="dark"] .campaign-card.featured .campaign-cta .btn:hover {
    background: #d97706 !important;
    border-color: #d97706 !important;
}
[data-theme="dark"] .upcoming-card p {
    color: #cbd5e1;
}
/* Campaign Button Styles for Light Mode */
.campaign-cta .btn {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6 !important;
}
.campaign-cta .btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
}
.campaign-cta .btn-outline {
    background: transparent !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
}
.campaign-cta .btn-outline:hover {
    background: #3b82f6 !important;
    color: white !important;
}
.campaign-card.featured .campaign-cta .btn {
    background: #f59e0b !important;
    color: white !important;
    border-color: #f59e0b !important;
}
.campaign-card.featured .campaign-cta .btn:hover {
    background: #d97706 !important;
    border-color: #d97706 !important;
}
[data-theme="dark"] .countdown {
    background: #475569;
}
[data-theme="dark"] .countdown-text {
    color: #cbd5e1;
}
/* Dark Mode Global Styles */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --shadow-color: rgba(0, 0, 0, 0.4);
}
/* Dark Mode Body */
[data-theme="dark"] body {
    background-color: #0f172a !important;
    color: #f1f5f9 !important;
}
/* Dark Mode Header */
[data-theme="dark"] .header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border-bottom: 1px solid #475569 !important;
}
/* Dark Mode Hero Section */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%) !important;
}
/* Dark Mode Sections */
[data-theme="dark"] .features {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    background-color: #0f172a !important;
}
[data-theme="dark"] .pricing-preview {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
}
[data-theme="dark"] .references {
    background-color: #1e293b !important;
}
[data-theme="dark"] .how-it-works {
    background-color: #0f172a !important;
}
[data-theme="dark"] .reviews {
    background-color: #1e293b !important;
}
[data-theme="dark"] .faq-section {
    background-color: #0f172a !important;
}
[data-theme="dark"] .live-shopping {
    background-color: #1e293b !important;
}
[data-theme="dark"] .animated-platforms {
    background-color: #0f172a !important;
}
/* Dark Mode Cards */
[data-theme="dark"] .feature-card {
    background: #334155 !important;
    border: 1px solid #475569 !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .feature-card:hover {
    background: #475569 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}
[data-theme="dark"] .pricing-card {
    background: #334155 !important;
    border: 1px solid #475569 !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-card h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-card p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-card .pricing-features {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-card .pricing-features .feature-item {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-card .pricing-features .feature-item span {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-card:hover {
    background: #475569 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}
[data-theme="dark"] .service-item {
    background: #1e293b !important;
    border: 2px solid #475569 !important;
    color: #f1f5f9 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}
[data-theme="dark"] .service-item:hover {
    background: #475569 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}
/* Dark Mode Navigation */
[data-theme="dark"] .nav-link {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: #60a5fa !important;
}
/* Dark Mode Buttons */
[data-theme="dark"] .btn {
    border-color: #475569 !important;
}
[data-theme="dark"] .btn-outline {
    color: #f1f5f9 !important;
    border-color: #475569 !important;
}
[data-theme="dark"] .btn-outline:hover {
    background: #3b82f6 !important;
    color: white !important;
}
/* Dark Mode Forms */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background: #334155 !important;
    border: 1px solid #475569 !important;
    color: #f1f5f9 !important;
}
/* Dark Mode Modals */
[data-theme="dark"] .modal-content {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    color: #f1f5f9 !important;
    border: 1px solid #475569 !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #475569 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}
[data-theme="dark"] .modal {
    background-color: rgba(0,0,0,0.7) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
}
[data-theme="dark"] .large-modal {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    border: 1px solid #475569 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .cart-dropdown {
    background: #1e293b !important;
    border: 1px solid #475569 !important;
}
[data-theme="dark"] .cart-header {
    border-bottom: 1px solid #475569 !important;
    background: transparent !important;
}
/* Dark Mode Footer */
[data-theme="dark"] .footer {
    background: #1e293b !important;
    border-top: 1px solid #475569 !important;
    color: #cbd5e1 !important;
}
/* Dark Mode Text Colors */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .section-subtitle {
    color: #cbd5e1 !important;
}
/* Dark Mode Icons */
[data-theme="dark"] .feature-icon {
    color: #60a5fa !important;
}
[data-theme="dark"] .service-card .service-icon {
    color: #60a5fa !important;
}
/* Animated platforms grid: ikonlar her zaman beyaz (ikonlu marka rengi arka planda) */
.animated-platforms .service-icon,
.animated-platforms .service-icon i,
.animated-platforms .service-icon svg,
[data-theme="dark"] .animated-platforms .service-icon,
[data-theme="dark"] .animated-platforms .service-icon i,
[data-theme="dark"] .animated-platforms .service-icon svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}
/* Dark Mode Stats */
[data-theme="dark"] .hero-stats {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
[data-theme="dark"] .stat {
    color: #f1f5f9 !important;
}
/* Dark Mode Reviews */
[data-theme="dark"] .review-card {
    background: #334155 !important;
    border: 1px solid #475569 !important;
    color: #f1f5f9 !important;
}
/* Dark Mode FAQ */
[data-theme="dark"] .faq-item {
    background: #334155 !important;
    border: 1px solid #475569 !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-question {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-answer {
    color: #cbd5e1 !important;
}
/* Dark Mode Text Fixes - Tüm metinler için */
[data-theme="dark"] * {
    color: inherit;
}
[data-theme="dark"] .hero-title {
    color: white !important;
}
[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}
[data-theme="dark"] .motivation-banner {
    background: linear-gradient(135deg, #ea580c, #fbbf24) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 8px 28px rgba(234, 88, 12, 0.38) !important;
}
[data-theme="dark"] .motivation-content {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .motivation-content span {
    color: white !important;
}
[data-theme="dark"] .section-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .section-subtitle {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .feature-card h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .feature-card p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .service-name {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-header h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .pricing-features .feature-item {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-features .feature-item span {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .step-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .step-description {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .review-text {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .review-date {
    color: #94a3b8 !important;
}
[data-theme="dark"] .review-info h4 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .rating-number {
    color: #fbbf24 !important;
}
[data-theme="dark"] .faq-intro {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .faq-question h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-answer p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .footer-description {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .copyright-text {
    color: #94a3b8 !important;
}
[data-theme="dark"] .contact-item span {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .contact-item a {
    color: #cbd5e1 !important;
    transition: all 0.3s ease;
}
[data-theme="dark"] .contact-item a:hover {
    color: #60a5fa !important;
    text-decoration: underline !important;
    transform: translateY(-2px);
}
/* Dark Mode Form Labels */
[data-theme="dark"] .form-group label {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .auth-form h2 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .auth-footer p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .auth-footer a {
    color: #60a5fa !important;
}
/* Dark Mode Modal Text */
[data-theme="dark"] .modal-content h2 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .modal-content p {
    color: #cbd5e1 !important;
}
/* Dark Mode Cart Text */
[data-theme="dark"] .cart-header h3 {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
}
[data-theme="dark"] .cart-total-items {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .cart-total {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .cart-total-price {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .empty-cart p {
    color: #cbd5e1 !important;
}
/* Dark Mode Live Shopping */
[data-theme="dark"] .live-indicator {
    color: #ef4444 !important;
}
[data-theme="dark"] .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Dark Mode Support */
[data-theme="dark"] .support-message p {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .support-text {
    color: #f1f5f9 !important;
}
/* Dark Mode Profile */
[data-theme="dark"] .profile-details h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .profile-details p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .balance-label {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .balance-amount {
    color: #10b981 !important;
}
/* Dark Mode User Info */
[data-theme="dark"] .user-name {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .user-balance {
    color: #10b981 !important;
}
/* Light Mode Campaign Buttons */
.campaign-cta .btn {
    background: #3b82f6 !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.campaign-cta .btn:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}
.campaign-cta .btn-outline {
    background: transparent !important;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
}
.campaign-cta .btn-outline:hover {
    background: #3b82f6 !important;
    color: white !important;
}
/* Dark Mode Campaign Buttons */
[data-theme="dark"] .campaign-cta .btn {
    background: #60a5fa !important;
    color: #0f172a !important;
    border: 2px solid #60a5fa !important;
}
[data-theme="dark"] .campaign-cta .btn:hover {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
}
[data-theme="dark"] .campaign-cta .btn-outline {
    background: transparent !important;
    color: #60a5fa !important;
    border: 2px solid #60a5fa !important;
}
[data-theme="dark"] .campaign-cta .btn-outline:hover {
    background: #60a5fa !important;
    color: #0f172a !important;
}
/* Dark Mode Campaign Page Text */
[data-theme="dark"] .campaigns-hero .hero-title {
    color: white !important;
}
[data-theme="dark"] .campaigns-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}
[data-theme="dark"] .campaign-title {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .campaign-description {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .campaign-benefit {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .campaign-benefit span {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .upcoming-card h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .upcoming-card p {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .countdown-text {
    color: #cbd5e1 !important;
}
/* Dark Mode Badge Text */
[data-theme="dark"] .campaign-badge {
    color: white !important;
}
[data-theme="dark"] .coming-soon-badge {
    color: white !important;
}
/* Dark Mode Pricing Text */
[data-theme="dark"] .pricing-features .feature-item {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-features .feature-item span {
    color: #cbd5e1 !important;
}
/* Dark Mode Live Shopping Text */
[data-theme="dark"] .shopping-counter {
    background: #1e40af !important;
    background-color: #1e40af !important;
    background-image: none !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    border: 2px solid #3b82f6 !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #3b82f6 !important;
    transition: all 0.3s ease !important;
    margin: 2rem 0 !important;
}
[data-theme="dark"] .shopping-counter .counter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}
[data-theme="dark"] .shopping-counter .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .shopping-counter .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}
[data-theme="dark"] .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Dark Mode Stats Text */
[data-theme="dark"] .hero-stats {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
[data-theme="dark"] .stat {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .stat small {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .stat span {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .trending-text {
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff8c00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    animation: glow 2s ease-in-out infinite alternate !important;
}
[data-theme="dark"] .success-text {
    color: #10b981 !important;
}
/* Featured Campaign Button (Hoş Geldin Bonusu) */
.campaign-card.featured .campaign-cta .btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
.campaign-card.featured .campaign-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}
/* Dark Mode Featured Campaign Button */
[data-theme="dark"] .campaign-card.featured .campaign-cta .btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
[data-theme="dark"] .campaign-card.featured .campaign-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}
/* Cart Button Styles */
.cart-button {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    border: 1px solid #10b981;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.cart-button:hover {
    background: #059669;
    transform: translateY(-2px);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
}
/* Cart Dropdown Styles */
.cart-dropdown {
    position: fixed;
    top: 80px;
    right: 1rem;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    animation: cartSlideIn 0.3s ease-out;
}
@keyframes cartSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cart-dropdown.show {
    display: block;
}
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
}
.cart-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cart-clear-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}
.cart-clear-btn:hover {
    background-color: #fee2e2;
    color: #dc2626;
}
.cart-total-items {
    color: #6b7280;
    font-size: 0.9rem;
}
.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
}
.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}
.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: #f8fafc;
}
.cart-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}
.cart-item-details {
    flex: 1;
}
.cart-item-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.cart-item-username {
    color: #6b7280;
    font-size: 0.8rem;
}
.cart-item-price {
    font-weight: 600;
    color: #10b981;
    font-size: 0.9rem;
}
.cart-item-remove {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}
.cart-item-remove:hover {
    background: #dc2626;
}
/* Yeni sepet stilleri */
.cart-item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.cart-item-edit {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}
.cart-item-edit:hover {
    background-color: #f3f4f6;
    color: #3b82f6;
}
.cart-item-status {
    margin-top: 0.25rem;
}
.status-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}
.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}
.status-processing {
    background-color: #dbeafe;
    color: #1e40af;
}
.status-completed {
    background-color: #d1fae5;
    color: #065f46;
}
.status-failed {
    background-color: #fee2e2;
    color: #991b1b;
}
.empty-cart small {
    display: block;
    margin-top: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 0 0 15px 15px;
    margin-top: 2rem;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1f2937;
}
.cart-total-price {
    font-size: 1.2rem;
    color: #10b981;
}
.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cart-checkout-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}
/* Cart Dropdown Responsive */
@media (max-width: 768px) {
    .cart-dropdown {
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 350px;
    }
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}
.header-content .nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.header-content .user-section {
    margin-left: auto;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    gap: 0.5rem;
}
.logo i {
    font-size: 2rem;
    transition: color 0.25s ease;
}

/* === Navbar marka logoları: her platformun resmi marka rengi === */
/* Hem açık hem karanlık temada AYNI renk gözükür (override yok)  */
.logo i.fa-instagram         { color: #E4405F; }
.logo i.fa-facebook,
.logo i.fa-facebook-f        { color: #1877F2; }
.logo i.fa-youtube           { color: #FF0000; }
.logo i.fa-discord           { color: #5865F2; }
.logo i.fa-telegram,
.logo i.fa-telegram-plane    { color: #229ED9; }
.logo i.fa-twitch            { color: #9146FF; }
.logo i.fa-spotify           { color: #1DB954; }
.logo i.fa-pinterest,
.logo i.fa-pinterest-p       { color: #E60023; }
.logo i.fa-linkedin,
.logo i.fa-linkedin-in       { color: #0A66C2; }
.logo i.fa-snapchat          { color: #FFFC00; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.logo i.fa-reddit            { color: #FF4500; }
.logo i.fa-whatsapp          { color: #25D366; }

/* TikTok ve X (eski Twitter) siyah marka kullandığından temaya göre değişir */
.logo i.fa-tiktok,
.logo i.fa-x-twitter,
.logo i.fa-twitter           { color: #000000; }
[data-theme="dark"] .logo i.fa-tiktok,
[data-theme="dark"] .logo i.fa-x-twitter,
[data-theme="dark"] .logo i.fa-twitter { color: #ffffff; }

/* Threads SVG navbar logosu (currentColor) — temaya göre */
.logo svg.dropdown-platform-icon { color: #000000; }
[data-theme="dark"] .logo svg.dropdown-platform-icon { color: #ffffff; }
.nav {
    display: flex;
    gap: 1.5rem;
}
.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}
.nav-link:hover {
    color: #60a5fa;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}
/* Dropdown Menü */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
/* Click ile açılma kaldırıldı - sadece hover */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
    white-space: nowrap;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background: #f8fafc;
    color: #3b82f6;
    transform: none;
}
/* Gece modu dropdown */
[data-theme="dark"] .dropdown-menu {
    background: #1e293b;
    border-color: #475569;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .dropdown-item {
    color: #f1f5f9;
    border-bottom-color: #334155;
}
[data-theme="dark"] .dropdown-item:hover {
    background: #334155;
    color: #60a5fa;
}
.nav-link.active {
    color: #60a5fa;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #60a5fa;
}
/* Dropdown Menu - Duplicate removed */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}
.dropdown-item:hover {
    background: #f8fafc;
    color: #3b82f6;
}
.dropdown-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}
.dropdown-item .dropdown-platform-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
.dropdown-item svg.dropdown-platform-icon {
    color: #000000;
    fill: currentColor;
}
[data-theme="dark"] .dropdown-item svg.dropdown-platform-icon {
    color: #ffffff;
}
.dropdown-item img.dropdown-platform-icon {
    border-radius: 4px;
}
.dropdown-item span {
    font-weight: 500;
}
/* Platform logolarının gerçek renklerini koru */
.dropdown-item .fab.fa-instagram {
    color: #E4405F !important;
}
.dropdown-item .fab.fa-discord {
    color: #5865F2 !important;
}
.dropdown-item .fab.fa-youtube {
    color: #FF0000 !important;
}
.dropdown-item .fab.fa-tiktok {
    color: #000000 !important;
}
[data-theme="dark"] .dropdown-item .fab.fa-tiktok {
    color: #ff0050 !important;
    text-shadow: 0 0 10px rgba(255, 0, 80, 0.5);
}
.dropdown-item:hover .fab.fa-instagram {
    color: #E4405F !important;
}
.dropdown-item:hover .fab.fa-discord {
    color: #5865F2 !important;
}
.dropdown-item:hover .fab.fa-youtube {
    color: #FF0000 !important;
}
.dropdown-item:hover .fab.fa-tiktok {
    color: #000000 !important;
}
[data-theme="dark"] .dropdown-item:hover .fab.fa-tiktok {
    color: #ff0050 !important;
    text-shadow: 0 0 15px rgba(255, 0, 80, 0.8);
    transform: scale(1.1);
}
.user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #60a5fa;
}
.user-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.user-details span:first-child {
    font-weight: 600;
    font-size: 0.9rem;
}
.balance {
    font-size: 0.8rem;
    color: #60a5fa;
    font-weight: 500;
}
/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
/* Kampanyalar Sayfası Stilleri */
.campaigns-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}
.campaigns-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.campaigns-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.campaigns-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.campaign-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.campaign-card.featured {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}
.campaign-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}
.campaign-card.featured .campaign-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}
.campaign-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}
.campaign-card.featured .campaign-icon {
    color: white;
}
.campaign-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}
.campaign-card.featured .campaign-title {
    color: white;
}
.campaign-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.campaign-card.featured .campaign-description {
    color: rgba(255,255,255,0.9);
}
.campaign-details {
    margin-bottom: 2rem;
}
.campaign-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}
.campaign-card.featured .campaign-benefit {
    color: white;
}
.campaign-benefit i {
    color: #10b981;
    font-size: 0.9rem;
}
.campaign-card.featured .campaign-benefit i {
    color: white;
}
.campaign-cta {
    text-align: center;
}
.upcoming-campaigns {
    padding: 4rem 0;
    background: white;
}
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.upcoming-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px dashed #d1d5db;
    transition: all 0.3s ease;
}
.upcoming-card:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}
.upcoming-icon {
    font-size: 2.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
.upcoming-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}
.upcoming-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}
.countdown {
    background: #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}
.countdown-text {
    font-weight: 600;
    color: #6b7280;
}
/* Responsive */
@media (max-width: 768px) {
    .campaigns-hero .hero-title {
        font-size: 2rem;
    }
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .campaign-card {
        padding: 1.5rem;
    }
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
}
.btn-full {
    width: 100%;
    justify-content: center;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    padding: 1rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: drift 30s linear infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes drift {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-100px) translateY(-100px); }
}
/* Floating Platform Logos */
.floating-platforms {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.platform-logo {
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
}
.platform-logo i {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.3;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
/* Sol taraf konumları */
.left-platforms .fa-instagram {
    top: 15%;
    left: 0;
}
.left-platforms .fa-tiktok {
    top: 45%;
    left: 20px;
}
.left-platforms .fa-youtube {
    top: 75%;
    left: 10px;
}
/* Sağ taraf konumları */
.right-platforms .fa-discord {
    top: 20%;
    right: 0;
}
.right-platforms .fa-twitter {
    top: 55%;
    right: 15px;
}
.right-platforms .fa-facebook {
    top: 80%;
    right: 5px;
}
.left-platforms {
    left: 2rem;
}
.right-platforms {
    right: 2rem;
}
.platform-logo i:hover {
    opacity: 0.6;
    transform: scale(1.1);
}
.bounce-up {
    animation: bounceUp 3s ease-in-out infinite;
}
@keyframes bounceUp {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.05);
        opacity: 0.5;
    }
}
/* Animation delay classes */
.bounce-delay-0 { animation-delay: 0s; }
.bounce-delay-05 { animation-delay: 0.5s; }
.bounce-delay-1 { animation-delay: 1s; }
.bounce-delay-15 { animation-delay: 1.5s; }
.bounce-delay-2 { animation-delay: 2s; }
.bounce-delay-25 { animation-delay: 2.5s; }
/* Platform specific colors */
.left-platforms .fa-instagram {
    color: #E4405F !important;
}
.left-platforms .fa-tiktok {
    color: #000000 !important;
}
.left-platforms .fa-youtube {
    color: #FF0000 !important;
}
.right-platforms .fa-discord {
    color: #5865F2 !important;
}
.right-platforms .fa-twitter {
    color: #1DA1F2 !important;
}
.right-platforms .fa-facebook {
    color: #1877F2 !important;
}
/* Responsive */
@media (max-width: 768px) {
    .left-platforms {
        left: 1rem;
    }
    .right-platforms {
        right: 1rem;
    }
    .platform-logo i {
        font-size: 2rem;
    }
    .platform-logo {
        width: 50px;
    }
}
@media (max-width: 480px) {
    .floating-platforms {
        display: none;
    }
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.hero-title .highlight {
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(115deg, #fffef0 0%, #ffe066 22%, #ffb86b 48%, #ff7eb3 72%, #e9d5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: heroFarkYaratGlow 3.2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.motivation-banner {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem 0;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}
.motivation-banner--animated {
    animation: motivationCtaPulse 2.5s ease-in-out infinite;
    will-change: transform, box-shadow;
}
.motivation-banner--animated:hover {
    animation-play-state: paused;
    transform: scale(1.04);
    box-shadow: 0 14px 36px rgba(255, 107, 107, 0.45), 0 0 0 4px rgba(255, 236, 153, 0.35);
}
.motivation-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.motivation-content i {
    font-size: 1.3rem;
}
.motivation-content .motivation-crown {
    color: #ffd700 !important;
    -webkit-text-fill-color: #ffd700 !important;
    font-size: 1.35rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 10px rgba(255, 215, 0, 0.55));
    animation: motivationCrownFloat 2s ease-in-out infinite;
}
@keyframes motivationCtaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.32), 0 0 0 0 rgba(255, 215, 0, 0.25);
    }
    50% {
        transform: scale(1.025);
        box-shadow: 0 12px 32px rgba(255, 107, 107, 0.42), 0 0 0 6px rgba(255, 215, 0, 0.12);
    }
}
@keyframes motivationCrownFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes heroFarkYaratGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(255, 224, 102, 0.55)) drop-shadow(0 0 20px rgba(255, 182, 193, 0.35));
    }
    50% {
        filter: drop-shadow(0 2px 14px rgba(255, 236, 153, 0.85)) drop-shadow(0 0 28px rgba(196, 181, 253, 0.45));
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.success-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.trending-text {
    background: linear-gradient(135deg, #ff0000, #ff4500, #ff8c00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    animation: glow 2s ease-in-out infinite alternate !important;
}
@keyframes glow {
    from { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
    }
    to { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.8));
    }
}
/* Live Shopping Counter */
.live-shopping {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.shopping-counter {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}
.shopping-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.counter-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.counter-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
}
.counter-content {
    flex: 1;
}
.counter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.live-indicator {
    background: #ef4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: blink 1.5s infinite;
    display: inline-block;
    visibility: visible;
    opacity: 1;
}
.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}
.counter-label {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 600;
}
.recent-orders {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.order-item {
    display: grid;
    grid-template-columns: 40px 1fr 90px 120px;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
    min-height: 60px; /* Sabit yükseklik */
}
/* Hover animasyonu kaldırıldı */
.order-item i {
    color: #10b981;
    font-size: 1.1rem;
}
.profile-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
    flex-shrink: 0;
    grid-column: 1;
}
/* Canlı alışveriş: harf avatarı (data-URL img yerine — her ortamda görünür) */
.order-item .order-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: 2px solid #10b981;
    flex-shrink: 0;
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    box-sizing: border-box;
    pointer-events: none;
    user-select: none;
}
.order-item span {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
    grid-column: 2;
}
.order-item strong {
    color: #1f2937;
    font-weight: 600;
}
.order-item .time {
    color: #6b7280;
    font-size: 0.8rem;
    font-style: italic;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
    grid-column: 3;
}
.order-item .location {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    grid-column: 4;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}
/* Responsive */
@media (max-width: 768px) {
    .shopping-counter {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .counter-text {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    .counter-number {
        font-size: 2rem;
    }
    .counter-label {
        font-size: 1rem;
    }
    .order-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        min-height: auto; /* Mobilde sabit yükseklik kaldır */
        grid-template-columns: none; /* Grid'i kaldır */
    }
    .order-item .time {
        margin-left: 0;
        text-align: left; /* Mobilde sola hizala */
        grid-column: auto; /* Grid column'u kaldır */
    }
    .order-item .location {
        margin-left: 0;
        grid-column: auto; /* Grid column'u kaldır */
    }
    .profile-image,
    .order-item .order-avatar {
        grid-column: auto; /* Grid column'u kaldır */
    }
    .order-item span {
        grid-column: auto; /* Grid column'u kaldır */
    }
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 1;
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}
.stat {
    text-align: center;
    min-width: 180px;
    flex-shrink: 0;
    padding: 1rem;
}
.stat i {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
    margin-right: auto;
}
.stat span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat small {
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e3a8a;
    position: relative;
}
.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}
/* Animated Platforms Section */
.animated-platforms {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}
.services-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 0;
    text-decoration: none;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}
.service-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.service-icon.tiktok {
    background: #000000;
}
[data-theme="dark"] .service-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}
.service-icon.discord {
    background: #5865F2;
}
.service-icon.youtube {
    background: #FF0000;
}
.service-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}
.service-item:hover .service-icon {
    transform: scale(1.1);
}
.service-item:hover .service-icon i {
    transform: scale(1.2);
}
.service-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a8a;
    transition: all 0.3s ease;
    word-wrap: break-word;
    hyphens: auto;
}
/* Dark mode service name */
[data-theme="dark"] .service-name {
    color: #f1f5f9 !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
.service-item:hover .service-name {
    color: #3b82f6;
}
/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .service-item {
        padding: 1.5rem 1rem;
    }
    .service-icon {
        width: 60px;
        height: 60px;
    }
    .service-icon i {
        font-size: 2rem;
    }
    .service-name {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* Customer Satisfaction Section */
.satisfaction {
    padding: 4rem 0;
    background: white;
}
.satisfaction-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.rating-overview {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}
.rating-circle {
    text-align: center;
    min-width: 200px;
}
.rating-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #60a5fa;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rating-stars {
    margin-bottom: 1rem;
}
.rating-stars i {
    font-size: 1.5rem;
    color: #fbbf24;
    margin: 0 0.2rem;
}
.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}
.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}
/* Customer Reviews Section */
.reviews {
    padding: 4rem 0;
    background: #f8fafc;
}
.reviews-container {
    position: relative;
    margin-top: 2rem;
}
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}
.scroll-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.scroll-left {
    left: -25px;
}
.scroll-right {
    right: -25px;
}
.reviews-track {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}
.reviews-track::-webkit-scrollbar {
    display: none;
}
.review-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.review-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.2rem;
}
.review-rating {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}
.rating-value {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f59e0b;
}
.rating-number {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #f59e0b;
}
.review-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}
.review-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.review-date {
    color: #9ca3af;
    font-size: 0.8rem;
    text-align: right;
}
/* Packages Section */
.packages {
    padding: 4rem 0;
    background: #f8fafc;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.package-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}
.package-quantity {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}
.package-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}
.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}
.package-price::before {
    content: '₺';
    font-size: 1.2rem;
}
.package-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}
.package-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
/* Balance Section */
.balance-section {
    padding: 4rem 0;
    background: white;
}
.balance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.balance-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}
.current-balance {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}
.current-balance i {
    font-size: 3rem;
    color: #60a5fa;
}
.current-balance h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.current-balance span {
    font-size: 2rem;
    font-weight: 700;
}
.balance-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #d1d5db;
}
.balance-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    text-align: center;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}
.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.payment-btn {
    padding: 1rem;
    border: 2px solid #d1d5db;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}
.payment-btn:hover,
.payment-btn.active {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}
/* History Section */
.history {
    padding: 4rem 0;
    background: #f8fafc;
}
.history-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #d1d5db;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
.filter-btn:hover,
.filter-btn.active {
    border-color: #3b82f6;
    background: #3b82f6;
    color: white;
}
.history-list {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.history-item:last-child {
    border-bottom: none;
}
.history-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.history-type {
    font-weight: 600;
    color: #1e3a8a;
}
.history-description {
    color: #6b7280;
    font-size: 0.9rem;
}
.history-amount {
    font-weight: 700;
    font-size: 1.1rem;
}
.history-amount.positive {
    color: #059669;
}
.history-amount.negative {
    color: #dc2626;
}
.history-date {
    color: #9ca3af;
    font-size: 0.8rem;
}
/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 1.5rem 0 0.5rem;
    position: relative;
    z-index: 1;
}
/* 3 sütun TEK SATIR: Hakkımızda | KURUMSAL | SOSYAL MEDYA (iç 2 kolon) */
.footer-content {
    display: grid;
    grid-template-columns: 1.7fr 1fr 2.3fr;
    gap: 1.5rem;
    margin-bottom: 0.85rem;
}
.footer-content > .footer-section:last-child {
    padding-left: 1.25rem;
}
.footer-about {
    max-width: 400px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}
.footer-logo i {
    font-size: 1.5rem;
    color: #60a5fa;
}
.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.9rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: #60a5fa;
    transform: translateY(-2px);
}
.footer-description {
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
}
.contact-item i {
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
/* WhatsApp ve Discord logolarını tam alt alta hizala */
.contact-item .fab.fa-whatsapp,
.contact-item .fab.fa-discord {
    font-size: 1.3rem !important;
    width: 20px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.contact-item a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}
.contact-item a {
    color: #374151;
    transition: all 0.3s ease;
}
.contact-item a:hover {
    color: #60a5fa !important;
    text-decoration: underline !important;
    transform: translateY(-2px);
}
.footer-section h4 {
    margin-bottom: 0.55rem;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 0.35rem;
}
.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}
.footer-section ul li a:hover {
    color: #60a5fa;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.65rem;
    margin-top: 0.5rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.8rem;
}
.payment-methods {
    margin-left: 0;
    margin-right: 0;
}
.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}
.company-name {
    font-weight: 700;
    color: #60a5fa;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}
.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.payment-methods span {
    color: #cbd5e1;
    font-size: 0.8rem;
}
.payment-methods i {
    font-size: 1.5rem;
    color: #60a5fa;
}
.papara-icon {
    font-size: 1.5rem;
    color: #60a5fa;
}
/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
    transition: background 0.3s ease;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}
.feature-icon i {
    font-size: 2rem;
    color: white;
}
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}
/* Pricing Preview Section */
.pricing-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.pricing-card.featured {
    border-color: #fbbf24;
    transform: scale(1.05);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.coming-soon-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}
.pricing-header {
    margin-bottom: 2rem;
}
.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}
.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.pricing-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.pricing-icon.tiktok {
    background: #000000;
}
[data-theme="dark"] .pricing-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}
.pricing-icon.youtube {
    background: #FF0000;
}
.pricing-icon i {
    font-size: 1.5rem;
    color: white;
}
.pricing-features {
    margin-bottom: 2rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}
.feature-title {
    color: #374151;
    font-weight: 600;
}
.feature-pricing {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.feature-original-price {
    color: #94a3b8;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: line-through;
}
.feature-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.feature-final-price {
    color: #1d4ed8;
    font-size: 1rem;
    font-weight: 800;
}
.feature-item span {
    color: #374151;
    font-weight: 500;
}
/* Dark mode feature item text */
[data-theme="dark"] .feature-item span {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .feature-title {
    color: #e2e8f0 !important;
}
[data-theme="dark"] .feature-original-price {
    color: #94a3b8 !important;
}
[data-theme="dark"] .feature-discount {
    background: rgba(248, 113, 113, 0.18) !important;
    color: #ffffff !important;
}
[data-theme="dark"] .feature-final-price {
    color: #93c5fd !important;
}
.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}
.feature-item span {
    color: #4b5563;
    font-weight: 500;
}
.pricing-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.pricing-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}
/* Dark mode pricing button */
[data-theme="dark"] .pricing-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
}
[data-theme="dark"] .pricing-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
}
/* References Section */
.references {
    padding: 4rem 0;
    background: white;
}
.references-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
.reference-card {
    max-width: 400px;
    width: 100%;
}
.reference-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.reference-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}
.reference-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}
.reference-card:hover .reference-logo {
    transform: scale(1.1);
}
.reference-logo i {
    font-size: 2rem;
    color: white;
}
.reference-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.reference-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}
.reference-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
/* Dark mode reference card */
[data-theme="dark"] .reference-card {
    background: #334155 !important;
    border-color: #475569 !important;
}
[data-theme="dark"] .reference-card h3 {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .reference-card p {
    color: #cbd5e1 !important;
}
.reference-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.reference-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}
.reference-btn i {
    font-size: 0.9rem;
}
/* References Responsive */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .reference-card {
        padding: 1.5rem;
    }
    .reference-logo {
        width: 60px;
        height: 60px;
    }
    .reference-logo i {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
}
/* Instagram Takipçi Page Styles */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 3rem;
    margin-top: 80px; /* Header yüksekliği kadar boşluk */
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.package-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.package-card.popular {
    border: 3px solid #3b82f6;
}
.package-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
}
.package-header i {
    font-size: 2rem;
}
.package-header span {
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    word-break: keep-all;
    line-height: 1.2;
}
.package-features {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.package-features .feature-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}
.package-features .feature-item i {
    color: #3b82f6;
    font-size: 1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.package-features .feature-item span {
    color: #374151;
    line-height: 1.4;
    flex: 0 1 auto;
    text-align: center;
}
/* Dark mode: feature kartları koyu */
[data-theme="dark"] .package-card .package-features .feature-item,
[data-theme="dark"] .feature-item {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
}
[data-theme="dark"] .package-card .package-features .feature-item span,
[data-theme="dark"] .feature-item span {
    color: #e2e8f0 !important;
}
[data-theme="dark"] .package-card .package-features .feature-item i,
[data-theme="dark"] .feature-item i {
    color: #60a5fa !important;
}

/* Platform Dropdown - Hover büyüme animasyonu (tüm platformlarda aynı) */
.dropdown-menu .dropdown-item .fa-instagram,
.dropdown-menu .dropdown-item .fa-tiktok,
.dropdown-menu .dropdown-item .fa-youtube,
.dropdown-menu .dropdown-item .fa-discord,
.dropdown-menu .dropdown-item .fa-telegram,
.dropdown-menu .dropdown-item .fa-twitch,
.dropdown-menu .dropdown-item .fa-spotify,
.dropdown-menu .dropdown-item .fa-threads,
.dropdown-menu .dropdown-item .fa-facebook-f,
.dropdown-menu .dropdown-item .fa-snapchat-ghost,
.dropdown-menu .dropdown-item .fa-pinterest-p,
.dropdown-item .fa-instagram,
.dropdown-item .fa-tiktok,
.dropdown-item .fa-youtube,
.dropdown-item .fa-discord,
.dropdown-item .fa-telegram,
.dropdown-item .fa-twitch,
.dropdown-item .fa-spotify,
.dropdown-item .fa-threads,
.dropdown-item .fa-facebook-f,
.dropdown-item .fa-snapchat-ghost,
.dropdown-item .fa-pinterest-p,
.dropdown-item .dropdown-platform-icon,
.dropdown-menu .dropdown-item .dropdown-platform-icon {
    display: inline-block;
    transition: transform 0.25s ease, filter 0.25s ease;
    transform-origin: center;
}
.dropdown-menu .dropdown-item:hover .fa-instagram,
.dropdown-menu .dropdown-item:hover .fa-tiktok,
.dropdown-menu .dropdown-item:hover .fa-youtube,
.dropdown-menu .dropdown-item:hover .fa-discord,
.dropdown-menu .dropdown-item:hover .fa-telegram,
.dropdown-menu .dropdown-item:hover .fa-twitch,
.dropdown-menu .dropdown-item:hover .fa-spotify,
.dropdown-menu .dropdown-item:hover .fa-threads,
.dropdown-menu .dropdown-item:hover .fa-facebook-f,
.dropdown-menu .dropdown-item:hover .fa-snapchat-ghost,
.dropdown-menu .dropdown-item:hover .fa-pinterest-p,
.dropdown-item:hover .fa-instagram,
.dropdown-item:hover .fa-tiktok,
.dropdown-item:hover .fa-youtube,
.dropdown-item:hover .fa-discord,
.dropdown-item:hover .fa-telegram,
.dropdown-item:hover .fa-twitch,
.dropdown-item:hover .fa-spotify,
.dropdown-item:hover .fa-threads,
.dropdown-item:hover .fa-facebook-f,
.dropdown-item:hover .fa-snapchat-ghost,
.dropdown-item:hover .fa-pinterest-p,
.dropdown-item:hover .dropdown-platform-icon,
.dropdown-menu .dropdown-item:hover .dropdown-platform-icon {
    transform: scale(1.25) !important;
}

/* Yeni platformlar için marka renkleri (dropdown'da) */
.dropdown-menu .dropdown-item .fa-telegram,
.dropdown-item .fa-telegram { color: #229ED9 !important; }
.dropdown-menu .dropdown-item .fa-twitch,
.dropdown-item .fa-twitch { color: #9146FF !important; }
.dropdown-menu .dropdown-item .fa-spotify,
.dropdown-item .fa-spotify { color: #1DB954 !important; }
.dropdown-menu .dropdown-item .fa-facebook-f,
.dropdown-item .fa-facebook-f { color: #1877F2 !important; }
.dropdown-menu .dropdown-item .fa-snapchat-ghost,
.dropdown-item .fa-snapchat-ghost { color: #FFC700 !important; }
.dropdown-menu .dropdown-item .fa-pinterest-p,
.dropdown-item .fa-pinterest-p { color: #E60023 !important; }
/* hover'da renkler korunsun */
.dropdown-menu .dropdown-item:hover .fa-telegram,
.dropdown-item:hover .fa-telegram { color: #229ED9 !important; }
.dropdown-menu .dropdown-item:hover .fa-twitch,
.dropdown-item:hover .fa-twitch { color: #9146FF !important; }
.dropdown-menu .dropdown-item:hover .fa-spotify,
.dropdown-item:hover .fa-spotify { color: #1DB954 !important; }
.dropdown-menu .dropdown-item:hover .fa-facebook-f,
.dropdown-item:hover .fa-facebook-f { color: #1877F2 !important; }
.dropdown-menu .dropdown-item:hover .fa-snapchat-ghost,
.dropdown-item:hover .fa-snapchat-ghost { color: #FFC700 !important; }
.dropdown-menu .dropdown-item:hover .fa-pinterest-p,
.dropdown-item:hover .fa-pinterest-p { color: #E60023 !important; }

/* Platform Dropdown - Orijinal marka renkleri */
.dropdown-menu .dropdown-item .fa-instagram,
.dropdown-item .fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.dropdown-menu .dropdown-item .fa-tiktok,
.dropdown-item .fa-tiktok {
    color: #000000 !important;
    text-shadow: 2px 2px 0 #25F4EE, -2px -2px 0 #FE2C55 !important;
    position: relative;
}
[data-theme="dark"] .dropdown-menu .dropdown-item .fa-tiktok,
[data-theme="dark"] .dropdown-item .fa-tiktok {
    color: #ffffff !important;
    text-shadow: 2px 2px 0 #25F4EE, -2px -2px 0 #FE2C55 !important;
}
.dropdown-menu .dropdown-item .fa-youtube,
.dropdown-item .fa-youtube {
    color: #FF0000 !important;
}
.dropdown-menu .dropdown-item .fa-discord,
.dropdown-item .fa-discord {
    color: #5865F2 !important;
}
/* Hover durumunda renkler korunsun */
.dropdown-menu .dropdown-item:hover .fa-youtube,
.dropdown-item:hover .fa-youtube {
    color: #FF0000 !important;
}
.dropdown-menu .dropdown-item:hover .fa-discord,
.dropdown-item:hover .fa-discord {
    color: #5865F2 !important;
}
.dropdown-menu .dropdown-item:hover .fa-tiktok,
.dropdown-item:hover .fa-tiktok {
    color: #000000 !important;
    text-shadow: 2px 2px 0 #25F4EE, -2px -2px 0 #FE2C55 !important;
}
[data-theme="dark"] .dropdown-menu .dropdown-item:hover .fa-tiktok,
[data-theme="dark"] .dropdown-item:hover .fa-tiktok {
    color: #ffffff !important;
    text-shadow: 2px 2px 0 #25F4EE, -2px -2px 0 #FE2C55 !important;
}
.dropdown-menu .dropdown-item:hover .fa-instagram,
.dropdown-item:hover .fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* Instagram Servislerine Dön butonu */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
    padding: 0.65rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 1.5rem 0 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
    z-index: 25;
    pointer-events: auto;
}
.back-btn:hover {
    background: #f3f4f6;
    transform: translateX(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.back-btn i {
    font-size: 0.9rem;
}
[data-theme="dark"] .back-btn {
    background: #1e293b;
    color: #e2e8f0;
    border-color: #334155;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
[data-theme="dark"] .back-btn:hover {
    background: #334155;
    color: #ffffff;
}
.package-pricing {
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.package-pricing .price-info {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin: 0 !important;
    width: 100%;
}
.package-pricing .price-info .original-price,
.package-pricing .price-info .discount {
    white-space: nowrap !important;
    min-width: 0;
}
.package-pricing .price-info .discount {
    display: inline-flex !important;
    align-items: center !important;
}
.package-pricing .price-info .final-price {
    flex: 1 1 100% !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 0.75rem !important;
}
.package-pricing .final-price {
    width: 100%;
    text-align: center;
}
.package-pricing .add-to-cart-btn,
.package-pricing .btn,
.package-pricing .package-btn {
    width: 100%;
}
.package-pricing .btn i,
.package-pricing .add-to-cart-btn i,
.package-pricing .package-btn i,
.package-card .btn i,
.package-card .add-to-cart-btn i,
.package-card .package-btn i {
    display: none !important;
}
.copy-success-toast {
    position: fixed !important;
    bottom: max(20px, env(safe-area-inset-bottom, 0px)) !important;
    left: max(20px, env(safe-area-inset-left, 0px)) !important;
    right: auto !important;
    top: auto !important;
    background: #10b981 !important;
    color: #ffffff !important;
    padding: 0.95rem 1.2rem !important;
    border-radius: 0.85rem !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18) !important;
    z-index: 1000040 !important;
    visibility: visible !important;
    transform: none !important;
    opacity: 0 !important;
    transition: opacity 0.25s ease, transform 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 250px !important;
    max-width: calc(100vw - 40px) !important;
}
.copy-success-toast.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
html:not([data-theme="dark"]) .copy-success-toast {
    background: #10b981 !important;
    color: #ffffff !important;
}
html[data-theme="dark"] .copy-success-toast {
    background: #047857 !important;
    color: #ffffff !important;
}
.copy-success-toast,
.copy-success-toast.show,
html:not([data-theme="dark"]) .copy-success-toast,
html[data-theme="dark"] .copy-success-toast {
    color: #ffffff !important;
}
.copy-success-toast *,
.copy-success-toast *::before,
.copy-success-toast *::after {
    color: inherit !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}
.copy-success-toast i {
    color: inherit !important;
}
.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.9rem;
    min-width: 0;
}
.discount {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}
.final-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}
.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}
.add-to-cart-btn i {
    font-size: 1rem;
}
/* Instagram Takipçi Page Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .package-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .package-features .feature-item {
        padding: 0.5rem;
        font-size: 0.85rem;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .package-header {
        padding: 1rem;
        overflow: hidden;
    }
    .package-header span {
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        word-break: keep-all;
        line-height: 1.2;
    }
    .package-features {
        padding: 1rem;
    }
    .package-pricing {
        padding: 1rem;
    }
    .final-price {
        font-size: 1.5rem;
    }
}
/* Username Input Modal */
.username-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.username-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.username-modal-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.username-modal-header i {
    font-size: 2rem;
}
.username-modal-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}
.username-modal-body {
    padding: 2rem;
}
.username-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.username-modal-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.username-input-group {
    margin-bottom: 2rem;
}
.username-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.username-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.username-input.valid {
    border-color: #10b981;
}
.username-input.valid + .input-icon {
    color: #10b981;
}
.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.2rem;
}
.username-input-wrapper {
    position: relative;
}
.username-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-radius: 0 0 15px 15px;
}
.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}
.modal-add-to-cart-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.modal-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}
.modal-add-to-cart-btn i {
    font-size: 1rem;
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* Edit Modal Styles */
.edit-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.edit-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}
.edit-modal-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.edit-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}
.close-edit-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.close-edit-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}
.edit-modal-body {
    padding: 2rem;
}
.edit-modal-body p {
    margin: 0 0 1rem 0;
    color: #6b7280;
}
.edit-modal-body strong {
    color: #1f2937;
}
.edit-input-group {
    margin-top: 1.5rem;
}
.edit-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}
.edit-input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.edit-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.edit-input-group small {
    display: block;
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}
.edit-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
.edit-cancel-btn, .edit-save-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.edit-cancel-btn {
    background-color: #f3f4f6;
    color: #374151;
}
.edit-cancel-btn:hover {
    background-color: #e5e7eb;
}
.edit-save-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}
.edit-save-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}
/* Username Modal Responsive */
@media (max-width: 768px) {
    .username-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    .username-modal-header {
        padding: 1rem;
    }
    .username-modal-header h3 {
        font-size: 1.1rem;
    }
    .username-modal-body {
        padding: 1.5rem;
    }
    .username-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    .modal-price {
        font-size: 1.3rem;
    }
}
/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: #f8fafc;
}
.how-it-works-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
.question-marks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.question-mark {
    font-size: 2rem;
    color: #fbbf24;
    font-weight: bold;
    opacity: 0.3;
}
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    flex: 1;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}
.step-icon i {
    font-size: 2rem;
    color: white;
}
.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}
.step-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}
.step-connector {
    width: 40px;
    height: 2px;
    background: #d1d5db;
    position: relative;
    margin: 0 1rem;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #d1d5db;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}
/* Features Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    .feature-icon i {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Pricing Preview Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
/* How It Works Responsive */
@media (max-width: 768px) {
    .how-it-works-header {
        flex-direction: column;
        gap: 1rem;
    }
    .question-marks {
        flex-direction: row;
        gap: 1rem;
    }
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 1rem 0;
    }
    .step-connector::after {
        right: -3px;
        top: -8px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid #d1d5db;
        border-bottom: none;
    }
    .step-item {
        max-width: 100%;
    }
}
/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-about {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .payment-methods {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    .social-links {
        justify-content: center;
    }
    .contact-info {
        align-items: center;
        text-align: center;
    }
}
/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.close:hover {
    color: #000;
}
.modal h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}
.modal-actions {
    margin-top: 1.5rem;
}
.modal-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}
.success-content,
.error-content {
    text-align: center;
    padding: 1rem;
}
.success-content i {
    font-size: 4rem;
    color: #059669;
    margin-bottom: 1rem;
}
.error-content i {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 1rem;
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    right: max(2rem, env(safe-area-inset-right, 0px));
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    z-index: 1000030;
}
.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}
.scroll-to-top.show {
    display: flex;
}
/* Platform Service Pages */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}
.platform-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}
.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.platform-icon.tiktok {
    background: linear-gradient(45deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
}
[data-theme="dark"] .platform-icon.tiktok {
    background: linear-gradient(45deg, #ff0050 0%, #00f2ea 50%, #ff0050 100%);
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.4);
    animation: tiktok-glow 2s ease-in-out infinite alternate;
}
@keyframes tiktok-glow {
    0% {
        box-shadow: 0 0 25px rgba(255, 0, 80, 0.4);
    }
    100% {
        box-shadow: 0 0 35px rgba(0, 242, 234, 0.6);
    }
}
.platform-icon.youtube {
    background: linear-gradient(45deg, #ff0000 0%, #cc0000 100%);
}
.platform-icon.discord {
    background: linear-gradient(45deg, #5865f2 0%, #7289da 100%);
}
.platform-details h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
}
.platform-details p {
    font-size: 1.1rem;
    color: #f3f4f6;
    max-width: 500px;
    font-weight: 500;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}
.service-card.active {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: 600;
}
.service-card p {
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 500;
}
.service-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-status.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}
.service-status:not(.active) {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}
.selected-service-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.selected-service-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.selected-service-info p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.package-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.package-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.package-header h4 {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 0;
}
.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}
.package-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.package-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}
/* Dark mode styles for platform pages */
[data-theme="dark"] .service-card {
    background: #1f2937;
    border-color: #374151;
}
[data-theme="dark"] .service-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}
[data-theme="dark"] .service-card.active {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-color: #3b82f6;
}
[data-theme="dark"] .service-card h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
    font-weight: 600 !important;
}
[data-theme="dark"] .service-card p {
    color: #e5e7eb !important;
    font-weight: 500 !important;
}
[data-theme="dark"] .selected-service-info {
    background: #1f2937;
    border: 1px solid #374151;
}
[data-theme="dark"] .selected-service-info h2 {
    color: #f9fafb;
}
[data-theme="dark"] .selected-service-info p {
    color: #d1d5db;
}
[data-theme="dark"] .package-card {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-color: #4b5563;
}
[data-theme="dark"] .package-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
[data-theme="dark"] .package-header h4 {
    color: #f9fafb;
}
[data-theme="dark"] .package-description {
    color: #d1d5db;
}
[data-theme="dark"] .platform-details h1 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .platform-details p {
    color: #e5e7eb !important;
    font-weight: 500 !important;
}
/* Responsive styles for platform pages */
@media (max-width: 768px) {
    .platform-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .platform-details h1 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    .selected-service-info {
        padding: 1.5rem;
    }
}
/* Live Order Notifications */
.live-notifications {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    max-width: 300px;
    z-index: 99999;
    pointer-events: none;
    display: block;
}
.notification-item {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #10b981;
    animation: slideInLeft 0.5s ease-out;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    transform: translateX(0);
    display: block;
    opacity: 1;
}
.notification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    animation: progressBar 8s linear forwards;
}
.notification-time {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
    pointer-events: none;
    user-select: none;
    cursor: default;
}
/* NOTIFICATION TIME HOVER KALDIRMA */
.notification-time:hover,
.notification-time:focus,
.notification-time:active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #6b7280 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    cursor: default !important;
    pointer-events: none !important;
}
.notification-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}
.notification-location {
    color: #3b82f6;
    font-weight: 600;
}
.notification-package {
    color: #10b981;
    font-weight: 600;
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes progressBar {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}
@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-24px);
        opacity: 0;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    .header-content .nav {
        position: static;
        transform: none;
    }
    .header-content .user-section {
        margin-left: 0;
    }
    .nav {
        gap: 1rem;
    }
    .auth-buttons {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .rating-overview {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .rating-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    .scroll-btn {
        display: none;
    }
    .reviews-track {
        padding: 0 1rem;
    }
    .review-card {
        min-width: 280px;
    }
    .platforms-track {
        animation-duration: 30s;
    }
    .balance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .payment-methods {
        grid-template-columns: 1fr;
    }
    .history-filters {
        flex-wrap: wrap;
    }
    .platforms-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .profile-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .support-text {
        display: none;
    }
    .support-btn {
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
    }
    .dropdown-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .faq-question {
        padding: 1rem;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 1rem 0 3rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}
/* ULTRA STRONG DARK MODE FIXES */
[data-theme="dark"] .features {
    background: #0f172a !important;
    background-image: none !important;
}
[data-theme="dark"] .features * {
    background: transparent !important;
}
[data-theme="dark"] .features .features-grid {
    background: transparent !important;
}
[data-theme="dark"] .features .feature-card {
    background: #1e293b !important;
}
/* HERO SECTION ULTRA FIXES */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%) !important;
    background-color: #1e3a8a !important;
    background-image: none !important;
}
[data-theme="dark"] .hero * {
    background: transparent !important;
}
[data-theme="dark"] .hero .hero-content {
    background: transparent !important;
}
[data-theme="dark"] .hero .hero-title {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8) !important;
}
[data-theme="dark"] .hero .hero-subtitle {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8) !important;
}
/* LIVE SHOPPING NOTIFICATION FIXES */
[data-theme="dark"] .notification-item,
[data-theme="dark"] .live-notification {
    background: linear-gradient(135deg, #1e293b, #334155) !important;
    color: #f1f5f9 !important;
    border: 1px solid #475569 !important;
}
[data-theme="dark"] .notification-item {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
}
[data-theme="dark"] .notification-item .notification-time {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .notification-item .notification-text,
[data-theme="dark"] .notification-text {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .notification-item .notification-location,
[data-theme="dark"] .notification-location {
    color: #60a5fa !important;
}
[data-theme="dark"] .notification-item .notification-package,
[data-theme="dark"] .notification-package {
    color: #34d399 !important;
}
[data-theme="dark"] .notification-item,
[data-theme="dark"] .notification-item * {
    color: inherit !important;
}
/* ULTRA STRONG DARK MODE OVERRIDE - EN SON EKLENEN */
[data-theme="dark"] {
    background-color: #0f172a !important;
}
[data-theme="dark"] body {
    background-color: #0f172a !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .hero {
    background: #1e3a8a !important;
    background-color: #1e3a8a !important;
    background-image: none !important;
}
[data-theme="dark"] .features {
    background: #0f172a !important;
    background-color: #0f172a !important;
    background-image: none !important;
}
[data-theme="dark"] .pricing-preview {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
/* Popüler paketler için gece modu düzeltmesi */
[data-theme="dark"] .pricing-preview .pricing-card .pricing-features .feature-item {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    margin-bottom: 0.5rem !important;
    padding: 0.75rem !important;
}
[data-theme="dark"] .pricing-preview .pricing-card .pricing-features .feature-item span {
    color: #ffffff !important;
    font-weight: 500 !important;
}
[data-theme="dark"] .pricing-preview .pricing-card .pricing-features .feature-item i {
    color: #10b981 !important;
}
[data-theme="dark"] .references {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .how-it-works {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .reviews {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .faq-section {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .live-shopping {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .footer {
    background: #0f172a !important;
    background-color: #0f172a !important;
    background-image: none !important;
}
html:not([data-theme="dark"]) .package-card,
html:not([data-theme="dark"]) .package-card .package-pricing,
html:not([data-theme="dark"]) .package-card .package-header,
html:not([data-theme="dark"]) .package-card .package-features,
html:not([data-theme="dark"]) .package-pricing .price-info,
html:not([data-theme="dark"]) .package-pricing .original-price,
html:not([data-theme="dark"]) .package-pricing .final-price,
html:not([data-theme="dark"]) .notification-item {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #111827 !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}
html:not([data-theme="dark"]) .live-notifications {
    background: transparent !important;
    background-color: transparent !important;
    color: inherit !important;
    border: none !important;
    box-shadow: none !important;
}
html:not([data-theme="dark"]) .package-card .package-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: #ffffff !important;
}
html:not([data-theme="dark"]) .package-card .package-features .feature-item {
    background: #f8fafc !important;
    color: #1f2937 !important;
    border: 1px solid #e5e7eb !important;
}
html:not([data-theme="dark"]) .package-pricing .price-info {
    background: #f8fafc !important;
}
html:not([data-theme="dark"]) .notification-item {
    background: #ffffff !important;
    border: 1px solid rgba(37, 99, 235, 0.18) !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12) !important;
}
html:not([data-theme="dark"]) .notification-time {
    color: #6b7280 !important;
}
html:not([data-theme="dark"]) .notification-text {
    color: #111827 !important;
}
html:not([data-theme="dark"]) .notification-location,
html:not([data-theme="dark"]) .notification-package {
    color: #10b981 !important;
}
/* TÜM YAZILAR İÇİN ULTRA GÜÇLÜ KONTRAST */
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, 
[data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* Kaldırıldı: Tüm p/span/div'leri zorla beyaza çeviren çakışmalı kural.
   Karta özgü dark mode renkleri ilgili bileşen kuralı içinde tanımlı. */
[data-theme="dark"] .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9) !important;
}
[data-theme="dark"] .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9) !important;
}
[data-theme="dark"] .section-title {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
[data-theme="dark"] .section-subtitle {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* CANLI BİLDİRİMLER İÇİN */
[data-theme="dark"] .notification, [data-theme="dark"] .live-notification {
    background: #1e293b !important;
    background-color: #1e293b !important;
    color: #ffffff !important;
    border: 1px solid #475569 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
[data-theme="dark"] .notification-text, [data-theme="dark"] .motivation-content span {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* SERVİS KARTLARI İÇİN */
[data-theme="dark"] .service-item {
    background: #1e293b !important;
    background-color: #1e293b !important;
    border: 2px solid #475569 !important;
    color: #ffffff !important;
}
[data-theme="dark"] .service-name {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* PRICING KARTLARI İÇİN */
[data-theme="dark"] .pricing-card {
    background: #1e293b !important;
    background-color: #1e293b !important;
    border: 2px solid #475569 !important;
    color: #ffffff !important;
}
[data-theme="dark"] .pricing-card h3, [data-theme="dark"] .pricing-card p {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
[data-theme="dark"] .feature-item span {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* FAQ ITEMS ULTRA FIXES */
[data-theme="dark"] .faq-item {
    background: #334155 !important;
    background-color: #334155 !important;
    background-image: none !important;
    border: 1px solid #475569 !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-item:hover {
    background: #475569 !important;
    background-color: #475569 !important;
    background-image: none !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4) !important;
    border-color: #64748b !important;
}
[data-theme="dark"] .faq-item.active {
    background: #475569 !important;
    background-color: #475569 !important;
    background-image: none !important;
}
[data-theme="dark"] .faq-question {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .faq-question:hover {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .faq-answer {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #cbd5e1 !important;
}
[data-theme="dark"] .faq-item.active .faq-answer {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .faq-question h3 {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
[data-theme="dark"] .faq-answer p {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* CANLI BİLDİRİM VE PAKET YAZILARI - TEMİZ (hero CTA motivation-banner hariç) */
[data-theme="dark"] .shopping-counter {
    background: #1e40af !important;
    background-color: #1e40af !important;
    background-image: none !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    border: 2px solid #3b82f6 !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #3b82f6 !important;
    transition: all 0.3s ease !important;
    margin: 2rem 0 !important;
}
[data-theme="dark"] .counter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .notification-text, [data-theme="dark"] .motivation-content span {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
}
/* GECE MODU NOTIFICATION TIME - TEMİZ */
[data-theme="dark"] .notification-time {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #94a3b8 !important;
    font-size: 0.75rem !important;
    margin-bottom: 4px !important;
    font-weight: 500 !important;
    pointer-events: none !important;
    user-select: none !important;
    cursor: default !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
}
[data-theme="dark"] .counter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}
[data-theme="dark"] .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* PAKET YAZILARI İÇİN */
[data-theme="dark"] .pricing-card .pricing-features .feature-item {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #ffffff !important;
}
[data-theme="dark"] .pricing-card .pricing-features .feature-item span {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 600 !important;
}
[data-theme="dark"] .pricing-card .pricing-features .feature-item i {
    color: #10b981 !important;
}
/* SERVİS BUTONLARI ULTRA FIX - GERÇEKÇİ RENKLER */
[data-theme="dark"] .service-item {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    border: 2px solid #475569 !important;
    color: #ffffff !important;
}
[data-theme="dark"] .service-item * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
/* Instagram servisi için pembe renk */
[data-theme="dark"] .service-item:nth-child(1) .service-icon,
[data-theme="dark"] .service-item .service-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background-color: #e1306c !important;
}
/* TikTok servisi için siyah renk */
[data-theme="dark"] .service-item:nth-child(2) .service-icon,
[data-theme="dark"] .service-item .service-icon.tiktok {
    background: #000000 !important;
    background-color: #000000 !important;
}
/* Discord servisi için mor renk */
[data-theme="dark"] .service-item:nth-child(3) .service-icon,
[data-theme="dark"] .service-item .service-icon.discord {
    background: #5865f2 !important;
    background-color: #5865f2 !important;
}
/* YouTube servisi için kırmızı renk */
[data-theme="dark"] .service-item:nth-child(4) .service-icon,
[data-theme="dark"] .service-item .service-icon.youtube {
    background: #ff0000 !important;
    background-color: #ff0000 !important;
}
/* Yeni eklenen platformlar - kendi marka renkleri (gece+gündüz) */
.platform-kick .service-icon,
[data-theme="dark"] .platform-kick .service-icon {
    background: linear-gradient(135deg, #53fc18, #2ecf07) !important;
    background-color: #53fc18 !important;
    background-image: linear-gradient(135deg, #53fc18, #2ecf07) !important;
}
.platform-x .service-icon,
[data-theme="dark"] .platform-x .service-icon {
    background: linear-gradient(135deg, #0f172a, #000000) !important;
    background-color: #000000 !important;
    background-image: linear-gradient(135deg, #0f172a, #000000) !important;
}
.platform-telegram .service-icon,
[data-theme="dark"] .platform-telegram .service-icon {
    background: linear-gradient(135deg, #229ED9, #0088cc) !important;
    background-color: #229ED9 !important;
    background-image: linear-gradient(135deg, #229ED9, #0088cc) !important;
}
.platform-twitch .service-icon,
[data-theme="dark"] .platform-twitch .service-icon {
    background: linear-gradient(135deg, #9146FF, #6441A5) !important;
    background-color: #9146FF !important;
    background-image: linear-gradient(135deg, #9146FF, #6441A5) !important;
}
.platform-spotify .service-icon,
[data-theme="dark"] .platform-spotify .service-icon {
    background: linear-gradient(135deg, #1DB954, #1ed760) !important;
    background-color: #1DB954 !important;
    background-image: linear-gradient(135deg, #1DB954, #1ed760) !important;
}
.platform-threads .service-icon,
[data-theme="dark"] .platform-threads .service-icon {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
}
/* ==================================================================== */
/* === SNAPCHAT GERÇEK LOGOSU (img) — Font Awesome ikonu yerine === */
/* ==================================================================== */
.snapchat-img-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    object-fit: contain;
    vertical-align: -0.18em;
    line-height: 1;
    border-radius: 4px;
    background: transparent;
}
/* Anasayfa "Sosyal Medyada Trend Ol" kartı: logoyu büyük ve container'ın
   sarı arka planı olmadan göster (logo zaten sarı kare şeklinde) */
.platform-snapchat .service-icon {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    overflow: visible !important;
}
.platform-snapchat .service-icon .snapchat-img-icon {
    width: 34px !important;
    height: 34px !important;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain !important;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
[data-theme="dark"] .platform-snapchat .service-icon {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .platform-snapchat .service-icon .snapchat-img-icon {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
/* Dropdown menüsündeki Snapchat — küçük ve hizalı */
.dropdown-menu .snapchat-img-icon,
.dropdown-content .snapchat-img-icon,
.nav-dropdown .snapchat-img-icon,
.dropdown-snapchat-img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 0.4rem;
}
/* Paket başlığında (satın alma / package-header) — body .package-card .package-header i ile hizalı (~1.35rem) */
body .package-card .package-header .snapchat-img-icon,
.package-header .snapchat-img-icon {
    width: 1.5rem !important;
    height: 1.5rem !important;
    border-radius: 6px;
    flex-shrink: 0;
    object-fit: contain !important;
}
/* Sayfa başlığı (page-header'daki büyük logo) */
.page-header .snapchat-img-icon,
.platform-icon .snapchat-img-icon,
.platform-details .snapchat-img-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/* Footer & küçük inline kullanımlar */
.footer .snapchat-img-icon { width: 16px; height: 16px; border-radius: 3px; vertical-align: middle; }

/* === Snapchat sayfa hero'sundaki yüzen logolar (.floating-icons içinde) === */
/* .floating-icons i kuralı sadece <i> elementlerine uygulanır; <img> için de */
/* aynı boyut + animasyon + opacity verilmesi gerekiyor.                     */
.floating-icons img.snapchat-img-icon {
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 8px;
    opacity: 0.55;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    animation: float 6s ease-in-out infinite;
}
@media (max-width: 768px) {
    .floating-icons img.snapchat-img-icon {
        width: 1.8rem;
        height: 1.8rem;
    }
}
/* Inline font-size img'e etkisiz; yine de paket başlığında tutarlı boyut */
.package-header .snapchat-img-icon[style*="font-size"] {
    width: 1.5rem !important;
    height: 1.5rem !important;
}

/* === Snapchat sayfa navbarındaki logo (.logo .brand-mark içinde img) === */
/* Inline style="font-size:22px" img'e etki etmiyor; doğru boyut burada. */
.logo .brand-mark .snapchat-img-icon {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px;
}

/* === Snapchat *-servisleri sayfası HERO logosu === */
/* .platform-logo-large i { font-size: 48px } sadece <i> için; img'e        */
/* etkisi yok. Bu yüzden Snapchat'te küçük görünüyor — düzelt:              */
.platform-logo-large img.snapchat-img-icon,
.platform-logo-large .snapchat-img-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    object-fit: contain;
}
@media (max-width: 768px) {
    .platform-logo-large img.snapchat-img-icon,
    .platform-logo-large .snapchat-img-icon {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Yeni eklenen platformlar (Facebook/Snapchat/Pinterest):
   açık ve karanlık temada AYNI düz marka rengi (inline style ile uyumlu) */
.platform-facebook .service-icon,
[data-theme="dark"] .platform-facebook .service-icon {
    background: #1877F2 !important;
    background-color: #1877F2 !important;
    background-image: none !important;
}
.platform-facebook .service-icon i,
[data-theme="dark"] .platform-facebook .service-icon i { color: #ffffff !important; }

.platform-snapchat .service-icon,
[data-theme="dark"] .platform-snapchat .service-icon {
    background: #FFFC00 !important;
    background-color: #FFFC00 !important;
    background-image: none !important;
}
.platform-snapchat .service-icon i,
[data-theme="dark"] .platform-snapchat .service-icon i { color: #000000 !important; }

.platform-pinterest .service-icon,
[data-theme="dark"] .platform-pinterest .service-icon {
    background: #E60023 !important;
    background-color: #E60023 !important;
    background-image: none !important;
}
.platform-pinterest .service-icon i,
[data-theme="dark"] .platform-pinterest .service-icon i { color: #ffffff !important; }

/* LinkedIn — açık ve karanlık temada aynı düz marka rengi */
.platform-linkedin .service-icon,
[data-theme="dark"] .platform-linkedin .service-icon {
    background: #0A66C2 !important;
    background-color: #0A66C2 !important;
    background-image: none !important;
}
.platform-linkedin .service-icon i,
[data-theme="dark"] .platform-linkedin .service-icon i { color: #ffffff !important; }
.platform-linkedin:hover .service-icon { box-shadow: 0 0 20px rgba(10,102,194,0.45) !important; }
/* Dropdown menüsündeki LinkedIn ikonu için renk ve hover büyüme efekti */
.dropdown-item .fa-linkedin-in { color: #0A66C2 !important; transition: transform 0.2s ease; }
.dropdown-item:hover .fa-linkedin-in { transform: scale(1.25); }
/* Hover renk koruma — hiçbir hover stili tek renge sabitlemesin */
.platform-telegram:hover .service-icon { box-shadow: 0 0 20px rgba(34,158,217,0.4) !important; }
.platform-twitch:hover .service-icon   { box-shadow: 0 0 20px rgba(145,70,255,0.45) !important; }
.platform-spotify:hover .service-icon  { box-shadow: 0 0 20px rgba(29,185,84,0.45) !important; }
.platform-threads:hover .service-icon  { box-shadow: 0 0 20px rgba(0,0,0,0.45) !important; }
.platform-facebook:hover .service-icon { box-shadow: 0 0 20px rgba(24,119,242,0.45) !important; }
.platform-snapchat:hover .service-icon { box-shadow: 0 0 20px rgba(255,252,0,0.55) !important; }
.platform-pinterest:hover .service-icon{ box-shadow: 0 0 20px rgba(230,0,35,0.45) !important; }
[data-theme="dark"] .service-name {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
/* FEATURES BÖLÜMÜ ULTRA FIX - EN SON EKLENEN */
[data-theme="dark"] .features {
    background: #0f172a !important;
    background-color: #0f172a !important;
    background-image: none !important;
}
[data-theme="dark"] .features * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .features .features-grid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .features .feature-card {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .features .feature-card * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
/* BAŞARININ ANAHTARI YAZISI FIX */
[data-theme="dark"] .success-text {
    color: #10b981 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .section-title .success-text {
    color: #10b981 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8) !important;
}
/* ULTRA STRONG SUCCESS TEXT FIX - EN SON EKLENEN */
[data-theme="dark"] .success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .section-title .success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .features .section-title .success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .features h2 .success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .features .section-title span {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
/* FINAL ULTRA STRONG FIX FOR SUCCESS TEXT */
[data-theme="dark"] h2.section-title span.success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .features h2.section-title span.success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
[data-theme="dark"] .container h2.section-title span.success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
/* EN SON ÇARE - TÜM SPAN ELEMENTLERİ İÇİN */
[data-theme="dark"] .features span {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
}
/* SERVİS KISMI ARKASINI KOYU YAP - GECE MODU */
[data-theme="dark"] .animated-platforms {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    background-color: #0f172a !important;
    background-image: none !important;
}
[data-theme="dark"] .animated-platforms .container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .animated-platforms .section-title {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .animated-platforms .section-subtitle {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .animated-platforms .services-grid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .animated-platforms .service-item {
    background: linear-gradient(135deg, #334155 0%, #475569 100%) !important;
    background-color: #334155 !important;
    background-image: none !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
}
[data-theme="dark"] .animated-platforms .service-item:hover {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%) !important;
    background-color: #475569 !important;
    background-image: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4) !important;
}
/* TÜM SERVİS ELEMENTLERİ İÇİN GENEL KURALLAR */
[data-theme="dark"] .services {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    background-color: #0f172a !important;
    background-image: none !important;
}
[data-theme="dark"] .services .container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .services .section-title {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .services .section-subtitle {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .services-grid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .service-item {
    background: linear-gradient(135deg, #334155 0%, #475569 100%) !important;
    background-color: #334155 !important;
    background-image: none !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3) !important;
}
[data-theme="dark"] .service-item:hover {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%) !important;
    background-color: #475569 !important;
    background-image: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4) !important;
}
/* CANLI BİLDİRİMLER VE ALIŞVERİŞ KISMI - GECE MODU */
[data-theme="dark"] .live-shopping {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    background-color: #1e293b !important;
    background-image: none !important;
}
[data-theme="dark"] .live-shopping .container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .shopping-counter {
    background: #1e40af !important;
    background-color: #1e40af !important;
    background-image: none !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    border: 2px solid #3b82f6 !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #3b82f6 !important;
    transition: all 0.3s ease !important;
    margin: 2rem 0 !important;
}
[data-theme="dark"] .shopping-counter:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
    background: #1e40af !important;
    background-color: #1e40af !important;
    border: 2px solid #3b82f6 !important;
}
[data-theme="dark"] .counter-content {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    flex: 1 !important;
}
/* ULTRA GÜÇLÜ SHOPPING COUNTER FIX */
[data-theme="dark"] .shopping-counter,
[data-theme="dark"] div.shopping-counter,
[data-theme="dark"] .live-shopping .shopping-counter,
[data-theme="dark"] * .shopping-counter {
    background: #1e40af !important;
    background-color: #1e40af !important;
    background-image: none !important;
    border: 2px solid #3b82f6 !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #3b82f6 !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    transition: all 0.3s ease !important;
    margin: 2rem 0 !important;
}
[data-theme="dark"] .counter-text {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    flex-wrap: wrap !important;
}
/* ULTRA GÜÇLÜ COUNTER YAZI FIX */
[data-theme="dark"] .counter-text,
[data-theme="dark"] .shopping-counter .counter-text,
[data-theme="dark"] .live-shopping .counter-text,
[data-theme="dark"] * .counter-text {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
    flex-wrap: wrap !important;
}
[data-theme="dark"] .counter-number,
[data-theme="dark"] .shopping-counter .counter-number,
[data-theme="dark"] .live-shopping .counter-number,
[data-theme="dark"] * .counter-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #fbbf24 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}
[data-theme="dark"] .counter-label,
[data-theme="dark"] .shopping-counter .counter-label,
[data-theme="dark"] .live-shopping .counter-label,
[data-theme="dark"] * .counter-label {
    font-size: 1.2rem !important;
    color: #f1f5f9 !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
[data-theme="dark"] .live-indicator {
    background: #ef4444 !important;
    background-color: #ef4444 !important;
    background-image: none !important;
    color: white !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
    border: 2px solid #dc2626 !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    animation: blink 1.5s infinite !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
}
[data-theme="dark"] .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .counter-label {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .recent-orders {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .recent-orders .order-item {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%) !important;
    background-color: #475569 !important;
    background-image: none !important;
    border: none !important;
    border-left: 4px solid #fbbf24 !important;
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
    display: grid !important;
    grid-template-columns: 40px 1fr 90px 120px !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.8rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    min-height: 60px !important;
}
[data-theme="dark"] .recent-orders .order-item .order-text {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .recent-orders .order-item .order-time {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .recent-orders .order-item .profile-image {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #fbbf24 !important;
}
[data-theme="dark"] .recent-orders .order-item .order-avatar {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    border: 2px solid #fbbf24 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
}
[data-theme="dark"] .recent-orders .order-item i {
    color: #fbbf24 !important;
    font-size: 1.1rem !important;
}
[data-theme="dark"] .recent-orders .order-item .location {
    color: #fbbf24 !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    grid-column: 4 !important;
}
/* CANLI BİLDİRİM KONTEYNERİ - GECE MODU */
[data-theme="dark"] .live-notifications {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
[data-theme="dark"] .live-notification {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    background-color: #1e293b !important;
    background-image: none !important;
    border: none !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.5) !important;
    color: #f1f5f9 !important;
}
[data-theme="dark"] .live-notification .notification {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7) !important;
    border: none !important;
    box-shadow: none !important;
}
[data-theme="dark"] .live-notification .notification .user-name {
    color: #fbbf24 !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7) !important;
}
[data-theme="dark"] .live-notification .notification .service-name {
    color: #10b981 !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7) !important;
}
[data-theme="dark"] .live-notification .notification .quantity {
    color: #f1f5f9 !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7) !important;
}
[data-theme="dark"] .live-notification .notification .platform {
    color: #cbd5e1 !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7) !important;
}
[data-theme="dark"] .live-notification .notification .time {
    color: #94a3b8 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7) !important;
}
/* CANLI BİLDİRİM POPUP - TEMİZ */
/* GENEL KURALLAR KALDIRILDI - ÇAKIŞMA ÖNLENDİ */
/* ÇAKIŞAN GENEL KURAL KALDIRILDI */
/* MOTİVASYON BANNER - GECE MODU */
[data-theme="dark"] .motivation-banner {
    background: linear-gradient(135deg, #ea580c, #fbbf24) !important;
    background-color: transparent !important;
    background-image: linear-gradient(135deg, #ea580c, #fbbf24) !important;
    border: none !important;
    box-shadow: 0 8px 28px rgba(234, 88, 12, 0.38) !important;
    color: #ffffff !important;
}
[data-theme="dark"] .motivation-content {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .motivation-content .motivation-text {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .motivation-content .motivation-emoji {
    color: #fbbf24 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
/* GECE MODUNDA TÜM BORDER'LARI KALDIR - ULTRA GÜÇLÜ */
[data-theme="dark"] * {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}
[data-theme="dark"] *:focus {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    box-shadow: none !important;
}
[data-theme="dark"] *:hover {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}
[data-theme="dark"] *:active {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}
[data-theme="dark"] *:before {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
}
[data-theme="dark"] *:after {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
}
/* ÖZEL ELEMENTLER İÇİN BORDER KALDIRMA */
[data-theme="dark"] button,
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select,
[data-theme="dark"] div,
[data-theme="dark"] span,
[data-theme="dark"] p,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] a,
[data-theme="dark"] img,
[data-theme="dark"] section,
[data-theme="dark"] article,
[data-theme="dark"] header,
[data-theme="dark"] footer,
[data-theme="dark"] nav,
[data-theme="dark"] main,
[data-theme="dark"] aside {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}
/* FOTOĞRAFTA GÖRÜNEN SPESİFİK ÇİZGİLERİ KALDIR */
/* Header butonları */
[data-theme="dark"] .header .btn,
[data-theme="dark"] .header .btn-outline,
[data-theme="dark"] .header button {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Ana CTA butonu */
[data-theme="dark"] .hero .btn,
[data-theme="dark"] .hero .btn-primary,
[data-theme="dark"] .hero button {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* İstatistik kutuları */
[data-theme="dark"] .stats-grid .stat-item,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .stat-item {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Canlı alışveriş çubuğu */
[data-theme="dark"] .live-shopping {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Alışveriş sepeti ikonu */
[data-theme="dark"] .counter-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #1f2937 !important;
    border: 3px solid #fbbf24 !important;
    border-width: 3px !important;
    border-style: solid !important;
    border-color: #fbbf24 !important;
    outline: none !important;
    box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    animation: pulse 2s infinite !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}
[data-theme="dark"] .counter-icon:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 12px rgba(251, 191, 36, 0.5) !important;
    border-color: #f59e0b !important;
}
[data-theme="dark"] .shopping-cart-icon {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Header çizgisi */
[data-theme="dark"] .header {
    border-bottom: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Tüm butonlar için genel kural */
[data-theme="dark"] .btn,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-outline,
[data-theme="dark"] .btn-secondary {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Tüm kartlar için genel kural */
[data-theme="dark"] .card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .service-card {
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
/* GECE MODU SERVİS KARTLARI - KOYU ARKA PLAN */
[data-theme="dark"] .service-card {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    color: #f1f5f9 !important;
    border: 2px solid #475569 !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #475569 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
}
[data-theme="dark"] .service-card:hover {
    background: #334155 !important;
    background-color: #334155 !important;
    background-image: none !important;
    border-color: #60a5fa !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    transform: translateY(-5px) !important;
}
[data-theme="dark"] .service-card::before {
    background: linear-gradient(135deg, #60a5fa, #3b82f6) !important;
}
[data-theme="dark"] .service-header {
    color: #f1f5f9 !important;
}
[data-theme="dark"] .service-title {
    color: #f1f5f9 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .service-description {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .service-features {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .service-features li {
    color: #cbd5e1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .service-features i {
    color: #10b981 !important;
}
/* GECE MODU SERVİS DURUM ETİKETLERİ - GÜNDÜZ MODUYLA AYNI GÖRÜNÜM */
[data-theme="dark"] .service-status.active {
    background: #dcfce7 !important;
    background-color: #dcfce7 !important;
    background-image: none !important;
    color: #166534 !important;
    text-shadow: none !important;
    font-weight: 600 !important;
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
}
[data-theme="dark"] .service-status.inactive {
    background: #fee2e2 !important;
    background-color: #fee2e2 !important;
    background-image: none !important;
    color: #dc2626 !important;
    text-shadow: none !important;
    font-weight: 600 !important;
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    opacity: 0.7 !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
}
/* ULTRA GÜÇLÜ BORDER KALDIRMA - EN SON ÇARE */
[data-theme="dark"] *,
[data-theme="dark"] *::before,
[data-theme="dark"] *::after {
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-stroke-width: 0 !important;
    -webkit-text-stroke-color: transparent !important;
}
/* TÜM PSEUDO ELEMENTLER */
[data-theme="dark"] *:before,
[data-theme="dark"] *:after,
[data-theme="dark"] *::before,
[data-theme="dark"] *::after {
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}
/* TÜM DURUMLAR */
[data-theme="dark"] *:hover,
[data-theme="dark"] *:focus,
[data-theme="dark"] *:active,
[data-theme="dark"] *:visited,
[data-theme="dark"] *:link {
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}
/* SPESİFİK ELEMENTLER - ULTRA GÜÇLÜ */
[data-theme="dark"] button,
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select,
[data-theme="dark"] a,
[data-theme="dark"] div,
[data-theme="dark"] span,
[data-theme="dark"] p,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] section,
[data-theme="dark"] article,
[data-theme="dark"] header,
[data-theme="dark"] footer,
[data-theme="dark"] nav,
[data-theme="dark"] main,
[data-theme="dark"] aside,
[data-theme="dark"] ul,
[data-theme="dark"] ol,
[data-theme="dark"] li,
[data-theme="dark"] table,
[data-theme="dark"] tr,
[data-theme="dark"] td,
[data-theme="dark"] th,
[data-theme="dark"] form,
[data-theme="dark"] fieldset,
[data-theme="dark"] legend,
[data-theme="dark"] img,
[data-theme="dark"] svg,
[data-theme="dark"] canvas,
[data-theme="dark"] iframe,
[data-theme="dark"] object,
[data-theme="dark"] embed,
[data-theme="dark"] video,
[data-theme="dark"] audio {
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
/* ANINDA BORDER KALDIRMA - EN HIZLI */
html[data-theme="dark"] * {
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
/* YAKINDA KARTLARI STİLİ */
.coming-soon-card {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}
.coming-soon-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.coming-soon-content {
    text-align: center !important;
    padding: 2rem 1rem !important;
    color: #666 !important;
    font-style: italic !important;
}
.coming-soon-content p {
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
}
/* Gece modu için yakında kartları */
[data-theme="dark"] .coming-soon-card {
    background: linear-gradient(135deg, #334155 0%, #475569 100%) !important;
    border: 1px solid #64748b !important;
}
[data-theme="dark"] .coming-soon-card:hover {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
}
[data-theme="dark"] .coming-soon-content {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .coming-soon-content p {
    color: #cbd5e1 !important;
}
/* LIGHT MODE İÇİN DE YEŞİL RENK */
.success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}
.section-title .success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}
.features .section-title .success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}
.features h2.section-title span.success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}
.container h2.section-title span.success-text {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}
.success-text-fixed {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: #10b981 !important;
}
.discord-link {
    text-decoration: none;
    color: inherit;
}
.discord-icon {
    color: #5865F2;
}
.features span {
    color: #10b981 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    font-weight: 700 !important;
}
/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Profile Section */
.profile-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.profile-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}
.profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #3b82f6;
}
.profile-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}
.profile-details p {
    color: #6b7280;
    margin-bottom: 1rem;
}
.profile-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.balance-label {
    font-weight: 500;
    color: #374151;
}
.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile-btn {
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}
.profile-btn:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}
.profile-btn i {
    font-size: 1.2rem;
    color: #3b82f6;
}
/* Live Support Button */
.live-support {
    position: fixed;
    bottom: 2rem;
    right: 0;
    z-index: 1000;
}
.support-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 200px;
    animation: slideInRight 0.5s ease-out;
    position: relative;
}
.support-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #764ba2;
}
.support-message p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.support-message p:first-child {
    font-size: 16px;
    margin-bottom: 4px;
}
.support-message p:last-child {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
.support-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}
.support-btn i {
    font-size: 1.2rem;
}
.support-text {
    font-size: 0.9rem;
}
@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    }
}
/* Large Modal */
.large-modal {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
}
.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #374151;
}
.service-features li i {
    color: #059669;
    font-size: 0.9rem;
}
.service-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.service-status.active {
    background: #dcfce7;
    color: #166534;
}
.service-status.inactive {
    background: #fee2e2;
    color: #dc2626;
    opacity: 0.7;
}
.service-purchase-btn {
    margin-top: 1rem;
    width: 100%;
}
/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #3b82f6;
    background: #f8fafc !important;
    background-color: #f8fafc !important;
    background-image: none !important;
}
.faq-item.active {
    background: white;
}
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-bottom: none;
    transition: all 0.3s ease;
}
.faq-item.active .faq-question {
    border-bottom: 1px solid #e5e7eb;
}
.faq-question:hover {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}
.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}
.faq-question i {
    color: #3b82f6;
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
    opacity: 0;
    visibility: hidden;
}
.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    background: white;
}
.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}
/* Auth Form Styles */
.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}
.tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}
.tab-btn:hover {
    color: #3b82f6;
}
.auth-form {
    display: none;
}
.auth-form.active {
    display: block;
}
.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}
.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group input.error {
    border-color: #ef4444;
}
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}
.error-message.show {
    display: block;
}
.password-requirements {
    margin-top: 0.5rem;
}
.password-requirements small {
    color: #6b7280;
    font-size: 0.75rem;
}
.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}
.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}
.btn-google {
    background: #db4437;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-google:hover {
    background: #c23321;
    transform: translateY(-2px);
}
.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}
.auth-footer {
    text-align: center;
    margin-top: 1rem;
}
.auth-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
}
.auth-footer a:hover {
    text-decoration: underline;
}
/* Chat Modal Styles */
.chat-modal {
    max-width: 400px;
    height: 550px;
    display: none;
    flex-direction: column;
    padding: 0;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 10000;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    background: white;
}
.chat-modal.show {
    display: flex;
    transform: translateY(0);
}
.chat-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}
.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}
.chat-title i {
    font-size: 20px;
}
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar {
    width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}
.bot-message {
    align-self: flex-start;
}
.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bot-message .message-avatar {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}
.user-message .message-avatar {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}
.assistant-logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}
.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.bot-message .message-content {
    border-bottom-left-radius: 4px;
}
.user-message .message-content {
    border-bottom-right-radius: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}
.message-content p {
    margin: 0;
    line-height: 1.4;
}
.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.quick-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    white-space: nowrap;
}
.quick-btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.quick-btn i {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quick-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}
.chat-input {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
    border-radius: 0 0 10px 10px;
}
#chat-input-field {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s ease;
}
#chat-input-field:focus {
    border-color: #3b82f6;
}
#chat-send-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
#chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-style: italic;
    font-size: 14px;
}
.typing-dots {
    display: flex;
    gap: 3px;
}
.typing-dots span {
    width: 6px;
    height: 6px;
    background: #64748b;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}
.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}
/* Responsive Chat */
@media (max-width: 768px) {
    .live-support {
        right: 0;
    }
    .support-message {
        max-width: 180px;
        padding: 10px 12px;
        margin-bottom: 8px;
    }
    .support-message p:first-child {
        font-size: 14px;
    }
    .support-message p:last-child {
        font-size: 11px;
    }
    .chat-modal {
        max-width: 90%;
        height: 60vh;
        bottom: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .message {
        max-width: 90%;
    }
    .quick-options {
        flex-direction: column;
    }
    .quick-btn {
        text-align: center;
    }
    .scroll-to-top {
        bottom: 2rem;
        right: 1rem;
        left: auto;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .live-notifications {
        bottom: 5rem;
        right: 1rem;
        left: auto;
        max-width: 250px;
    }
    .notification-item {
        padding: 10px 12px;
        margin-bottom: 6px;
    }
    .notification-text {
        font-size: 0.8rem;
    }
}

/* Sipariş numarası kopyalama butonu */
.copy-order-btn {
    background: #3b82f6;
    border: none;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.copy-order-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.order-number-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-number-value {
    font-family: monospace;
    font-weight: 600;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* Sipariş sorgulama input'u için özel stiller */
#orderNumber {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    pointer-events: auto !important;
    cursor: text !important;
}

/* ==================== LIGHT MODE TUTARLI KUTU TASARIMI ==================== */
/* Light mode'da da feature/pricing kartları aynı kutu yapısında olsun */
html:not([data-theme="dark"]) .package-card .package-pricing .price-info {
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
}
html:not([data-theme="dark"]) .package-card .package-pricing .final-price {
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 0.8rem !important;
    color: #10b981 !important;
}
html:not([data-theme="dark"]) .package-card .package-features .feature-item {
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
}

/* ==================== DARK MODE FULL OVERRIDE ==================== */
/* Satış sayfalarındaki feature kartlarını ve fiyat bölümünü koyu yap */
html[data-theme="dark"] .package-card,
html[data-theme="dark"] body .package-card {
    background: #0f172a !important;
    background-color: #0f172a !important;
    border: 1px solid #1e293b !important;
}
html[data-theme="dark"] .package-card .package-features,
html[data-theme="dark"] body .package-card .package-features {
    background: #0f172a !important;
    background-color: #0f172a !important;
}
html[data-theme="dark"] .package-card .package-features .feature-item,
html[data-theme="dark"] body .package-card .package-features .feature-item,
html[data-theme="dark"] .feature-item {
    background: #1e293b !important;
    background-color: #1e293b !important;
    background-image: none !important;
    border: 1px solid #334155 !important;
}
html[data-theme="dark"] .package-card .package-features .feature-item span,
html[data-theme="dark"] body .package-card .package-features .feature-item span,
html[data-theme="dark"] .feature-item span {
    color: #e2e8f0 !important;
    background: transparent !important;
}
html[data-theme="dark"] .package-card .package-features .feature-item i,
html[data-theme="dark"] body .package-card .package-features .feature-item i,
html[data-theme="dark"] .feature-item i {
    color: #60a5fa !important;
    background: transparent !important;
}
html[data-theme="dark"] .package-card .package-pricing,
html[data-theme="dark"] body .package-card .package-pricing {
    background: #0f172a !important;
    background-color: #0f172a !important;
    background-image: none !important;
    border-top: 1px solid #1e293b !important;
}
html[data-theme="dark"] .package-card .package-pricing .price-info,
html[data-theme="dark"] body .package-card .package-pricing .price-info {
    background: #1e293b !important;
    background-color: #1e293b !important;
    border: 1px solid #334155 !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
}
html[data-theme="dark"] .package-card .package-pricing .original-price {
    color: #94a3b8 !important;
    background: transparent !important;
}
html[data-theme="dark"] .package-card .package-pricing .discount {
    background: #10b981 !important;
    color: #ffffff !important;
}
html[data-theme="dark"] .package-card .package-pricing .final-price,
html[data-theme="dark"] body .package-card .package-pricing .final-price {
    color: #10b981 !important;
    background: #1e293b !important;
    background-color: #1e293b !important;
    border: 1px solid #334155 !important;
    border-radius: 10px !important;
    padding: 0.8rem !important;
}

/* Sadece Ctrl+A ile seçim yapılabilir */
#orderNumber:focus {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

:root {
    --floating-right-offset: 2rem;
    --floating-order-width: 320px;
    --scroll-button-size: 50px;
    --floating-stack-gap: 0.9rem;
}

.live-notifications {
    left: var(--floating-right-offset) !important;
    right: auto !important;
    bottom: 2rem !important;
    width: min(var(--floating-order-width), calc(100vw - 2 * var(--floating-right-offset))) !important;
    max-width: min(var(--floating-order-width), calc(100vw - 2 * var(--floating-right-offset))) !important;
    isolation: isolate !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
    overflow: visible !important;
}

.notification-item,
.live-notifications .notification-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.45rem !important;
    padding: 1.15rem 1rem 0.95rem !important;
    margin: 0 !important;
    border: 1px solid rgba(37, 99, 235, 0.16) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16) !important;
    overflow: hidden !important;
    transform: none !important;
    animation: notificationIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both !important;
    will-change: transform, opacity, max-height;
    max-height: 240px;
}

.notification-item::before,
.live-notifications .notification-item::before {
    content: '' !important;
    position: absolute !important;
    top: 6px !important;
    left: 14px !important;
    right: 14px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%) !important;
    animation: progressBar 8s linear forwards !important;
    transform-origin: left center !important;
    pointer-events: none !important;
}

.notification-item.is-exiting,
.live-notifications .notification-item.is-exiting {
    pointer-events: none !important;
    animation: notificationOut 0.4s cubic-bezier(0.4, 0, 1, 1) forwards !important;
    overflow: hidden !important;
}

.notification-item.is-exiting::before {
    opacity: 0 !important;
    animation: none !important;
}

.notification-time {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    max-width: fit-content !important;
    padding: 0.22rem 0.55rem !important;
    border-radius: 999px !important;
    background: rgba(15, 23, 42, 0.06) !important;
    color: #64748b !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}

.notification-text {
    margin: 0 !important;
    color: #0f172a !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.notification-location {
    color: #2563eb !important;
}

.notification-package {
    color: #059669 !important;
}

.live-notifications .notification-item:last-child {
    margin-bottom: 0 !important;
}

@keyframes notificationIn {
    from {
        transform: translateX(-110%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationOut {
    0% {
        transform: translateX(0);
        opacity: 1;
        max-height: 240px;
        margin-bottom: 0;
        padding-top: 1.15rem;
        padding-bottom: 0.95rem;
        border-width: 1px;
    }
    60% {
        transform: translateX(-110%);
        opacity: 0;
        max-height: 240px;
    }
    100% {
        transform: translateX(-110%);
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
    }
}

.scroll-to-top {
    right: var(--floating-right-offset) !important;
    left: auto !important;
}

.persistent-order-reminder {
    position: fixed;
    right: var(--floating-right-offset);
    bottom: 10.2rem;
    z-index: 99998;
    width: min(var(--floating-order-width), calc(100vw - 2 * var(--floating-right-offset)));
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
}

.persistent-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    gap: 0.75rem;
}

.persistent-order-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 700;
}

.persistent-order-close {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
}

.persistent-order-code-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.persistent-order-code-row code {
    flex: 1;
    display: block;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
}

.persistent-order-actions {
    margin-top: 0.85rem;
}

.persistent-order-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

html[data-theme="dark"] .notification-item,
html[data-theme="dark"] .persistent-order-reminder {
    background: rgba(15, 23, 42, 0.94) !important;
    color: #e2e8f0 !important;
    border-color: rgba(148, 163, 184, 0.15) !important;
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.46) !important;
}

html[data-theme="dark"] .notification-text {
    color: #e2e8f0 !important;
}

html[data-theme="dark"] .notification-time {
    background: rgba(148, 163, 184, 0.12) !important;
    color: #cbd5e1 !important;
}

html[data-theme="dark"] .notification-item::before {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%) !important;
}

html[data-theme="dark"] .persistent-order-badge {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
}

html[data-theme="dark"] .persistent-order-close {
    background: rgba(148, 163, 184, 0.14);
    color: #cbd5e1;
}

@media (max-width: 768px) {
    :root {
        --floating-right-offset: 1rem;
        --floating-order-width: min(280px, calc(100vw - 5.9rem));
        --scroll-button-size: 50px;
    }

    .persistent-order-reminder {
        bottom: 9.6rem;
    }

    .live-notifications {
        right: calc(var(--floating-right-offset) + var(--scroll-button-size) + 0.75rem) !important;
        bottom: 1rem !important;
    }
}

main,
.main-content {
    flex: 1 0 auto;
}

.footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.dropdown-item i {
    color: #3b82f6 !important;
    transition: none !important;
}

.dropdown-item:hover i,
.dropdown-item:focus-visible i {
    color: #3b82f6 !important;
}

.platform-logo .platform-mark {
    position: absolute;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.22));
}

.platform-logo .platform-mark i {
    position: static;
    font-size: 2.7rem;
    opacity: 1;
    text-shadow: none;
}

.platform-logo .platform-mark svg,
.platform-logo .platform-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* SOL TARAF - 7 platform dikey dağılım */
.left-platforms .platform-mark.instagram-mark { top: 5%;  left: -4px; }
.left-platforms .platform-mark.facebook-mark  { top: 18%; left: 18px; }
.left-platforms .platform-mark.tiktok-mark    { top: 31%; left: 4px;  }
.left-platforms .platform-mark.threads-mark   { top: 44%; left: 22px; }
.left-platforms .platform-mark.youtube-mark   { top: 57%; left: -2px; }
.left-platforms .platform-mark.telegram-mark  { top: 70%; left: 16px; }
.left-platforms .platform-mark.twitch-mark    { top: 83%; left: 0px;  }

/* SAĞ TARAF - 7 platform dikey dağılım */
.right-platforms .platform-mark.discord-mark  { top: 5%;  right: 8px;  }
.right-platforms .platform-mark.snapchat-mark { top: 18%; right: 20px; }
.platform-logo .x-mark                        { top: 31%; right: 12px; }
.right-platforms .platform-mark.spotify-mark  { top: 44%; right: 22px; }
.platform-logo .kick-mark                     { top: 57%; right: -4px; }
.right-platforms .platform-mark.pinterest-mark{ top: 70%; right: 14px; }
.right-platforms .platform-mark.linkedin-mark { top: 83%; right: 2px;  }

/* Marka renkleri */
.right-platforms .discord-mark i   { color: #5865f2 !important; }
.right-platforms .snapchat-mark i  { color: #FFFC00 !important; text-shadow: 0 0 2px rgba(0,0,0,0.45), 0 2px 10px rgba(0,0,0,0.3) !important; }
.right-platforms .spotify-mark i   { color: #1DB954 !important; }
.right-platforms .pinterest-mark i { color: #E60023 !important; }
.right-platforms .linkedin-mark i  { color: #0A66C2 !important; }
.left-platforms  .facebook-mark i  { color: #1877F2 !important; }
.left-platforms  .threads-mark i   { color: #000000 !important; }
.left-platforms  .telegram-mark i  { color: #229ED9 !important; }
.left-platforms  .twitch-mark i    { color: #9146FF !important; }

.platform-logo .x-mark svg {
    filter: none;
}

html[data-theme="dark"] .platform-logo .platform-mark {
    opacity: 0.62;
    filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.46));
}

html[data-theme="dark"] .platform-logo .platform-mark i {
    opacity: 1 !important;
}

html[data-theme="dark"] .platform-logo .x-mark svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

html[data-theme="dark"] .platform-logo .kick-mark img {
    filter: drop-shadow(0 0 10px rgba(83, 252, 24, 0.24));
}

html[data-theme="dark"] .right-platforms .discord-mark i {
    color: #7380ff !important;
}

/* Sütun sayısı: html body .animated-platforms .services-grid (7 sütun = 2×7) */
.animated-platforms .services-grid {
    align-items: stretch;
}

.animated-platforms .service-item {
    min-height: 158px;
}

.animated-platforms .service-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    text-align: center;
    font-size: clamp(0.92rem, 1vw, 1rem);
    line-height: 1.15;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.platform-kick .service-icon img,
.platform-x .service-icon svg {
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;
}

.platform-kick .service-icon,
html[data-theme="dark"] .platform-kick .service-icon {
    background: linear-gradient(135deg, #53fc18, #2ecf07) !important;
}

.platform-kick:hover .service-icon,
html[data-theme="dark"] .platform-kick:hover .service-icon {
    background: linear-gradient(135deg, #53fc18, #2ecf07) !important;
    box-shadow: 0 0 20px rgba(83, 252, 24, 0.35) !important;
}

.platform-x .service-icon,
html[data-theme="dark"] .platform-x .service-icon {
    background: linear-gradient(135deg, #0f172a, #000000) !important;
}

.platform-x:hover .service-icon,
html[data-theme="dark"] .platform-x:hover .service-icon {
    background: linear-gradient(135deg, #0f172a, #000000) !important;
    box-shadow: 0 0 20px rgba(15, 23, 42, 0.34) !important;
}

.service-item:hover .platform-kick-icon-img,
.platform-kick:hover .service-icon img {
    transform: scale(1.2) !important;
    filter: drop-shadow(0 0 6px rgba(83, 252, 24, 0.35)) !important;
}

.platform-x:hover .service-icon svg {
    transform: scale(1.2) !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.28)) !important;
}

.review-avatar {
    object-fit: cover;
    background: #e5e7eb !important;
    border: 2px solid rgba(59, 130, 246, 0.18);
}

.reviews {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.1), transparent 36%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%) !important;
}

.reviews-track {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.75rem !important;
    align-items: stretch;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
}

.review-card {
    grid-column: span 2;
    max-width: none !important;
    min-height: 100%;
    border-radius: 22px !important;
    padding: 2rem 1.75rem 1.6rem !important;
    border: 1px solid rgba(148, 163, 184, 0.18) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%) !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06) !important;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card::before {
    display: none !important;
}

.review-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 50%, #38bdf8 100%);
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.review-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 55px rgba(37, 99, 235, 0.15) !important;
    border-color: rgba(96, 165, 250, 0.42) !important;
}

.review-quote-mark {
    position: absolute;
    top: 0.5rem;
    right: 1.1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(37, 99, 235, 0.12);
    pointer-events: none;
    user-select: none;
}

.review-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.review-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    color: #fbbf24;
    font-size: 0.95rem;
}

.review-rating i {
    color: #fbbf24;
}

.review-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.14);
    color: #b45309;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.review-text {
    margin: 0 !important;
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
    position: relative;
    z-index: 1;
}

.review-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.32);
}

.review-avatar {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid rgba(96, 165, 250, 0.32) !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
    margin: 0 !important;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.review-info h4 {
    margin: 0 !important;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 700;
}

.review-verified i {
    color: #14b8a6;
}

.review-date {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: right;
}

.review-card:nth-child(4):nth-last-child(2) {
    grid-column: 2 / span 2;
}

.review-card:nth-child(5):last-child {
    grid-column: 4 / span 2;
}

@media (max-width: 1180px) {
    .reviews-track {
        grid-template-columns: repeat(2, minmax(0, 320px));
    }

    .review-card {
        grid-column: auto !important;
    }
}

html[data-theme="dark"] .reviews {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 32%),
        linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
}

html[data-theme="dark"] .review-card {
    background:
        linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    border-color: rgba(96, 165, 250, 0.2) !important;
    box-shadow: 0 24px 48px rgba(2, 6, 23, 0.4) !important;
}

html[data-theme="dark"] .review-info h4,
html[data-theme="dark"] .review-text {
    color: #e2e8f0 !important;
}

html[data-theme="dark"] .review-date {
    color: #94a3b8 !important;
}

html[data-theme="dark"] .review-verified {
    color: #5eead4 !important;
}

html[data-theme="dark"] .review-verified i {
    color: #5eead4 !important;
}

html[data-theme="dark"] .review-rating-pill {
    background: rgba(251, 191, 36, 0.18);
    color: #fcd34d;
}

html[data-theme="dark"] .review-quote-mark {
    color: rgba(96, 165, 250, 0.22);
}

html[data-theme="dark"] .review-footer {
    border-top-color: rgba(148, 163, 184, 0.22);
}

html[data-theme="dark"] .review-avatar {
    border-color: rgba(96, 165, 250, 0.32) !important;
}

@media (max-width: 768px) {
    .reviews-track {
        grid-template-columns: 1fr !important;
        max-width: 100%;
    }
}

.package-header span,
.service-header h1,
.page-header .header-content h1,
.page-header .platform-details h1 {
    font-size: clamp(0.92rem, 1.55vw, 1.1rem) !important;
    line-height: 1.15 !important;
    text-wrap: balance;
    word-break: keep-all;
}

.package-header {
    flex-wrap: nowrap !important;
}

.page-header { position: relative; }
.page-header .header-background,
.page-header .floating-icons {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}
.page-header .header-content {
    width: 100% !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.85rem !important;
    text-align: center !important;
    position: relative;
    z-index: 2;
}

.page-header .header-content h1,
.page-header .header-content p {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
    align-self: center !important;
}

.page-header .header-content p {
    max-width: none !important;
}

@media (max-width: 768px) {
    .page-header .header-content {
        align-items: center !important;
        text-align: center !important;
    }
}

.references .reference-card,
html[data-theme="dark"] .references .reference-card,
html[data-theme="dark"] .references .reference-logo,
html[data-theme="dark"] .references .reference-info {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

html[data-theme="dark"] .references .reference-card {
    padding-inline: 0 !important;
}

@media (max-width: 768px) {
    .platform-logo .platform-mark {
        width: 40px;
        height: 40px;
    }

    .animated-platforms .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .animated-platforms .service-name {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .animated-platforms .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.9rem !important;
    }

    .animated-platforms .service-item {
        min-height: 142px;
        padding: 1rem 0.8rem;
    }

    .animated-platforms .service-name {
        min-height: 2.2rem;
        font-size: 0.86rem;
    }
}

/* ============================================================ */
/* PLATFORM SERVİS LİSTELEME SAYFALARI — EŞİT KART BOYUTLARI    */
/* (spotify-, twitch-, telegram-, threads-, instagram-,         */
/*  youtube-, tiktok-, discord-, kick-, x- *-servisleri.html)   */
/* ============================================================ */
body .services-grid {
    align-items: stretch !important;
    grid-auto-rows: 1fr !important;
}
body .services-grid > .service-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    padding: 2rem 1.25rem !important;
}
body .services-grid > .service-card .service-icon {
    flex-shrink: 0;
    margin-bottom: 1rem !important;
}
body .services-grid > .service-card h3 {
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.6rem !important;
    word-break: break-word;
    hyphens: auto;
}
body .services-grid > .service-card p {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin: 0 !important;
}
@media (max-width: 480px) {
    body .services-grid > .service-card h3 { min-height: 0; }
}

/* ============================================================ */
/* DROPDOWN: Yeni platformlar TREND OL kartlarındaki gibi       */
/* yuvarlak gradient rozetli ikon olarak görünsün               */
/* (yüksek özgüllük: sayfa içi inline <style>'ları yener)       */
/* ============================================================ */
html body .header .dropdown-menu .dropdown-item .fab.fa-telegram,
html body .header .dropdown-item .fab.fa-telegram,
html body .header .dropdown-menu .dropdown-item .fab.fa-twitch,
html body .header .dropdown-item .fab.fa-twitch,
html body .header .dropdown-menu .dropdown-item .fab.fa-spotify,
html body .header .dropdown-item .fab.fa-spotify,
html body .header .dropdown-menu .dropdown-item .fab.fa-instagram,
html body .header .dropdown-item .fab.fa-instagram,
html body .header .dropdown-menu .dropdown-item .fab.fa-tiktok,
html body .header .dropdown-item .fab.fa-tiktok,
html body .header .dropdown-menu .dropdown-item .fab.fa-youtube,
html body .header .dropdown-item .fab.fa-youtube,
html body .header .dropdown-menu .dropdown-item .fab.fa-discord,
html body .header .dropdown-item .fab.fa-discord,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-telegram,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-telegram,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-twitch,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-twitch,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-spotify,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-spotify,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-instagram,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-instagram,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-tiktok,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-tiktok,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-youtube,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-youtube,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-discord,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-discord {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    text-shadow: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18) !important;
    background-clip: padding-box !important;
    -webkit-background-clip: padding-box !important;
    -webkit-background-clip: border-box !important;
    padding: 0 !important;
}

/* Marka renkleri (gece+gündüz aynı, TREND OL kartlarıyla birebir) */
html body .header .dropdown-menu .dropdown-item .fab.fa-instagram,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html body .header .dropdown-menu .dropdown-item .fab.fa-tiktok,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-tiktok {
    background: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html body .header .dropdown-menu .dropdown-item .fab.fa-youtube,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-youtube {
    background: #FF0000 !important;
    background-image: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html body .header .dropdown-menu .dropdown-item .fab.fa-discord,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-discord {
    background: #5865F2 !important;
    background-image: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html body .header .dropdown-menu .dropdown-item .fab.fa-telegram,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-telegram {
    background: linear-gradient(135deg, #229ED9, #0088cc) !important;
    background-image: linear-gradient(135deg, #229ED9, #0088cc) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html body .header .dropdown-menu .dropdown-item .fab.fa-twitch,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-twitch {
    background: linear-gradient(135deg, #9146FF, #6441A5) !important;
    background-image: linear-gradient(135deg, #9146FF, #6441A5) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html body .header .dropdown-menu .dropdown-item .fab.fa-spotify,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-spotify {
    background: linear-gradient(135deg, #1DB954, #1ed760) !important;
    background-image: linear-gradient(135deg, #1DB954, #1ed760) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Hover'da renk korunur, sadece scale uygulanır (önceki kuralla uyumlu) */
html body .header .dropdown-item:hover .fab.fa-instagram,
html body .header .dropdown-item:hover .fab.fa-tiktok,
html body .header .dropdown-item:hover .fab.fa-youtube,
html body .header .dropdown-item:hover .fab.fa-discord,
html body .header .dropdown-item:hover .fab.fa-telegram,
html body .header .dropdown-item:hover .fab.fa-twitch,
html body .header .dropdown-item:hover .fab.fa-spotify {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* X (kendi SVG'si) ve Kick (kendi <img>'si) — aynı rozet stilinde */
html body .header .dropdown-menu .dropdown-item .dropdown-platform-icon,
html body .header .dropdown-item .dropdown-platform-icon,
html[data-theme="dark"] body .header .dropdown-item .dropdown-platform-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    padding: 5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18) !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    object-fit: contain;
}
/* Kick — yeşil gradient + beyaz logo */
html body .header .dropdown-item img.dropdown-platform-icon[src*="kick"],
html[data-theme="dark"] body .header .dropdown-item img.dropdown-platform-icon[src*="kick"] {
    background: linear-gradient(135deg, #53fc18, #2ecf07) !important;
    background-image: linear-gradient(135deg, #53fc18, #2ecf07) !important;
}
/* X & Threads — siyah arkaplan + beyaz icon */
html body .header .dropdown-item svg.dropdown-platform-icon,
html[data-theme="dark"] body .header .dropdown-item svg.dropdown-platform-icon {
    background: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
    fill: #ffffff !important;
}
html body .header .dropdown-item svg.dropdown-platform-icon path,
html[data-theme="dark"] body .header .dropdown-item svg.dropdown-platform-icon path {
    fill: #ffffff !important;
}

/* Hover'da rozet rengi korunur, sadece scale uygulanır (önceki kural ile uyumlu) */

/* ============================================================ */
/* TREND OL kartları — gece+gündüz tıpatıp aynı görünsün       */
/* (sadece dış kart arka planı tema değiştirir; içerideki       */
/*  yuvarlak ikon, marka rengi ve beyaz icon her iki temada     */
/*  birebir aynı olacak şekilde sabitlenmiş)                    */
/* ============================================================ */
.animated-platforms .service-item .service-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
[data-theme="dark"] .animated-platforms .service-item .service-icon {
    box-shadow: 0 4px 12px rgba(0,0,0,0.45) !important;
}
.animated-platforms .service-item:hover .service-icon {
    transform: scale(1.08);
}

/* ============================================================ */
/* RESPONSIVE BREAKPOINTLER — TAM MOBIL/TABLET/DESKTOP UYUMU    */
/* 320px: küçük telefonlar (iPhone SE)                          */
/* 1024px: tablet manzara / küçük laptop                        */
/* ============================================================ */

/* ---------- 1024px: tablet manzara / küçük laptop ---------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-stats {
        gap: 2rem;
    }
    .platforms-grid,
    .packages-grid,
    .features-grid,
    .pricing-grid,
    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
        gap: 1.25rem !important;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
        gap: 1.25rem !important;
    }
    .platform-page-header {
        padding: 3rem 1.5rem !important;
    }
    .platform-page-header h1 {
        font-size: 2.4rem !important;
    }
    .platform-page-header p {
        font-size: 1.05rem !important;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

/* ---------- 768px ek tampon: header taşmasın ---------- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .header-content {
        padding: 0.5rem 0;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .platform-page-header {
        padding: 2.5rem 1rem !important;
        margin: 1rem 0 !important;
    }
    .platform-page-header h1 {
        font-size: 2rem !important;
    }
    .platform-page-header p {
        font-size: 0.95rem !important;
    }
    .platform-logo-large {
        width: 64px !important;
        height: 64px !important;
    }
    .platform-logo-large svg,
    .platform-logo-large i,
    .platform-logo-large img {
        width: 36px !important;
        height: 36px !important;
        font-size: 36px !important;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
        gap: 1rem !important;
    }
    .service-card {
        padding: 1.5rem 1rem !important;
    }
    .service-card h3 {
        font-size: 1.15rem !important;
    }
    .service-card p {
        font-size: 0.9rem !important;
    }
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-section ul {
        justify-content: center;
    }
    .order-search-dropdown {
        min-width: 280px !important;
        max-width: calc(100vw - 2rem) !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px) !important;
    }
}

/* ---------- 480px: küçük tablet / büyük telefon ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .platform-page-header {
        padding: 2rem 0.75rem !important;
        border-radius: 14px !important;
    }
    .platform-page-header h1 {
        font-size: 1.6rem !important;
    }
    .platform-page-header p {
        font-size: 0.85rem !important;
        max-width: 100% !important;
    }
    .platform-logo-large {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 1rem !important;
        padding: 0.75rem !important;
    }
    .platform-logo-large svg,
    .platform-logo-large i,
    .platform-logo-large img {
        width: 30px !important;
        height: 30px !important;
        font-size: 30px !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }
    .service-card {
        padding: 1.25rem 0.85rem !important;
        border-radius: 12px !important;
    }
    .service-card .service-icon {
        width: 52px !important;
        height: 52px !important;
    }
    .service-card .service-icon i {
        font-size: 22px !important;
    }
    .service-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.35rem !important;
    }
    .service-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    .back-btn {
        font-size: 0.85rem !important;
    }
}

/* ---------- 320px: en küçük mobil ---------- */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .header-content .logo span:not(.brand-mark) {
        font-size: 1rem !important;
    }
    .order-search-btn {
        padding: 0.5rem 0.85rem !important;
        font-size: 0.8rem !important;
    }
    .order-search-dropdown {
        min-width: 240px !important;
        padding: 1rem !important;
    }
    .platform-page-header {
        padding: 1.5rem 0.5rem !important;
    }
    .platform-page-header h1 {
        font-size: 1.35rem !important;
    }
    .platform-page-header p {
        font-size: 0.78rem !important;
    }
    .platform-logo-large {
        width: 48px !important;
        height: 48px !important;
    }
    .platform-logo-large svg,
    .platform-logo-large i,
    .platform-logo-large img {
        width: 26px !important;
        height: 26px !important;
        font-size: 26px !important;
    }
    .service-card {
        padding: 1rem 0.75rem !important;
    }
    .service-card h3 {
        font-size: 0.98rem !important;
    }
    .service-card p {
        font-size: 0.8rem !important;
    }
    .nav-link {
        font-size: 0.85rem !important;
    }
    .theme-toggle {
        padding: 0.5rem !important;
        width: 36px !important;
        height: 36px !important;
    }
    /* Ödeme/satın alma sayfaları için yatay taşma engeli */
    .package-card,
    .order-summary,
    .payment-form {
        max-width: 100% !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }
}

/* Genel: hiçbir konteyner viewport'u taşmasın */
img, svg, video, canvas {
    max-width: 100%;
    height: auto;
}

/* Form elemanları mobilde 16px font ile zoom önlensin (iOS) */
@media (max-width: 768px) {
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* ==================================================================== */
/* === İLETİŞİM MODAL'I (footer "İletişim" linki için) ===              */
/* ==================================================================== */
.td-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.td-contact-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.td-contact-modal[hidden] { display: none !important; }
.td-contact-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.td-contact-card {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    padding: 2rem 1.75rem 1.5rem;
    transform: translateY(15px) scale(0.97);
    transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.td-contact-modal.is-open .td-contact-card {
    transform: translateY(0) scale(1);
}
[data-theme="dark"] .td-contact-card {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}
.td-contact-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #475569;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.td-contact-close:hover { background: #e2e8f0; transform: rotate(90deg); }
[data-theme="dark"] .td-contact-close { background: #334155; color: #cbd5e1; }
[data-theme="dark"] .td-contact-close:hover { background: #475569; }
.td-contact-header { text-align: center; margin-bottom: 1.5rem; }
.td-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}
.td-contact-header h3 {
    margin: 0 0 0.4rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}
[data-theme="dark"] .td-contact-header h3 { color: #f8fafc; }
.td-contact-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}
[data-theme="dark"] .td-contact-header p { color: #94a3b8; }
.td-contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.td-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}
.td-contact-field { display: flex; flex-direction: column; gap: 0.35rem; }
.td-contact-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.td-contact-field label span { color: #ef4444; }
[data-theme="dark"] .td-contact-field label { color: #cbd5e1; }
.td-contact-field input,
.td-contact-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f8fafc;
    color: #0f172a;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}
.td-contact-field textarea { resize: vertical; min-height: 110px; }
.td-contact-field input:focus,
.td-contact-field textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
[data-theme="dark"] .td-contact-field input,
[data-theme="dark"] .td-contact-field textarea {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}
[data-theme="dark"] .td-contact-field input:focus,
[data-theme="dark"] .td-contact-field textarea:focus {
    background: #1e293b;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}
.td-contact-status {
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}
.td-contact-status[hidden] { display: none; }
.td-contact-status-info    { background: #dbeafe; color: #1d4ed8; border: 1px solid #93c5fd; }
.td-contact-status-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.td-contact-status-error   { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
[data-theme="dark"] .td-contact-status-info    { background: rgba(59,130,246,0.15); color: #93c5fd; border-color: rgba(59,130,246,0.4); }
[data-theme="dark"] .td-contact-status-success { background: rgba(16,185,129,0.15); color: #6ee7b7; border-color: rgba(16,185,129,0.4); }
[data-theme="dark"] .td-contact-status-error   { background: rgba(239,68,68,0.15); color: #fca5a5; border-color: rgba(239,68,68,0.4); }
.td-contact-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.td-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    font-family: inherit;
}
.td-contact-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.td-contact-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}
.td-contact-btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(59, 130, 246, 0.45); }
.td-contact-btn-secondary { background: #e2e8f0; color: #475569; }
.td-contact-btn-secondary:hover { background: #cbd5e1; }
[data-theme="dark"] .td-contact-btn-secondary { background: #334155; color: #e2e8f0; }
[data-theme="dark"] .td-contact-btn-secondary:hover { background: #475569; }
@media (max-width: 540px) {
    .td-contact-row { grid-template-columns: 1fr; }
    .td-contact-card { padding: 1.5rem 1.1rem 1.1rem; border-radius: 16px; }
    .td-contact-actions { justify-content: stretch; }
    .td-contact-actions .td-contact-btn { flex: 1; justify-content: center; }
}

/* ==================================================================== */
/* === FOOTER: koyu temada her bölümü kart gibi göster (boş hissetmesin) === */
/* ==================================================================== */
/* === Karanlık tema footer: SADECE arka plan değişir, kutu eklenmez === */
/* Kullanıcı isteği: açık ile karanlık tema arasında footer tasarım farkı minimum */
/* Sectionların metinleri arkasına kutu/box-shadow/blur EKLENMEZ.            */
[data-theme="dark"] body .footer .footer-content {
    gap: 2rem !important;
}
[data-theme="dark"] body .footer .footer-section {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
[data-theme="dark"] body .footer .footer-section:hover {
    background: transparent !important;
    border-color: transparent !important;
    transform: none !important;
}
[data-theme="dark"] body .footer .footer-section h4 {
    color: #60a5fa !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.3px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0.9rem !important;
}
[data-theme="dark"] body .footer .footer-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
[data-theme="dark"] body .footer .footer-section ul li { margin-bottom: 0.5rem !important; }
[data-theme="dark"] body .footer .footer-section ul li a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: color 0.2s ease !important;
    display: inline-block;
}
[data-theme="dark"] body .footer .footer-section ul li a:hover {
    color: #60a5fa !important;
}
[data-theme="dark"] body .footer .footer-bottom {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 1rem 0 0 !important;
    margin-top: 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* ==================================================================== */
/* === PAKET KARTLARI: Daha kompakt yükseklik (her iki temada da) === */
/* ==================================================================== */
body .package-card {
    padding: 0 !important;
}
body .package-card .package-header {
    padding: 0.85rem 1rem !important;
    gap: 0.65rem !important;
    min-height: auto !important;
}
body .package-card .package-header i { font-size: 1.35rem !important; }
body .package-card .package-header span {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
}
body .package-card .no-password,
body .package-card .package-no-password {
    padding: 0.55rem 0.85rem !important;
    margin: 0.5rem 1rem 0 !important;
    font-size: 0.8rem !important;
    border-radius: 8px !important;
}
body .package-card .package-features {
    padding: 0.85rem 1rem !important;
    gap: 0.4rem !important;
}
body .package-card .package-features .feature-item,
body .package-card .feature-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 0.5rem 0.75rem !important;
    gap: 0.55rem !important;
    border-radius: 8px !important;
    font-size: 0.82rem !important;
    margin-bottom: 0 !important;
    line-height: 1.25 !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}
body .package-card .package-features .feature-item i,
body .package-card .feature-item i {
    font-size: 0.85rem !important;
    width: 14px !important;
}
body .package-card .package-features .feature-item span,
body .package-card .feature-item span {
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
    flex: 0 1 auto !important;
    text-align: center !important;
}
body .package-card .package-pricing,
body .package-card .package-price {
    padding: 0.6rem 1rem !important;
    margin: 0 1rem 0.5rem !important;
    border-radius: 10px !important;
}
body .package-card .package-pricing .original-price,
body .package-card .package-price .original-price {
    font-size: 0.85rem !important;
}
body .package-card .package-pricing .final-price,
body .package-card .package-pricing .current-price,
body .package-card .package-price .current-price {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
}
body .package-card .package-pricing .discount,
body .package-card .package-pricing .discount-badge,
body .package-card .package-price .discount-badge {
    font-size: 0.72rem !important;
    padding: 0.18rem 0.45rem !important;
}
body .package-card .package-btn,
body .package-card .add-to-cart-btn,
body .package-card .pricing-btn {
    padding: 0.7rem 1rem !important;
    margin: 0.25rem 1rem 1rem !important;
    font-size: 0.95rem !important;
    border-radius: 10px !important;
    width: calc(100% - 2rem) !important;
}
[data-theme="dark"] body .package-card .package-pricing .final-price,
[data-theme="dark"] body .package-card .package-pricing .current-price,
[data-theme="dark"] body .package-card .package-price .current-price {
    font-size: 1.4rem !important;
}
@media (max-width: 768px) {
    body .package-card .package-header { padding: 0.7rem 0.85rem !important; }
    body .package-card .package-features { padding: 0.7rem 0.85rem !important; gap: 0.35rem !important; }
    body .package-card .package-features .feature-item,
    body .package-card .feature-item {
        padding: 0.45rem 0.65rem !important;
        font-size: 0.78rem !important;
        justify-content: center !important;
    }
    body .package-card .package-pricing,
    body .package-card .package-price { margin: 0 0.85rem 0.45rem !important; padding: 0.5rem 0.85rem !important; }
    body .package-card .package-btn,
    body .package-card .add-to-cart-btn,
    body .package-card .pricing-btn { margin: 0.2rem 0.85rem 0.85rem !important; width: calc(100% - 1.7rem) !important; }
}

/* ==================================================================== */
/* === KARANLIK TEMA — SATIN ALMA KARTI MODERN TASARIM (v2) ===         */
/* Daha derin gradient, brand glow, chip rozet, premium görünüm         */
/* ==================================================================== */
[data-theme="dark"] body .package-card {
    background: linear-gradient(165deg, #1a2332 0%, #111827 55%, #0f172a 100%) !important;
    border: 1px solid rgba(96, 165, 250, 0.18) !important;
    border-radius: 18px !important;
    box-shadow:
        0 12px 32px -8px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 1px 0 rgba(255, 255, 255, 0.04) inset !important;
    overflow: hidden !important;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
[data-theme="dark"] body .package-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0.85;
    z-index: 2;
}
[data-theme="dark"] body .package-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(96, 165, 250, 0.4) !important;
    box-shadow:
        0 20px 50px -10px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(96, 165, 250, 0.15) inset !important;
}

/* Üst başlık: gradient + iç glow */
[data-theme="dark"] body .package-card .package-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%) !important;
    color: #ffffff !important;
    padding: 0.9rem 1rem !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
[data-theme="dark"] body .package-card .package-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
}
[data-theme="dark"] body .package-card .package-header > * { position: relative; z-index: 1; }
[data-theme="dark"] body .package-card .package-header span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.01em;
}

/* "Şifreniz Gerekmez" — büyük yeşil banner yerine sade chip rozet */
[data-theme="dark"] body .package-card .package-warning {
    background: rgba(16, 185, 129, 0.12) !important;
    color: #6ee7b7 !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    padding: 0.4rem 0.85rem !important;
    margin: 0.75rem auto 0.25rem !important;
    border-radius: 999px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    width: fit-content !important;
    max-width: calc(100% - 2rem);
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
[data-theme="dark"] body .package-card .package-warning i { color: #34d399 !important; font-size: 0.85rem !important; }
[data-theme="dark"] body .package-card .package-warning span { color: #6ee7b7 !important; font-weight: 600 !important; }
/* package-warning'i ortalayabilmek için container'ı flex */
[data-theme="dark"] body .package-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}
[data-theme="dark"] body .package-card .package-header,
[data-theme="dark"] body .package-card .package-features,
[data-theme="dark"] body .package-card .package-pricing,
[data-theme="dark"] body .package-card .package-btn { width: 100%; box-sizing: border-box; }
[data-theme="dark"] body .package-card .package-warning {
    align-self: center !important;
}

/* Özellik kartları — sınırsız, yumuşak */
[data-theme="dark"] body .package-card .package-features {
    padding: 0.85rem 1rem 0.5rem !important;
    gap: 0.35rem !important;
    background: transparent !important;
}
[data-theme="dark"] body .package-card .package-features .feature-item,
[data-theme="dark"] body .package-card .feature-item {
    background: rgba(255, 255, 255, 0.025) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    border-radius: 9px !important;
    padding: 0.5rem 0.8rem !important;
    transition: background 0.2s ease, border-color 0.2s ease !important;
    justify-content: center !important;
    text-align: center !important;
}
[data-theme="dark"] body .package-card .package-features .feature-item:hover,
[data-theme="dark"] body .package-card .feature-item:hover {
    background: rgba(96, 165, 250, 0.08) !important;
    border-color: rgba(96, 165, 250, 0.18) !important;
}
[data-theme="dark"] body .package-card .package-features .feature-item i,
[data-theme="dark"] body .package-card .feature-item i {
    color: #60a5fa !important;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
}
[data-theme="dark"] body .package-card .package-features .feature-item span,
[data-theme="dark"] body .package-card .feature-item span {
    color: #e2e8f0 !important;
    background: transparent !important;
    text-shadow: none !important;
    font-weight: 500 !important;
    flex: 0 1 auto !important;
    text-align: center !important;
}

/* Fiyat bölümü — temiz, modern */
[data-theme="dark"] body .package-card .package-pricing {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0.5rem 1rem 0.85rem !important;
    margin: 0 !important;
    text-align: center !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem !important;
    border-radius: 0 !important;
}
[data-theme="dark"] body .package-card .package-pricing .price-info {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    margin-bottom: 0.4rem !important;
    background: transparent !important;
}
[data-theme="dark"] body .package-card .package-pricing .original-price,
[data-theme="dark"] body .package-card .package-pricing .original-price * {
    color: #64748b !important;
    background: transparent !important;
    background-color: transparent !important;
    text-decoration: line-through !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}
[data-theme="dark"] body .package-card .package-pricing .discount,
[data-theme="dark"] body .package-card .package-pricing .discount * {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    padding: 0.22rem 0.55rem !important;
    border-radius: 999px !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35) !important;
    letter-spacing: 0.02em;
    text-shadow: none !important;
}
[data-theme="dark"] body .package-card .package-pricing .final-price,
[data-theme="dark"] body .package-card .package-pricing .final-price *,
[data-theme="dark"] body .package-card .package-pricing .current-price {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #34d399 !important;
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-shadow: 0 0 24px rgba(52, 211, 153, 0.35) !important;
    letter-spacing: -0.01em;
}

/* Satın Al butonu — gradient + glow */
[data-theme="dark"] body .package-card .add-to-cart-btn,
[data-theme="dark"] body .package-card .package-btn,
[data-theme="dark"] body .package-card .pricing-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    background-color: #10b981 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.85rem 1rem !important;
    margin: 0.25rem 1rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    width: calc(100% - 2rem) !important;
    box-shadow:
        0 4px 14px rgba(16, 185, 129, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset !important;
    text-transform: none !important;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: pointer;
}
[data-theme="dark"] body .package-card .add-to-cart-btn:hover,
[data-theme="dark"] body .package-card .package-btn:hover,
[data-theme="dark"] body .package-card .pricing-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow:
        0 8px 24px rgba(16, 185, 129, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset !important;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
}
[data-theme="dark"] body .package-card .add-to-cart-btn i,
[data-theme="dark"] body .package-card .package-btn i,
[data-theme="dark"] body .package-card .pricing-btn i {
    color: #ffffff !important;
    margin-right: 0.4rem;
    display: inline-block !important;
}

@media (max-width: 768px) {
    [data-theme="dark"] body .package-card .package-pricing .final-price,
    [data-theme="dark"] body .package-card .package-pricing .current-price { font-size: 1.55rem !important; }
    [data-theme="dark"] body .package-card .package-warning { font-size: 0.72rem !important; padding: 0.35rem 0.7rem !important; }
}

/* ==================================================================== */
/* === FOOTER: 'SOSYAL MEDYA HİZMETLERİ' bölümünü 2 sütun yap        === */
/* === Uzun listeler (10+ öğe) otomatik 2 kolon olur, daha kısa ve   === */
/* === düzgün görünür. Mobilde tek sütuna döner.                     === */
/* === NOT: artık 3. grid sütununda — span etmesin (1 hücreyi kapla) === */
/* ==================================================================== */
.footer-section:has(ul li:nth-child(10)) ul {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 1.5rem !important;
    row-gap: 0.4rem !important;
    align-content: start !important;
}
.footer-section:has(ul li:nth-child(10)) ul li {
    margin-bottom: 0.4rem !important;
    min-width: 0 !important;
}

/* Tablet: 2 sütun ama gap daha küçük */
@media (max-width: 1024px) {
    .footer-section:has(ul li:nth-child(10)) ul {
        column-gap: 1rem !important;
    }
}

/* Mobil: tek sütuna düş (zaten dar olduğu için) */
@media (max-width: 640px) {
    .footer-section:has(ul li:nth-child(10)) ul {
        column-count: 1;
        -webkit-column-count: 1;
        column-rule: none;
    }
}

/* === FOOTER kompakt mod: padding/margin/h4 sıkılaştırma === */
.footer-section h4 {
    margin-bottom: 0.55rem !important;
    font-size: 0.85rem !important;
}
.footer-section ul li {
    margin-bottom: 0.4rem !important;
}
.footer-section ul li a,
.footer-description {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
}
.footer-description {
    margin-top: 0.5rem !important;
}
.footer-logo {
    margin-bottom: 0.4rem !important;
}
.footer-logo h3 {
    font-size: 1.1rem !important;
}
.footer-bottom {
    padding-top: 0.65rem !important;
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
}
.footer-bottom p { margin: 0 !important; }

/* Tablet: footer 2 sütun (Hakkımızda büyük | KURUMSAL+SOSYAL stack) */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr !important;
        gap: 1.25rem !important;
    }
    .footer-about { grid-column: 1 / -1; }
}
/* Mobil: tek sütun */
@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .footer-content > .footer-section:last-child {
        padding-left: 0;
    }
}

/* Fallback: tarayıcı :has() desteklemiyorsa - footer-grid'i daha geniş yap
   böylece liste daha az dikey yer kaplar */
@supports not selector(:has(*)) {
    .footer-content {
        grid-template-columns: 1.7fr 1fr 2.3fr !important;
    }
    .footer-section:nth-child(2) ul {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

/* ==================================================================== */
/* === FOOTER: Platform listesinde renkli marka ikonları + hizalama  === */
/* === Her <li><a>...</a></li> → ikon + metin yan yana, kompakt      === */
/* ==================================================================== */
.footer-section ul li {
    break-inside: avoid;          /* CSS columns içinde li ortadan bölünmesin */
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}
.footer-section ul li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    line-height: 1.3 !important;
    white-space: nowrap;
}
.footer-section ul li a > i,
.footer-section ul li a > .footer-svc-svg,
.footer-section ul li a > .footer-svc-img {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-section ul li a > .footer-svc-svg {
    color: #ffffff;               /* SVG renk currentColor → beyaz (X / Threads) */
}
.footer-section ul li a > .footer-svc-img {
    object-fit: contain;
    border-radius: 3px;
    background: transparent;
}
.footer-section ul li a > .footer-svc-snap {
    background: #FFFC00;          /* Snapchat sarı arka plan, logosu sarıda anlamlı */
    padding: 1px;
}
/* TikTok / Threads / X (X-Twitter) markaları siyah-beyaz → koyu footer'da beyaz */
.footer-section ul li a > i.fa-tiktok,
.footer-section ul li a > i.fa-threads,
.footer-section ul li a > i.fa-x-twitter,
.footer-section ul li a > .footer-fa-mono {
    color: #ffffff;
}
/* Hover'da sadece METİN renk değiştirsin, ikon marka rengini korusun */
.footer-section ul li a:hover {
    color: #60a5fa;
}
.footer-section ul li a:hover > i.fa-tiktok,
.footer-section ul li a:hover > .footer-fa-mono,
.footer-section ul li a:hover > .footer-svc-svg {
    filter: brightness(1.2);
}

/* Dark theme: yukarıdaki [data-theme="dark"] kuralı `display: inline-block`
   diyerek inline-flex'i eziyor → override edip flex'e geri alıyoruz */
[data-theme="dark"] body .footer .footer-section ul li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* SOSYAL MEDYA HİZMETLERİ bölümü 2 kolonda → ikon + ad sığsın diye font biraz küçük */
.footer-section:has(ul li:nth-child(10)) ul li a {
    font-size: 0.82rem !important;
}
.footer-section:has(ul li:nth-child(10)) ul li a > i,
.footer-section:has(ul li:nth-child(10)) ul li a > .footer-svc-svg,
.footer-section:has(ul li:nth-child(10)) ul li a > .footer-svc-img {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    font-size: 13px;
}

/* ==================================================================== */
/* === NAVBAR DROPDOWN: 'Platformlar' menüsü 2 sütunlu grid          === */
/* === 14 platform tek sütunda çok uzun → 7+7 yan yana, daha şık      === */
/* ==================================================================== */
.dropdown-menu:has(.dropdown-item:nth-child(10)) {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    min-width: 620px !important;
    width: 620px !important;
    max-width: 92vw !important;
    column-gap: 4px !important;
    row-gap: 2px !important;
    padding: 0.6rem !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-10px) !important;
}
/* Hover açılınca translateY sıfırlansın ama translateX kalsın */
.dropdown:hover .dropdown-menu:has(.dropdown-item:nth-child(10)) {
    transform: translateX(-50%) translateY(0) !important;
}
/* Grid içindeki itemların stillerini sadeleştir (border-bottom yok, kompakt) */
.dropdown-menu:has(.dropdown-item:nth-child(10)) .dropdown-item {
    border-bottom: none !important;
    padding: 0.55rem 0.75rem !important;
    border-radius: 8px !important;
    font-size: 0.88rem !important;
    gap: 0.55rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.dropdown-menu:has(.dropdown-item:nth-child(10)) .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.08) !important;
}
[data-theme="dark"] .dropdown-menu:has(.dropdown-item:nth-child(10)) .dropdown-item:hover {
    background: rgba(96, 165, 250, 0.12) !important;
}

/* Tablet: 3'lü dar olabilir, 2 sütuna düşür */
@media (max-width: 900px) {
    .dropdown-menu:has(.dropdown-item:nth-child(10)) {
        grid-template-columns: 1fr 1fr !important;
        min-width: 440px !important;
        width: 440px !important;
    }
}

/* Mobil: tek sütun + scroll */
@media (max-width: 720px) {
    .dropdown-menu:has(.dropdown-item:nth-child(10)) {
        display: block !important;
        width: auto !important;
        min-width: 240px !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
        left: 0 !important;
        transform: translateY(-10px) !important;
    }
    .dropdown:hover .dropdown-menu:has(.dropdown-item:nth-child(10)) {
        transform: translateY(0) !important;
    }
    .dropdown-menu:has(.dropdown-item:nth-child(10)) .dropdown-item {
        border-bottom: 1px solid #f3f4f6 !important;
        border-radius: 0 !important;
    }
}

/* Fallback: :has() yoksa dropdown-menu sadece daha geniş ve scroll yapsın */
@supports not selector(:has(*)) {
    .dropdown-menu {
        max-height: 70vh !important;
        overflow-y: auto !important;
    }
}

/* Ortak tema / siparis sorgu davranisi: sayfa ici stillerle cakismasin */
.order-search-dropdown {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.order-search-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.theme-toggle,
.order-search-btn,
.search-btn {
    pointer-events: auto;
    touch-action: manipulation;
}

/* Footer: iki temada da ayni duzen, sadece koyu temada beyaz zemin + siyah metin */
html[data-theme="dark"] .footer,
html[data-theme="dark"] body .footer {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    border-top: 1px solid #e5e7eb !important;
    color: #111827 !important;
}

html[data-theme="dark"] .footer *,
html[data-theme="dark"] body .footer * {
    text-shadow: none !important;
}

html[data-theme="dark"] .footer-logo h3,
html[data-theme="dark"] .footer-description,
html[data-theme="dark"] .footer-section h4,
html[data-theme="dark"] .footer-section ul li a,
html[data-theme="dark"] .footer-bottom .copyright-text {
    color: #111827 !important;
}

html[data-theme="dark"] .footer-section h4,
html[data-theme="dark"] .footer-logo i,
html[data-theme="dark"] .footer-bottom .company-name {
    color: #2563eb !important;
}

html[data-theme="dark"] .footer-section ul li a:hover {
    color: #2563eb !important;
}

/* Dropdown ve footer ikonlari: trend ol bolumundeki renkli kutu yapisi ile ayni */
.header .dropdown-item .fab,
.header .dropdown-item .dropdown-platform-icon,
.footer .footer-brand-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    background: #94a3b8 !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: none !important;
    filter: none !important;
}

.header .dropdown-item img.dropdown-platform-icon,
.footer .footer-brand-icon.footer-svc-img {
    object-fit: contain !important;
    padding: 3px !important;
}

.header .dropdown-item .fa-instagram,
.footer .footer-brand-instagram {
    background: linear-gradient(135deg, #f09433, #dc2743 55%, #bc1888) !important;
}

.header .dropdown-item .fa-tiktok,
.footer .footer-brand-tiktok {
    background: #000000 !important;
}

.header .dropdown-item .fa-youtube,
.footer .footer-brand-youtube {
    background: #ff0000 !important;
}

.header .dropdown-item .fa-discord,
.footer .footer-brand-discord {
    background: #5865f2 !important;
}

.header .dropdown-item .fa-facebook-f,
.header .dropdown-item .fa-facebook,
.footer .footer-brand-facebook {
    background: #1877f2 !important;
}

.header .dropdown-item .fa-linkedin-in,
.header .dropdown-item .fa-linkedin,
.footer .footer-brand-linkedin {
    background: #0a66c2 !important;
}

.header .dropdown-item .fa-pinterest-p,
.header .dropdown-item .fa-pinterest,
.footer .footer-brand-pinterest {
    background: #e60023 !important;
}

.header .dropdown-item .fa-telegram,
.footer .footer-brand-telegram {
    background: #229ed9 !important;
}

.header .dropdown-item .fa-twitch,
.footer .footer-brand-twitch {
    background: #9146ff !important;
}

.header .dropdown-item .fa-spotify,
.footer .footer-brand-spotify {
    background: #1db954 !important;
}

.header .dropdown-item .fa-threads,
.footer .footer-brand-threads {
    background: #000000 !important;
}

.header .dropdown-item .fa-x-twitter,
.footer .footer-brand-x {
    background: #111827 !important;
}

.header .dropdown-item img[alt="Kick"],
.footer .footer-brand-kick {
    background: linear-gradient(135deg, #53fc18, #2ecf07) !important;
}

.footer .footer-brand-snapchat,
html body .footer .footer-brand-snapchat,
html[data-theme="dark"] body .footer .footer-brand-snapchat {
    background: #fffc00 !important;
    background-color: #fffc00 !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}
html body .footer .footer-brand-snapchat,
html[data-theme="dark"] body .footer .footer-brand-snapchat,
html body .footer i.fab.fa-snapchat.footer-brand-snapchat,
html[data-theme="dark"] body .footer i.fab.fa-snapchat.footer-brand-snapchat {
    color: #111827 !important;
    -webkit-text-fill-color: #111827 !important;
    font-size: 16px !important;
}

.header .dropdown-item:hover .fab,
.header .dropdown-item:hover .dropdown-platform-icon,
.footer .footer-section ul li a:hover .footer-brand-icon {
    transform: none !important;
    filter: none !important;
}

/* Navbar platform logolari: servis sayfalarinda da renkli kalsin, filtre uygulanmasin */
html body .header .logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.7rem !important;
}

html body .header .logo .brand-mark,
html body .header .logo .brand-mark i,
html body .header .logo .brand-mark svg,
html body .header .logo .brand-mark img {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    transform: none !important;
    -webkit-text-fill-color: currentColor !important;
}

html body .header .logo .brand-mark,
html[data-theme="dark"] body .header .logo .brand-mark {
    width: 1.75rem !important;
    height: 1.75rem !important;
    min-width: 1.75rem !important;
    flex: 0 0 1.75rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

html body .header .logo > i,
html body .header .logo > .kick-logo-mark,
html body .header .logo > .x-logo-mark,
html[data-theme="dark"] body .header .logo > i,
html[data-theme="dark"] body .header .logo > .kick-logo-mark,
html[data-theme="dark"] body .header .logo > .x-logo-mark {
    width: 1.75rem !important;
    height: 1.75rem !important;
    min-width: 1.75rem !important;
    flex: 0 0 1.75rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

html body .header .logo .brand-mark i,
html body .header .logo .brand-mark svg,
html body .header .logo .brand-mark img,
html[data-theme="dark"] body .header .logo .brand-mark i,
html[data-theme="dark"] body .header .logo .brand-mark svg,
html[data-theme="dark"] body .header .logo .brand-mark img {
    width: 1.375rem !important;
    height: 1.375rem !important;
    font-size: 1.375rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

html body .header .logo > i,
html body .header .logo > .kick-logo-mark img,
html body .header .logo > .x-logo-mark svg,
html[data-theme="dark"] body .header .logo > i,
html[data-theme="dark"] body .header .logo > .kick-logo-mark img,
html[data-theme="dark"] body .header .logo > .x-logo-mark svg {
    width: 1.375rem !important;
    height: 1.375rem !important;
    font-size: 1.375rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

html body .header .logo .brand-mark svg path,
html[data-theme="dark"] body .header .logo .brand-mark svg path {
    vector-effect: non-scaling-stroke !important;
}

html body .header .logo .brand-mark .fa-facebook,
html body .header .logo .brand-mark .fa-facebook-f {
    color: #1877f2 !important;
}

html body .header .logo .brand-mark .fa-linkedin,
html body .header .logo .brand-mark .fa-linkedin-in {
    color: #0a66c2 !important;
}

html body .header .logo .brand-mark .fa-pinterest,
html body .header .logo .brand-mark .fa-pinterest-p {
    color: #e60023 !important;
}

html[data-theme="dark"] body .header .logo .brand-mark .fa-facebook,
html[data-theme="dark"] body .header .logo .brand-mark .fa-facebook-f {
    color: #1877f2 !important;
}

html[data-theme="dark"] body .header .logo .brand-mark .fa-linkedin,
html[data-theme="dark"] body .header .logo .brand-mark .fa-linkedin-in {
    color: #0a66c2 !important;
}

html[data-theme="dark"] body .header .logo .brand-mark .fa-pinterest,
html[data-theme="dark"] body .header .logo .brand-mark .fa-pinterest-p {
    color: #e60023 !important;
}

/* Tum sayfalarda ortak kabuk: ana sayfa header/footer/nav gorunumu baz alinsin */
html body .header,
html body .header.scrolled {
    background: rgba(255, 255, 255, 0.96) !important;
    color: #111827 !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

html body .header .logo,
html body .header .logo span,
html body .header .nav-link {
    color: #0f172a !important;
    text-shadow: none !important;
}

html body .header .nav-link:hover,
html body .header .nav-link.active {
    color: #2563eb !important;
}

html body .header .theme-toggle {
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563eb !important;
    border: 1px solid rgba(37, 99, 235, 0.14) !important;
    box-shadow: none !important;
}

html body .header .theme-toggle:hover {
    background: rgba(37, 99, 235, 0.14) !important;
    color: #1d4ed8 !important;
    transform: none !important;
}

html body .header .order-search-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22) !important;
}

html body .header .order-search-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af) !important;
    transform: translateY(-1px) !important;
}

html body .header .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

html body .header .dropdown-item {
    background: transparent !important;
    color: #334155 !important;
    border-bottom-color: rgba(226, 232, 240, 0.7) !important;
}

html body .header .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563eb !important;
}

html[data-theme="dark"] body .header,
html[data-theme="dark"] body .header.scrolled {
    background: rgba(15, 23, 42, 0.92) !important;
    color: #f8fafc !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.9) !important;
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.45) !important;
}

html[data-theme="dark"] body .header .logo,
html[data-theme="dark"] body .header .logo span,
html[data-theme="dark"] body .header .nav-link {
    color: #f8fafc !important;
}

html[data-theme="dark"] body .header .nav-link:hover,
html[data-theme="dark"] body .header .nav-link.active {
    color: #60a5fa !important;
}

html[data-theme="dark"] body .header .theme-toggle {
    background: rgba(96, 165, 250, 0.12) !important;
    color: #93c5fd !important;
    border-color: rgba(96, 165, 250, 0.22) !important;
}

html[data-theme="dark"] body .header .theme-toggle:hover {
    background: rgba(96, 165, 250, 0.18) !important;
    color: #dbeafe !important;
}

html[data-theme="dark"] body .header .dropdown-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border-color: rgba(51, 65, 85, 0.9) !important;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55) !important;
}

html[data-theme="dark"] body .header .dropdown-item {
    color: #cbd5e1 !important;
    background: transparent !important;
    border-bottom-color: rgba(51, 65, 85, 0.72) !important;
}

html[data-theme="dark"] body .header .dropdown-item:hover {
    background: rgba(96, 165, 250, 0.12) !important;
    color: #93c5fd !important;
}

html body .footer {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e3a8a 100%) !important;
    color: #ffffff !important;
    border-top: none !important;
    box-shadow: none !important;
}

html body .footer *,
html body .footer .footer-description,
html body .footer .footer-section ul li a,
html body .footer .footer-bottom .copyright-text {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: none !important;
}

html body .footer .footer-logo h3,
html body .footer .footer-section h4,
html body .footer .footer-bottom .company-name {
    color: #ffffff !important;
}

html body .footer .footer-section ul li a:hover {
    color: #bfdbfe !important;
}

html[data-theme="dark"] body .footer {
    background: linear-gradient(180deg, #1d4ed8 0%, #1e3a8a 100%) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] body .footer *,
html[data-theme="dark"] body .footer .footer-description,
html[data-theme="dark"] body .footer .footer-section ul li a,
html[data-theme="dark"] body .footer .footer-bottom .copyright-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

html[data-theme="dark"] body .footer .footer-logo h3,
html[data-theme="dark"] body .footer .footer-section h4,
html[data-theme="dark"] body .footer .footer-bottom .company-name {
    color: #ffffff !important;
}

/* Discord buyuk platform logosu font kutusunda hafif kayik duruyor */
.platform-logo-large .fa-discord {
    display: block !important;
    line-height: 1 !important;
    transform: translateX(-2px) translateY(1px) !important;
}

/* Marka logolari: tum sayfalarda ve koyu temada renklerini korusun */
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(
    .fa-instagram,
    .fa-facebook,
    .fa-facebook-f,
    .fa-linkedin,
    .fa-linkedin-in,
    .fa-pinterest,
    .fa-pinterest-p,
    .fa-youtube,
    .fa-discord,
    .fa-telegram,
    .fa-telegram-plane,
    .fa-twitch,
    .fa-spotify,
    .fa-threads,
    .fa-tiktok,
    .fa-x-twitter,
    .fa-twitter
) {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: currentColor !important;
}

html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-instagram { color: #e4405f !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(.fa-facebook, .fa-facebook-f) { color: #1877f2 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(.fa-linkedin, .fa-linkedin-in) { color: #0a66c2 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(.fa-pinterest, .fa-pinterest-p) { color: #e60023 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-youtube { color: #ff0000 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-discord { color: #5865f2 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(.fa-telegram, .fa-telegram-plane) { color: #229ed9 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-twitch { color: #9146ff !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-spotify { color: #1db954 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-threads { color: #111827 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) .fa-tiktok { color: #111111 !important; }
html body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(.fa-x-twitter, .fa-twitter) { color: #111111 !important; }

html[data-theme="dark"] body :is(.logo .brand-mark, .dropdown-item, .footer-brand-icon, .platform-logo-large, .hero-platforms, .animated-platforms) :is(
    .fa-instagram,
    .fa-facebook,
    .fa-facebook-f,
    .fa-linkedin,
    .fa-linkedin-in,
    .fa-pinterest,
    .fa-pinterest-p,
    .fa-youtube,
    .fa-discord,
    .fa-telegram,
    .fa-telegram-plane,
    .fa-twitch,
    .fa-spotify,
    .fa-threads,
    .fa-tiktok,
    .fa-x-twitter,
    .fa-twitter
) {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: currentColor !important;
}

/* Koyu temada servis kartlari: tum sayfalarda okunur ve tek tip kalsin */
html[data-theme="dark"] body .services-grid > .service-card,
html[data-theme="dark"] body .services-grid > a.service-card {
    background: #1e293b !important;
    border-color: rgba(96, 165, 250, 0.28) !important;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28) !important;
}

html[data-theme="dark"] body .services-grid > .service-card h3,
html[data-theme="dark"] body .services-grid > a.service-card h3 {
    color: #f8fafc !important;
}

html[data-theme="dark"] body .services-grid > .service-card p,
html[data-theme="dark"] body .services-grid > a.service-card p {
    color: #cbd5e1 !important;
}

/* Ortak siparis sorgulama kabugu */
.order-search-container {
    position: relative;
    margin-right: 1rem;
}

.order-search-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.order-search-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}

.order-search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: min(350px, calc(100vw - 2rem));
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(209, 213, 219, 0.9);
    border-radius: 16px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
    z-index: 1400;
    display: none;
    opacity: 0;
    transition: all 0.25s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.order-search-form h4 {
    color: #1f2937;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.order-search-form .form-group {
    margin-bottom: 0.9rem;
}

.order-search-form input {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #f8fafc;
    color: #374151;
    box-sizing: border-box;
}

.order-search-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.search-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.search-result {
    margin-top: 0.9rem;
    padding: 0.85rem 0.95rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.search-result.show {
    display: block;
}

.search-result.success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.search-result.error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

html[data-theme="dark"] .order-search-dropdown {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(51, 65, 85, 0.95);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.5);
}

html[data-theme="dark"] .order-search-form h4 {
    color: #f8fafc;
}

html[data-theme="dark"] .order-search-form input {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

html[data-theme="dark"] .order-search-form input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.14);
}

/* Ortak servis sayfasi kabugu */
.platform-page-header {
    position: relative;
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    text-align: center;
    color: #ffffff;
}

.platform-page-header h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28);
}

.platform-page-header p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.platform-logo-large {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 1rem;
}

.platform-logo-large svg,
.platform-logo-large i,
.platform-logo-large img {
    width: 48px;
    height: 48px;
    font-size: 48px;
    color: #ffffff;
    fill: currentColor;
    object-fit: contain;
}

html[data-theme="dark"] .back-btn {
    color: #93c5fd;
}

html[data-theme="dark"] .back-btn:hover {
    color: #bfdbfe;
}

/* Kurumsal sayfalar */
.corporate-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.corporate-sidebar,
.corporate-section,
.corporate-header {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.corporate-header,
.corporate-section {
    padding: 1.75rem;
}

.corporate-sidebar {
    overflow: hidden;
}

.corporate-sidebar h3 {
    margin: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
}

.corporate-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0.75rem;
}

.corporate-sidebar ul li a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}

.corporate-sidebar ul li a:hover,
.corporate-sidebar ul li a.active {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.corporate-header h1,
.corporate-section h2,
.corporate-section h3 {
    color: #0f172a;
}

.corporate-header p,
.corporate-section p,
.corporate-section li {
    color: #475569;
    line-height: 1.7;
}

html[data-theme="dark"] .corporate-sidebar,
html[data-theme="dark"] .corporate-section,
html[data-theme="dark"] .corporate-header {
    background: #1e293b;
    border-color: rgba(51, 65, 85, 0.9);
    box-shadow: 0 20px 42px rgba(2, 6, 23, 0.34);
}

html[data-theme="dark"] .corporate-sidebar ul li a {
    color: #cbd5e1;
}

html[data-theme="dark"] .corporate-sidebar ul li a:hover,
html[data-theme="dark"] .corporate-sidebar ul li a.active {
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
}

html[data-theme="dark"] .corporate-header h1,
html[data-theme="dark"] .corporate-section h2,
html[data-theme="dark"] .corporate-section h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .corporate-header p,
html[data-theme="dark"] .corporate-section p,
html[data-theme="dark"] .corporate-section li {
    color: #cbd5e1;
}

@media (max-width: 900px) {
    .corporate-layout {
        grid-template-columns: 1fr;
    }
}

/* Ana sayfa olcu referansi: tema degisince boyut degismesin */
:root {
    --ui-control-height: 44px;
    --ui-control-radius: 12px;
    --ui-font-size: 0.95rem;
    --ui-icon-size: 1rem;
    --platform-card-size: 56px;
}

html body .header .theme-toggle,
html[data-theme="dark"] body .header .theme-toggle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
}

html body .header .theme-toggle i,
html[data-theme="dark"] body .header .theme-toggle i {
    font-size: 16px !important;
    line-height: 1 !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .header .order-search-btn,
html[data-theme="dark"] body .header .order-search-btn {
    appearance: none !important;
    -webkit-appearance: none !important;
    min-height: var(--ui-control-height) !important;
    height: var(--ui-control-height) !important;
    padding: 0 1.15rem !important;
    border-radius: 999px !important;
    font-size: var(--ui-font-size) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transform: none !important;
}

html body .header .order-search-btn i,
html[data-theme="dark"] body .header .order-search-btn i {
    font-size: var(--ui-icon-size) !important;
    width: 1rem !important;
    height: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 1rem !important;
}

html body .header .order-search-dropdown,
html[data-theme="dark"] body .header .order-search-dropdown {
    width: min(350px, calc(100vw - 2rem)) !important;
    min-width: min(350px, calc(100vw - 2rem)) !important;
    padding: 1.25rem !important;
    border-radius: 16px !important;
}

html body .header .order-search-form h4,
html[data-theme="dark"] body .header .order-search-form h4 {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
}

html body .header .order-search-form input,
html[data-theme="dark"] body .header .order-search-form input {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 0.95rem !important;
    font-size: var(--ui-font-size) !important;
    line-height: 1.2 !important;
    border-radius: var(--ui-control-radius) !important;
}

html body .header .search-btn,
html[data-theme="dark"] body .header .search-btn {
    appearance: none !important;
    -webkit-appearance: none !important;
    min-height: 44px !important;
    height: 44px !important;
    padding: 0 1rem !important;
    font-size: 0.94rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    border-radius: var(--ui-control-radius) !important;
    opacity: 1 !important;
}

html body .header .dropdown-item,
html[data-theme="dark"] body .header .dropdown-item {
    min-height: 46px !important;
    padding: 0.7rem 1rem !important;
    gap: 0.75rem !important;
    font-size: 0.97rem !important;
    line-height: 1.2 !important;
    transform: none !important;
}

html body .header .dropdown-item i,
html body .header .dropdown-item .dropdown-platform-icon,
html[data-theme="dark"] body .header .dropdown-item i,
html[data-theme="dark"] body .header .dropdown-item .dropdown-platform-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    flex: 0 0 24px !important;
}

html body .animated-platforms .services-grid {
    display: grid !important;
    /* 14 kart: 7+7 iki tam satır — son satırda boşluk kalmaz */
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: clamp(1rem, 1.8vw, 1.75rem) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: stretch !important;
    justify-items: stretch !important;
}

/* Çok dar masaüstü: flex + ortala (5+5+4 gibi satırlar dengeli görünsün) */
@media (max-width: 899px) and (min-width: 769px) {
    html body .animated-platforms .services-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: stretch !important;
        gap: 1.15rem !important;
        max-width: 960px !important;
    }
    html body .animated-platforms .service-item {
        flex: 0 1 152px !important;
        width: 152px !important;
        max-width: 100% !important;
    }
}

html body .animated-platforms .service-item,
html[data-theme="dark"] body .animated-platforms .service-item {
    min-height: 170px !important;
    padding: 2rem 1rem !important;
    border-radius: 18px !important;
    text-align: center !important;
    transform: none !important;
}

html body .animated-platforms .service-item .service-icon,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon {
    width: var(--platform-card-size) !important;
    height: var(--platform-card-size) !important;
    min-width: var(--platform-card-size) !important;
    min-height: var(--platform-card-size) !important;
    border-radius: 999px !important;
    margin: 0 auto 1rem !important;
    padding: 0 !important;
}

html body .animated-platforms .service-item .service-icon i,
html body .animated-platforms .service-item .service-icon svg,
html body .animated-platforms .service-item .service-icon img,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon i,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon svg,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon img {
    width: 26px !important;
    height: 26px !important;
    font-size: 26px !important;
    line-height: 1 !important;
}

/* Snapchat: PNG içinde boşluk var — diğer FA ikonlarıyla aynı görsel ağırlık */
html body .animated-platforms .platform-snapchat .service-icon img.snapchat-img-icon,
html[data-theme="dark"] body .animated-platforms .platform-snapchat .service-icon img.snapchat-img-icon {
    width: 34px !important;
    height: 34px !important;
    object-fit: contain !important;
}

html body .animated-platforms .service-name,
html[data-theme="dark"] body .animated-platforms .service-name {
    min-height: 2.6rem !important;
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    text-shadow: none !important;
}

html body .animated-platforms .service-item:hover,
html[data-theme="dark"] body .animated-platforms .service-item:hover {
    transform: translateY(-5px) !important;
}

html body .animated-platforms .service-item:hover .service-icon,
html[data-theme="dark"] body .animated-platforms .service-item:hover .service-icon {
    transform: scale(1.08) !important;
}

html body .page-header,
html body .platform-page-header,
html[data-theme="dark"] body .page-header,
html[data-theme="dark"] body .platform-page-header {
    border-radius: 24px !important;
}

@media (max-width: 768px) {
    html body .header .order-search-btn,
    html[data-theme="dark"] body .header .order-search-btn {
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 0.95rem !important;
        font-size: 0.88rem !important;
    }

    html body .animated-platforms .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.2rem !important;
    }

    html body .animated-platforms .service-item,
    html[data-theme="dark"] body .animated-platforms .service-item {
        min-height: 152px !important;
        padding: 1.45rem 0.85rem !important;
    }

    html body .animated-platforms .service-name,
    html[data-theme="dark"] body .animated-platforms .service-name {
        font-size: 0.94rem !important;
        min-height: 2.4rem !important;
    }
}

/* ===================================================================== */
/* === FOOTER — TEMA SABİT: light & dark TAM AYNI görünüm             === */
/* === Anasayfa görünümü (koyu mavi #1e3a8a + beyaz/açık metin)        === */
/* === Önceki dark theme override'larını (line ~10581-10612) ezer       === */
/* ===================================================================== */
html[data-theme="dark"] body .footer {
    background: #1e3a8a !important;
    background-color: #1e3a8a !important;
    background-image: none !important;
    border-top: none !important;
    color: #ffffff !important;
}
html[data-theme="dark"] body .footer * {
    text-shadow: none !important;
}
html[data-theme="dark"] body .footer-logo h3 {
    color: #ffffff !important;
}
html[data-theme="dark"] body .footer-description {
    color: #cbd5e1 !important;
}
html[data-theme="dark"] body .footer-section h4,
html[data-theme="dark"] body .footer-bottom .company-name,
html[data-theme="dark"] body .footer-logo i {
    color: #60a5fa !important;
}
html[data-theme="dark"] body .footer-section ul li a,
html[data-theme="dark"] body .footer-section ul li a span {
    color: #cbd5e1 !important;
}
html[data-theme="dark"] body .footer-section ul li a:hover,
html[data-theme="dark"] body .footer-section ul li a:hover span {
    color: #60a5fa !important;
}
html[data-theme="dark"] body .footer-bottom .copyright-text,
html[data-theme="dark"] body .copyright-text {
    color: #9ca3af !important;
}
/* Footer marka ikonları (renkli yuvarlak): dark theme'de de aynı renkler */
html[data-theme="dark"] body .footer .footer-brand-icon {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
html[data-theme="dark"] body .footer .footer-brand-snapchat {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

/* ===================================================================== */
/* === "TREND OL" GRİDİ: ikon rengi ARKA PLAN ile aynı olup           === */
/* === KAYBOLMASIN. Marka rengi arkaplanda → ikon HER ZAMAN BEYAZ.    === */
/* === Daha önceki :is(...animated-platforms) marka-rengi kuralını    === */
/* === (line ~10901-10912) ezer.                                       === */
/* ===================================================================== */
html body .animated-platforms .service-item .service-icon i,
html body .animated-platforms .service-item .service-icon svg,
html body .animated-platforms .service-item .service-icon svg path,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon i,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon svg,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon svg path {
    color: #ffffff !important;
    fill: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
/* Snapchat istisnası: SARI arkaplan → ikon SİYAH olmalı */
html body .animated-platforms .platform-snapchat .service-icon i,
html body .animated-platforms .platform-snapchat .service-icon svg,
html body .animated-platforms .platform-snapchat .service-icon svg path,
html[data-theme="dark"] body .animated-platforms .platform-snapchat .service-icon i,
html[data-theme="dark"] body .animated-platforms .platform-snapchat .service-icon svg,
html[data-theme="dark"] body .animated-platforms .platform-snapchat .service-icon svg path {
    color: #0f172a !important;
    fill: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}
/* Snapchat .img zaten kendi logosunu çiziyor, color etkisi yok ama yine de
   görünür olduğundan emin olmak için bg/padding korunuyor */

/* ===================================================================== */
/* === FOOTER BOYUT SABİTLEME — dark/light TEMADA AYNI yükseklik     === */
/* === Önceki dark theme override'ları (line 9935-9984, 10904) padding/=== */
/* === margin/font-size'ı büyütüyordu → light değerlerine zorla ezer  === */
/* ===================================================================== */
html[data-theme="dark"] body .footer {
    padding: 1.5rem 0 0.5rem !important;
}
html[data-theme="dark"] body .footer .footer-content {
    gap: 1.5rem !important;
    margin-bottom: 0.85rem !important;
}
html[data-theme="dark"] body .footer .footer-section h4 {
    font-size: 0.85rem !important;
    margin-bottom: 0.55rem !important;
    padding-bottom: 0 !important;
    letter-spacing: 0.3px !important;
}
html[data-theme="dark"] body .footer .footer-section ul li {
    margin-bottom: 0.4rem !important;
}
html[data-theme="dark"] body .footer .footer-section ul li a {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
}
html[data-theme="dark"] body .footer .footer-description {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.9rem !important;
    margin-top: 0 !important;
}
html[data-theme="dark"] body .footer .footer-logo {
    margin-bottom: 0.4rem !important;
}
html[data-theme="dark"] body .footer .footer-logo h3 {
    font-size: 1.1rem !important;
}
html[data-theme="dark"] body .footer .footer-bottom {
    padding-top: 0.65rem !important;
    margin-top: 0.5rem !important;
    padding-bottom: 0 !important;
    font-size: 0.78rem !important;
}
html[data-theme="dark"] body .footer .copyright-text {
    font-size: 0.78rem !important;
}
/* SOSYAL MEDYA HİZMETLERİ 2-kolon listesinde dark theme de aynı font */
html[data-theme="dark"] body .footer .footer-section:has(ul li:nth-child(10)) ul li a {
    font-size: 0.82rem !important;
}

/* ===================================================================== */
/* === POPÜLER PAKETLER — indirim göstergesi (üstü çizik orijinal +   === */
/* === vurgulu indirimli fiyat)                                       === */
/* ===================================================================== */
.pricing-features .old-price {
    color: #94a3b8;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.7);
    margin: 0 0.3rem 0 0.2rem;
    font-size: 0.92em;
    opacity: 0.85;
}
.pricing-features .feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex: 1;
    flex-wrap: wrap;
    min-width: 0;
}
.pricing-features .feature-label {
    color: #374151;
    font-weight: 500;
}
.pricing-features .feature-price-group {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.pricing-features .new-price {
    color: #10b981;
    font-weight: 700;
    font-size: 1em;
}
[data-theme="dark"] .pricing-features .feature-label {
    color: #cbd5e1 !important;
}
[data-theme="dark"] .pricing-features .old-price {
    color: #64748b !important;
    text-decoration-color: rgba(100, 116, 139, 0.7) !important;
}
[data-theme="dark"] .pricing-features .new-price {
    color: #34d399 !important;
}

/* ===================================================================== */
/* === FONT AWESOME GLYPH ORTALAMASI (FA 6.5+'da brand glyph baseline === */
/* === offset'i nedeniyle <i> içinde glyph yukarı/aşağı kayabiliyor)  === */
/* === Çözüm: <i> elementinin KENDİSİ flex container olsun → glyph    === */
/* === her durumda ortalanır.                                          === */
/* ===================================================================== */
html body .platform-logo-large i,
html body .platform-logo-large svg,
html body .animated-platforms .service-item .service-icon i,
html body .animated-platforms .service-item .service-icon svg,
html body .service-card .service-icon i,
html body .service-card .service-icon svg,
html[data-theme="dark"] body .platform-logo-large i,
html[data-theme="dark"] body .platform-logo-large svg,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon i,
html[data-theme="dark"] body .animated-platforms .service-item .service-icon svg,
html[data-theme="dark"] body .service-card .service-icon i,
html[data-theme="dark"] body .service-card .service-icon svg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* ===================================================================== */
/* === İNDİRİM ROZETİ (.discount-badge) — popüler paketlerde %20      === */
/* === gibi indirim oranını küçük yeşil pill olarak göster.           === */
/* ===================================================================== */
.pricing-features .discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.72em;
    padding: 0.15em 0.5em;
    border-radius: 999px;
    margin-left: 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.25);
}
[data-theme="dark"] .pricing-features .discount-badge {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(52, 211, 153, 0.4) !important;
}

/* ===================================================================== */
/* ===  FOOTER MASTER LOCK — TEMA-BAĞIMSIZ BOYUT/SPACING SABİTLEYİCİ === */
/* ===  Light/Dark theme arasında footer'ın YÜKSEKLİĞİ, padding,     === */
/* ===  margin, gap, font-size değerlerinin birebir AYNI olmasını    === */
/* ===  garanti eder. Önceki dark-theme override'larını (line 9935-  === */
/* ===  9984, 10904 vb.) tamamen ezecek kadar yüksek specificity:    === */
/* ===  hem :is(html, html[data-theme="dark"]) hem doğrudan          === */
/* ===  html[data-theme="dark"] kullanılarak ÇİFT KAT garanti.       === */
/* ===================================================================== */
html body .footer,
html[data-theme="dark"] body .footer {
    padding: 1.5rem 0 0.5rem !important;
    margin-top: auto !important;
}
html body .footer .footer-content,
html[data-theme="dark"] body .footer .footer-content {
    display: grid !important;
    grid-template-columns: 1.7fr 1fr 2.3fr !important;
    gap: 1.5rem !important;
    margin-bottom: 0.85rem !important;
}
html body .footer .footer-section,
html[data-theme="dark"] body .footer .footer-section {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
html body .footer .footer-section h4,
html[data-theme="dark"] body .footer .footer-section h4 {
    font-size: 0.85rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.55rem !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    border: none !important;
}
html body .footer .footer-section ul,
html[data-theme="dark"] body .footer .footer-section ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
html body .footer .footer-section ul li,
html[data-theme="dark"] body .footer .footer-section ul li {
    margin: 0 0 0.35rem 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}
html body .footer .footer-section ul li a,
html[data-theme="dark"] body .footer .footer-section ul li a {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    padding: 0 !important;
    margin: 0 !important;
}
html body .footer .footer-description,
html[data-theme="dark"] body .footer .footer-description {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin: 0 0 0.9rem 0 !important;
    padding: 0 !important;
}
html body .footer .footer-logo,
html[data-theme="dark"] body .footer .footer-logo {
    margin: 0 0 0.6rem 0 !important;
    padding: 0 !important;
}
html body .footer .footer-logo h3,
html[data-theme="dark"] body .footer .footer-logo h3 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .footer .footer-logo i,
html[data-theme="dark"] body .footer .footer-logo i {
    font-size: 1.5rem !important;
    line-height: 1 !important;
}
html body .footer .footer-bottom,
html[data-theme="dark"] body .footer .footer-bottom {
    padding: 0.65rem 0 0 0 !important;
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
}
html body .footer .footer-bottom .copyright-text,
html[data-theme="dark"] body .footer .footer-bottom .copyright-text,
html body .footer .copyright-text,
html[data-theme="dark"] body .footer .copyright-text {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .footer .footer-section:has(ul li:nth-child(10)) ul li a,
html[data-theme="dark"] body .footer .footer-section:has(ul li:nth-child(10)) ul li a {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
}
html body .footer .social-links,
html[data-theme="dark"] body .footer .social-links {
    margin: 0 0 0.9rem 0 !important;
    gap: 1rem !important;
}
html body .footer .contact-info,
html[data-theme="dark"] body .footer .contact-info {
    margin: 0 !important;
    padding: 0 !important;
}

/* ===================================================================== */
/* === POPÜLER PAKETLER — YENİ MODERN TASARIM (v2)                   === */
/* === Eski .pricing-card / .pricing-features kurallarını ezecek      === */
/* === güçlü selector + !important ile.                               === */
/* ===================================================================== */

/* Bölüm başlığı ve alt başlığı */
html body section.pricing-preview {
    padding: 4rem 0 5rem !important;
}
html body section.pricing-preview .section-title {
    text-align: center !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: #1e3a8a !important;
    margin-bottom: 0.5rem !important;
}
html body section.pricing-preview .section-subtitle {
    text-align: center !important;
    font-size: 1.05rem !important;
    color: #64748b !important;
    margin-bottom: 3rem !important;
}
html[data-theme="dark"] body section.pricing-preview .section-title {
    color: #93c5fd !important;
}
html[data-theme="dark"] body section.pricing-preview .section-subtitle {
    color: #94a3b8 !important;
}

/* Grid: 3 kolon */
html body section.pricing-preview .pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.75rem !important;
    align-items: stretch !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
@media (max-width: 1024px) {
    html body section.pricing-preview .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 640px) {
    html body section.pricing-preview .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
}

/* Kart genel */
html body section.pricing-preview .pricing-card {
    position: relative !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 20px !important;
    padding: 2rem 1.5rem 1.75rem !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    overflow: visible !important;
}
html body section.pricing-preview .pricing-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1) !important;
    border-color: rgba(99, 102, 241, 0.18) !important;
}

/* Featured (öne çıkarılan) kart için POPÜLER rozeti */
html body section.pricing-preview .pricing-card.featured {
    border: 2px solid #6366f1 !important;
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.18) !important;
    transform: translateY(-4px) !important;
}
html body section.pricing-preview .pricing-card.featured::before {
    content: "★ POPÜLER" !important;
    position: absolute !important;
    top: -14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    padding: 0.4rem 1rem !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 14px rgba(99, 102, 241, 0.4) !important;
    white-space: nowrap !important;
    z-index: 2 !important;
}

/* Header: başlık + yuvarlak ikon */
html body section.pricing-preview .pricing-card .pricing-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.85rem !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.25rem !important;
    border-bottom: 1px solid #f1f5f9 !important;
    text-align: center !important;
}
html body section.pricing-preview .pricing-card .pricing-header h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* Yuvarlak platform ikonu */
html body section.pricing-preview .pricing-card .pricing-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.85rem !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
    margin: 0 !important;
}
html body section.pricing-preview .pricing-card .pricing-icon i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.85rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
html body section.pricing-preview .pricing-card .pricing-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%) !important;
}
html body section.pricing-preview .pricing-card .pricing-icon.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%) !important;
}
html body section.pricing-preview .pricing-card .pricing-icon.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
}

/* Özellikler listesi (paket satırları) */
html body section.pricing-preview .pricing-card .pricing-features {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.55rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Tek bir paket satırı */
html body section.pricing-preview .pricing-card .pricing-features .feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.7rem !important;
    padding: 0.8rem 0.95rem !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(59, 130, 246, 0.04) 100%) !important;
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    border-radius: 12px !important;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease !important;
    text-align: left !important;
}
html body section.pricing-preview .pricing-card .pricing-features .feature-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.09) 0%, rgba(59, 130, 246, 0.09) 100%) !important;
    border-color: rgba(99, 102, 241, 0.22) !important;
    transform: translateX(3px) !important;
}

/* Yeşil check ikonu */
html body section.pricing-preview .pricing-card .pricing-features .feature-item > i.fas.fa-check {
    color: #10b981 !important;
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(16, 185, 129, 0.12) !important;
    border-radius: 50% !important;
}

/* Satır içerik (label + fiyat grubu) yatayda yan yana */
html body section.pricing-preview .pricing-card .pricing-features .feature-item .feature-row {
    display: flex !important;
    flex: 1 !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.6rem !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
}

/* Sol taraf: paket adı */
html body section.pricing-preview .pricing-card .pricing-features .feature-item .feature-label {
    font-weight: 600 !important;
    color: #334155 !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    line-height: 1.3 !important;
}

/* Sağ taraf: fiyatlar + badge */
html body section.pricing-preview .pricing-card .pricing-features .feature-item .feature-price-group {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    flex-shrink: 0 !important;
    flex-wrap: nowrap !important;
}

/* Üstü çizili eski fiyat */
html body section.pricing-preview .pricing-card .pricing-features .old-price {
    color: #94a3b8 !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    text-decoration: line-through !important;
    text-decoration-color: rgba(148, 163, 184, 0.7) !important;
    margin: 0 !important;
    opacity: 0.85 !important;
}

/* Vurgulu yeni fiyat */
html body section.pricing-preview .pricing-card .pricing-features .new-price {
    color: #059669 !important;
    font-weight: 800 !important;
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
}

/* %20 rozeti — yeşil pill */
html body section.pricing-preview .pricing-card .pricing-features .discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 0.2em 0.55em !important;
    border-radius: 999px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.4px !important;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3) !important;
    flex-shrink: 0 !important;
}

/* Satın al butonu */
html body section.pricing-preview .pricing-card .pricing-btn {
    width: 100% !important;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.95rem 1rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3) !important;
    margin-top: auto !important;
}
html body section.pricing-preview .pricing-card .pricing-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.45) !important;
}

/* === Dark theme uyumu === */
html[data-theme="dark"] body section.pricing-preview .pricing-card {
    background: #1f2937 !important;
    border-color: #374151 !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card:hover {
    border-color: rgba(129, 140, 248, 0.3) !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-header {
    border-bottom-color: #374151 !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-header h3 {
    color: #e2e8f0 !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-features .feature-item {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.07) 0%, rgba(96, 165, 250, 0.07) 100%) !important;
    border-color: rgba(129, 140, 248, 0.15) !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-features .feature-item:hover {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.14) 0%, rgba(96, 165, 250, 0.14) 100%) !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-features .feature-label {
    color: #e2e8f0 !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-features .old-price {
    color: #64748b !important;
    text-decoration-color: rgba(100, 116, 139, 0.7) !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-features .new-price {
    color: #34d399 !important;
}
html[data-theme="dark"] body section.pricing-preview .pricing-card .pricing-features .feature-item > i.fas.fa-check {
    background: rgba(52, 211, 153, 0.15) !important;
    color: #34d399 !important;
}

/* ===================================================================== */
/* === DROPDOWN ROZET TAMAMLAMASI                                    === */
/* === Facebook, Pinterest, Snapchat, LinkedIn ve Threads için       === */
/* === diğer platformlarla aynı 28x28 renkli rozet stili.            === */
/* ===================================================================== */

/* 1) Genel rozet kutusu (boyut + şekil + gölge) - eksik olan ikonlara da uygula */
html body .header .dropdown-menu .dropdown-item .fab.fa-facebook-f,
html body .header .dropdown-item .fab.fa-facebook-f,
html body .header .dropdown-menu .dropdown-item .fab.fa-pinterest-p,
html body .header .dropdown-item .fab.fa-pinterest-p,
html body .header .dropdown-menu .dropdown-item .fab.fa-snapchat-ghost,
html body .header .dropdown-item .fab.fa-snapchat-ghost,
html body .header .dropdown-menu .dropdown-item .fab.fa-snapchat,
html body .header .dropdown-item .fab.fa-snapchat,
html body .header .dropdown-menu .dropdown-item .fab.fa-linkedin-in,
html body .header .dropdown-item .fab.fa-linkedin-in,
html body .header .dropdown-menu .dropdown-item .fab.fa-threads,
html body .header .dropdown-item .fab.fa-threads,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-facebook-f,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-facebook-f,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-pinterest-p,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-pinterest-p,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-snapchat-ghost,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-snapchat-ghost,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-snapchat,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-snapchat,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-linkedin-in,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-linkedin-in,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-threads,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-threads {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    line-height: 1 !important;
    text-align: center !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* 2) Marka renkleri (gece + gündüz aynı) */
html body .header .dropdown-menu .dropdown-item .fab.fa-facebook-f,
html body .header .dropdown-item .fab.fa-facebook-f,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-facebook-f,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-facebook-f {
    background: #1877F2 !important;
    background-image: linear-gradient(135deg, #1877F2 0%, #0d56b0 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html body .header .dropdown-menu .dropdown-item .fab.fa-pinterest-p,
html body .header .dropdown-item .fab.fa-pinterest-p,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-pinterest-p,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-pinterest-p {
    background: #E60023 !important;
    background-image: linear-gradient(135deg, #E60023 0%, #b3001b 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html body .header .dropdown-menu .dropdown-item .fab.fa-snapchat-ghost,
html body .header .dropdown-item .fab.fa-snapchat-ghost,
html body .header .dropdown-menu .dropdown-item .fab.fa-snapchat,
html body .header .dropdown-item .fab.fa-snapchat,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-snapchat-ghost,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-snapchat-ghost,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-snapchat,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-snapchat {
    background: #FFFC00 !important;
    background-image: linear-gradient(135deg, #FFFC00 0%, #e8e500 100%) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

html body .header .dropdown-menu .dropdown-item .fab.fa-linkedin-in,
html body .header .dropdown-item .fab.fa-linkedin-in,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-linkedin-in,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-linkedin-in {
    background: #0A66C2 !important;
    background-image: linear-gradient(135deg, #0A66C2 0%, #074a8e 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

html body .header .dropdown-menu .dropdown-item .fab.fa-threads,
html body .header .dropdown-item .fab.fa-threads,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-threads,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-threads {
    background: #000000 !important;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #000000 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* 3) Hover'da rozet rengi korunur (sadece scale uygulanır - mevcut kuralla uyumlu) */
html body .header .dropdown-item:hover .fab.fa-facebook-f { background: #1877F2 !important; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
html body .header .dropdown-item:hover .fab.fa-pinterest-p { background: #E60023 !important; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
html body .header .dropdown-item:hover .fab.fa-snapchat-ghost,
html body .header .dropdown-item:hover .fab.fa-snapchat { background: #FFFC00 !important; color: #000000 !important; -webkit-text-fill-color: #000000 !important; }
html body .header .dropdown-item:hover .fab.fa-linkedin-in { background: #0A66C2 !important; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
html body .header .dropdown-item:hover .fab.fa-threads { background: #000000 !important; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }

/* ===================================================================== */
/* === SİTE MARKA LOGOSU - HER YERDE MAVİ                            === */
/* === Tema, sayfa veya ikon farketmez. Brand identity = #2563eb.    === */
/* ===================================================================== */

/* 1) Brand-mark içindeki TÜM ikonlar (Font Awesome <i> ve inline <svg>) MAVİ */
html body .header .logo .brand-mark i,
html body .header .logo .brand-mark svg,
html body .header .logo .brand-mark .fab,
html body .header .logo .brand-mark .fas,
html body .header .logo > i,
html body .header .logo > i.fas.fa-users,
html body .header .logo > i.fab,
html[data-theme="dark"] body .header .logo .brand-mark i,
html[data-theme="dark"] body .header .logo .brand-mark svg,
html[data-theme="dark"] body .header .logo .brand-mark .fab,
html[data-theme="dark"] body .header .logo .brand-mark .fas,
html[data-theme="dark"] body .header .logo > i,
html[data-theme="dark"] body .header .logo > i.fas.fa-users,
html[data-theme="dark"] body .header .logo > i.fab {
    color: #2563eb !important;
    fill: #2563eb !important;
    -webkit-text-fill-color: #2563eb !important;
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
}

/* 2) Brand-mark içindeki <svg> path'leri (currentColor değilse de) MAVİ */
html body .header .logo .brand-mark svg path,
html[data-theme="dark"] body .header .logo .brand-mark svg path {
    fill: #2563eb !important;
}

/* 3) Brand-mark inline style="color:..." override için ekstra spesifiklik */
html body .header .logo .brand-mark i[style],
html body .header .logo .brand-mark svg[style],
html[data-theme="dark"] body .header .logo .brand-mark i[style],
html[data-theme="dark"] body .header .logo .brand-mark svg[style] {
    color: #2563eb !important;
    fill: #2563eb !important;
    -webkit-text-fill-color: #2563eb !important;
}

/* 4) Marka adı "TakipçiDurağı" metni de MAVİ (her temada) */
html body .header .logo span:not(.brand-mark),
html[data-theme="dark"] body .header .logo span:not(.brand-mark) {
    color: #2563eb !important;
    -webkit-text-fill-color: #2563eb !important;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: none !important;
}

/* 5) Eski PNG/WEBP brand-mark senaryosu için fallback (artık img kullanılmıyor;
   Snapchat ve Kick brand-mark'ları FA + inline SVG'ye çevrildi). */
html body .header .logo .brand-mark img,
html[data-theme="dark"] body .header .logo .brand-mark img {
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

/* 6) Hover'da daha koyu mavi (etkileşim hissi) */
html body .header .logo:hover .brand-mark i,
html body .header .logo:hover .brand-mark svg,
html body .header .logo:hover .brand-mark svg path,
html body .header .logo:hover > i,
html body .header .logo:hover span:not(.brand-mark),
html[data-theme="dark"] body .header .logo:hover .brand-mark i,
html[data-theme="dark"] body .header .logo:hover .brand-mark svg,
html[data-theme="dark"] body .header .logo:hover .brand-mark svg path,
html[data-theme="dark"] body .header .logo:hover > i,
html[data-theme="dark"] body .header .logo:hover span:not(.brand-mark) {
    color: #1d4ed8 !important;
    fill: #1d4ed8 !important;
    -webkit-text-fill-color: #1d4ed8 !important;
}

/* ===================================================================== */
/* === TİKTOK LOGOSU - HER YERDE RENKLİ (cyan + magenta glitch)      === */
/* === Brand-mark hariç (orası mavi); diğer tüm yerler ikonik renkli. === */
/* ===================================================================== */

/* 1) Servis sayfası büyük TikTok logosu - cyan/magenta glitch (daha agresif) */
html body .platform-logo-large i.fab.fa-tiktok,
html body .platform-logo-large.tiktok-large i,
html body .platform-logo-large > i.fa-tiktok {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-shadow:
        5px 0 0 #25F4EE,
        -5px 0 0 #FE2C55,
        4px 4px 0 rgba(37, 244, 238, 0.85),
        -4px -4px 0 rgba(254, 44, 85, 0.85),
        0 0 18px rgba(37, 244, 238, 0.45) !important;
    filter: none !important;
    opacity: 1 !important;
}
html[data-theme="dark"] body .platform-logo-large i.fab.fa-tiktok,
html[data-theme="dark"] body .platform-logo-large.tiktok-large i,
html[data-theme="dark"] body .platform-logo-large > i.fa-tiktok {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

/* 2) Navbar dropdown TikTok rozeti - siyah çember + cyan/magenta gradient parıltı */
html body .header .dropdown-menu .dropdown-item .fab.fa-tiktok,
html body .header .dropdown-item .fab.fa-tiktok,
html[data-theme="dark"] body .header .dropdown-menu .dropdown-item .fab.fa-tiktok,
html[data-theme="dark"] body .header .dropdown-item .fab.fa-tiktok {
    background: #000000 !important;
    background-image: linear-gradient(135deg, #25F4EE 0%, #000000 45%, #000000 55%, #FE2C55 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow:
        1px 1px 0 #25F4EE,
        -1px -1px 0 #FE2C55 !important;
    box-shadow: 0 2px 8px rgba(254, 44, 85, 0.35), 0 2px 8px rgba(37, 244, 238, 0.25) !important;
}
html body .header .dropdown-item:hover .fab.fa-tiktok {
    background-image: linear-gradient(135deg, #25F4EE 0%, #000000 40%, #000000 60%, #FE2C55 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow:
        1px 1px 0 #25F4EE,
        -1px -1px 0 #FE2C55 !important;
}

/* 3) Footer / hero / popüler paketler / animated platform TikTok - glitch shadow */
html body .footer .fa-tiktok,
html body .hero .fa-tiktok,
html body .pricing-preview .fa-tiktok,
html body .animated-platforms .fa-tiktok,
html body .hero-platforms .fa-tiktok,
html body .left-platforms .fa-tiktok,
html body .right-platforms .fa-tiktok {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-shadow:
        2px 2px 0 #25F4EE,
        -2px -2px 0 #FE2C55 !important;
    filter: none !important;
    opacity: 1 !important;
}
html[data-theme="dark"] body .footer .fa-tiktok,
html[data-theme="dark"] body .hero .fa-tiktok,
html[data-theme="dark"] body .pricing-preview .fa-tiktok,
html[data-theme="dark"] body .animated-platforms .fa-tiktok,
html[data-theme="dark"] body .hero-platforms .fa-tiktok,
html[data-theme="dark"] body .left-platforms .fa-tiktok,
html[data-theme="dark"] body .right-platforms .fa-tiktok {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow:
        2px 2px 0 #25F4EE,
        -2px -2px 0 #FE2C55 !important;
}

/* ===================================================================== */
/* === METİN GÖRÜNÜRLÜK SAFETY NET                                    === */
/* === CSS çakışmasından kaynaklı kaybolan metni garanti altına al.   === */
/* ===================================================================== */

/* 1) Açık tema: section/main içindeki temel metinler asla şeffaf veya beyaz olmasın */
html:not([data-theme="dark"]) body main p,
html:not([data-theme="dark"]) body main li,
html:not([data-theme="dark"]) body main label,
html:not([data-theme="dark"]) body section p,
html:not([data-theme="dark"]) body section li,
html:not([data-theme="dark"]) body section label,
html:not([data-theme="dark"]) body .container > p,
html:not([data-theme="dark"]) body .container > li {
    color: var(--text-primary, #1e293b);
}

/* 2) Karanlık tema: aynı koruma, ancak açık metin */
html[data-theme="dark"] body main p:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body main li:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body main label,
html[data-theme="dark"] body section p:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body section li:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body section label {
    color: var(--text-primary, #f1f5f9);
}

/* 3) Başlıklar (h1-h6) - kasıtlı gradient yoksa görünür kalsın */
html:not([data-theme="dark"]) body h1:not(.gradient-text):not([class*="gradient"]),
html:not([data-theme="dark"]) body h2:not(.gradient-text):not([class*="gradient"]),
html:not([data-theme="dark"]) body h3:not(.gradient-text):not([class*="gradient"]),
html:not([data-theme="dark"]) body h4:not(.gradient-text):not([class*="gradient"]),
html:not([data-theme="dark"]) body h5:not(.gradient-text):not([class*="gradient"]),
html:not([data-theme="dark"]) body h6:not(.gradient-text):not([class*="gradient"]) {
    color: var(--text-primary, #1e293b);
}
html[data-theme="dark"] body h1:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body h2:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body h3:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body h4:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body h5:not(.gradient-text):not([class*="gradient"]),
html[data-theme="dark"] body h6:not(.gradient-text):not([class*="gradient"]) {
    color: var(--text-primary, #f1f5f9);
}

/* 4) Gradient text fallback - background-clip:text desteklenmediğinde görünür kalsın */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    html body [style*="background-clip: text"],
    html body [style*="-webkit-background-clip: text"] {
        -webkit-text-fill-color: initial !important;
        color: var(--text-primary, #1e293b) !important;
    }
    html[data-theme="dark"] body [style*="background-clip: text"],
    html[data-theme="dark"] body [style*="-webkit-background-clip: text"] {
        color: var(--text-primary, #f1f5f9) !important;
    }
}

/* 5) Service/package card text - kart içindeki metinler her temada okunur kalsın */
html:not([data-theme="dark"]) body .service-card p,
html:not([data-theme="dark"]) body .service-card .desc,
html:not([data-theme="dark"]) body .service-card span:not(.discount-badge):not(.badge),
html:not([data-theme="dark"]) body .package-card p,
html:not([data-theme="dark"]) body .package-card li {
    color: var(--text-primary, #1e293b);
}
html[data-theme="dark"] body .service-card p,
html[data-theme="dark"] body .service-card .desc,
html[data-theme="dark"] body .service-card span:not(.discount-badge):not(.badge),
html[data-theme="dark"] body .package-card p,
html[data-theme="dark"] body .package-card li {
    color: var(--text-primary, #f1f5f9);
}

/* 6) Form elementleri (input/textarea/select) - placeholder + değer her zaman görünür */
html body input,
html body textarea,
html body select {
    color: var(--text-primary, #1e293b);
}
html[data-theme="dark"] body input,
html[data-theme="dark"] body textarea,
html[data-theme="dark"] body select {
    color: var(--text-primary, #f1f5f9);
}
html body input::placeholder,
html body textarea::placeholder {
    color: var(--text-muted, #64748b);
    opacity: 0.7;
}

/* 7) Düğmeler (button/a.btn) - boş kalan veya transparan metinleri engelle */
html body button:not(:empty):not([class*="icon-only"]),
html body a.btn:not(:empty),
html body .btn:not(:empty) {
    -webkit-text-fill-color: currentColor;
}

/* ===================================================================== */
/* === DISCORD BÜYÜK LOGO - Beyaz çember içinde tam ortala            === */
/* ===================================================================== */
html body .platform-logo-large i.fab.fa-discord,
html[data-theme="dark"] body .platform-logo-large i.fab.fa-discord {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Discord glyph FontAwesome'da hafif yukarı kayar - 1px aşağı kaydır */
    transform: translateY(1px) !important;
    color: #5865F2 !important;
    -webkit-text-fill-color: #5865F2 !important;
    opacity: 1 !important;
}

/* Tüm büyük FA ikonlarının glyph'i pixel-perfect ortalansın */
html body .platform-logo-large i.fab,
html body .platform-logo-large i.fas {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* X ve Threads inline SVG'leri çemberin tam ortasında, brand renk */
html body .platform-logo-large > svg,
html[data-theme="dark"] body .platform-logo-large > svg {
    display: block !important;
    margin: 0 auto !important;
    width: 50px !important;
    height: 50px !important;
    color: #000000 !important;
    fill: #000000 !important;
    opacity: 1 !important;
}
html body .platform-logo-large > svg path,
html[data-theme="dark"] body .platform-logo-large > svg path {
    fill: #000000 !important;
}

/* ===================================================================== */
/* === "CANLI" / LIVE BADGE - YANIP SÖNMEYİ DURDUR (sabit görünsün)   === */
/* ===================================================================== */
html body .live-indicator,
html body .live-badge,
html body .live-dot,
html body [class*="live-indicator"],
html body [class*="live-badge"],
html[data-theme="dark"] body .live-indicator,
html[data-theme="dark"] body .live-badge,
html[data-theme="dark"] body .live-dot,
html[data-theme="dark"] body [class*="live-indicator"],
html[data-theme="dark"] body [class*="live-badge"] {
    animation: none !important;
    -webkit-animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
}

/* Bunların pseudo-element ::before/::after halkaları da animasyonsuz olsun */
html body .live-indicator::before,
html body .live-indicator::after,
html body .live-badge::before,
html body .live-badge::after,
html body .live-dot::before,
html body .live-dot::after {
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
}

/* Live notifications kart - parent container animasyonu kalsın ama badge sabit */
html body .live-notifications .live-indicator,
html body .live-notifications [class*="live"] {
    animation: none !important;
    opacity: 1 !important;
}

/* ===================================================================== */
/* === RESPONSIVE - MOBİL/TABLET KULLANILABİLİRLİK İYİLEŞTİRMELERİ    === */
/* ===================================================================== */

/* TABLET (480px - 1024px) - container padding artışı, daha rahat tap area */
@media (max-width: 1024px) {
    html body .container {
        padding-left: max(1rem, env(safe-area-inset-left)) !important;
        padding-right: max(1rem, env(safe-area-inset-right)) !important;
    }
    html body section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    /* Yatay scroll kesin engellensin */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

/* MOBİL (max 768px) - kritik UX düzeltmeleri */
@media (max-width: 768px) {
    /* 1) Tap target min 44px - tüm butonlar/linkler */
    html body .header .nav-link,
    html body .header button:not(.theme-toggle),
    html body .service-card,
    html body .package-card,
    html body .footer-section a {
        min-height: 44px !important;
    }
    html body button:not(.theme-toggle):not(.icon-only):not(.brand-mark) {
        min-height: 44px !important;
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
    }

    /* 2) Hero başlıkları okunabilir kalsın - taşmayı engelle */
    html body h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    html body h2 {
        font-size: clamp(1.3rem, 5vw, 1.9rem) !important;
        line-height: 1.25 !important;
    }
    html body h3 {
        font-size: clamp(1.1rem, 4vw, 1.5rem) !important;
        line-height: 1.3 !important;
    }
    html body p,
    html body li {
        font-size: clamp(0.92rem, 3.5vw, 1rem) !important;
        line-height: 1.55 !important;
    }

    /* 3) Servis kartları tek/iki sütun - taşma engellemesi */
    html body .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    html body .pricing-preview .packages-grid,
    html body .pricing-preview > .container > div[class*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* 4) Floating elements (canlı sipariş bildirimi vs.) küçük ekranı kaplamasın */
    html body .live-notifications,
    html body .persistent-order-reminder {
        max-width: calc(100vw - 2rem) !important;
        font-size: 0.85rem !important;
    }

    /* 5) Servis sayfası büyük logo (.platform-logo-large) mobile'de küçülsün */
    html body .platform-logo-large {
        width: 72px !important;
        height: 72px !important;
    }
    html body .platform-logo-large i,
    html body .platform-logo-large svg {
        font-size: 38px !important;
        width: 38px !important;
        height: 38px !important;
    }

    /* 6) Footer üç sütun → tek sütun */
    html body .footer .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    /* 7) Modal/popup içerikleri mobile'de kenarlardan ferahlasın */
    html body .modal-content,
    html body [class*="modal"] > div {
        max-width: calc(100vw - 1.5rem) !important;
        max-height: calc(100vh - 2rem) !important;
        overflow-y: auto !important;
    }

    /* 8) Image taşması engellemesi */
    html body img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* SMALL MOBİL (max 480px) - en küçük ekranlar için son rötuşlar */
@media (max-width: 480px) {
    html body .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    html body .platform-logo-large {
        width: 64px !important;
        height: 64px !important;
    }
    html body .platform-logo-large i,
    html body .platform-logo-large svg {
        font-size: 32px !important;
        width: 32px !important;
        height: 32px !important;
    }
    html body .platform-page-header {
        padding: 2rem 1rem !important;
    }
    html body .service-card {
        padding: 1.25rem 1rem !important;
    }
    /* Header/navbar yüksekliği kompakt */
    html body .header,
    html body .header-content {
        min-height: 60px !important;
    }
    /* Sticky elementler ekranı kapatmasın */
    html body .live-notifications,
    html body .persistent-order-reminder {
        bottom: 0.5rem !important;
        font-size: 0.78rem !important;
        padding: 0.5rem !important;
    }
}

/* ===================================================================== */
/* === SERVİS SAYFASI BAŞLIK BLOĞU - METİNLER HER TEMADA NET BEYAZ === */
/* === Platform-page-header (büyük logonun olduğu kart) içindeki     === */
/* === başlık ve açıklama; renkli/koyu gradient zemine karşı her     === */
/* === iki temada da okunabilir kalsın diye SAF beyaz + güçlü gölge. === */
/* ===================================================================== */
/* Sadece METİN çocukları beyaz + gradient text-clip iptal.
   Container (.platform-page-header) dokunulmuyor; markaya özel gradient
   arka plan ve dekoratif öğeler korunuyor. */
html body .platform-page-header h1,
html body .platform-page-header h2,
html body .platform-page-header h3,
html body .platform-page-header p,
html body .platform-page-header span,
html body .platform-page-header li,
html body .platform-page-header a,
html[data-theme="dark"] body .platform-page-header h1,
html[data-theme="dark"] body .platform-page-header h2,
html[data-theme="dark"] body .platform-page-header h3,
html[data-theme="dark"] body .platform-page-header p,
html[data-theme="dark"] body .platform-page-header span,
html[data-theme="dark"] body .platform-page-header li,
html[data-theme="dark"] body .platform-page-header a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

/* Platform header h1/p: sadece beyaz renk + hafif gölge (görseli bozmadan) */
html body .platform-page-header h1,
html[data-theme="dark"] body .platform-page-header h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.28) !important;
}

html body .platform-page-header p,
html[data-theme="dark"] body .platform-page-header p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22) !important;
    opacity: 1 !important;
}

/* "platform-details" varyasyonu da aynı kuralla güvence altında */
html body .platform-details h1,
html body .platform-details p,
html[data-theme="dark"] body .platform-details h1,
html[data-theme="dark"] body .platform-details p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.55) !important;
}

/* ===================================================================== */
/* === SERVİS DETAY SAYFASI BAŞLIK BLOĞU (.page-header)              === */
/* === Hem .header-content hem doğrudan h1/p — koyu/renkli gradient  === */
/* === arkaplanın üstünde her temada saf beyaz + gölge.              === */
/* ===================================================================== */
/* Sadece METİN çocukları beyaz; container ve dekoratif öğeler korunur. */
html body .page-header h1,
html body .page-header h2,
html body .page-header h3,
html body .page-header p,
html body .page-header span,
html body .page-header li,
html body .page-header a,
html body .page-header .header-content h1,
html body .page-header .header-content h2,
html body .page-header .header-content h3,
html body .page-header .header-content p,
html body .page-header .header-content span,
html[data-theme="dark"] body .page-header h1,
html[data-theme="dark"] body .page-header h2,
html[data-theme="dark"] body .page-header h3,
html[data-theme="dark"] body .page-header p,
html[data-theme="dark"] body .page-header span,
html[data-theme="dark"] body .page-header li,
html[data-theme="dark"] body .page-header a,
html[data-theme="dark"] body .page-header .header-content h1,
html[data-theme="dark"] body .page-header .header-content h2,
html[data-theme="dark"] body .page-header .header-content h3,
html[data-theme="dark"] body .page-header .header-content p,
html[data-theme="dark"] body .page-header .header-content span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

/* page-header h1/p: sadece beyaz renk + hafif gölge (görseli bozmadan) */
html body .page-header h1,
html body .page-header .header-content h1,
html[data-theme="dark"] body .page-header h1,
html[data-theme="dark"] body .page-header .header-content h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.30) !important;
}

html body .page-header p,
html body .page-header .header-content p,
html[data-theme="dark"] body .page-header p,
html[data-theme="dark"] body .page-header .header-content p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) !important;
}

/* ===================================================================== */
/* === FOOTER FINAL LOCK — dark theme de birebir acik tema gorunumu  === */
/* ===================================================================== */
html body .footer,
html[data-theme="dark"] body .footer {
    background: #1e3a8a !important;
    background-color: #1e3a8a !important;
    background-image: none !important;
    color: #ffffff !important;
    border-top: none !important;
    padding: 1.5rem 0 0.5rem !important;
    margin-top: auto !important;
    transition: none !important;
}

html body .footer .footer-content,
html[data-theme="dark"] body .footer .footer-content {
    display: grid !important;
    grid-template-columns: 1.7fr 1fr 2.3fr !important;
    gap: 1.5rem !important;
    margin-bottom: 0.85rem !important;
    align-items: start !important;
}

html body .footer .footer-content > .footer-section:last-child,
html[data-theme="dark"] body .footer .footer-content > .footer-section:last-child {
    padding-left: 1.25rem !important;
}

html body .footer .footer-section,
html[data-theme="dark"] body .footer .footer-section,
html body .footer .footer-section:hover,
html[data-theme="dark"] body .footer .footer-section:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    transition: none !important;
}

html body .footer .footer-logo,
html[data-theme="dark"] body .footer .footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 0 0 0.6rem 0 !important;
    padding: 0 !important;
}

html body .footer .footer-logo i,
html[data-theme="dark"] body .footer .footer-logo i {
    color: #60a5fa !important;
    font-size: 1.5rem !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
    line-height: 1 !important;
    filter: none !important;
    transform: none !important;
    text-shadow: none !important;
}

html body .footer .footer-logo h3,
html[data-theme="dark"] body .footer .footer-logo h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}

html body .footer .footer-description,
html[data-theme="dark"] body .footer .footer-description {
    color: #cbd5e1 !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin: 0 0 0.9rem 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}

html body .footer .footer-section h4,
html[data-theme="dark"] body .footer .footer-section h4,
html body .footer .footer-bottom .company-name,
html[data-theme="dark"] body .footer .footer-bottom .company-name {
    color: #60a5fa !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    margin: 0 0 0.55rem 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}

html body .footer .footer-section ul,
html[data-theme="dark"] body .footer .footer-section ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body .footer .footer-section ul li,
html[data-theme="dark"] body .footer .footer-section ul li {
    margin: 0 0 0.35rem 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

html body .footer .footer-section ul li a,
html[data-theme="dark"] body .footer .footer-section ul li a,
html body .footer .footer-section ul li a span,
html[data-theme="dark"] body .footer .footer-section ul li a span {
    color: #cbd5e1 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    transform: none !important;
    transition: color 0.2s ease !important;
}

html body .footer .footer-section ul li a:hover,
html[data-theme="dark"] body .footer .footer-section ul li a:hover,
html body .footer .footer-section ul li a:hover span,
html[data-theme="dark"] body .footer .footer-section ul li a:hover span {
    color: #60a5fa !important;
    transform: none !important;
}

html body .footer .footer-bottom,
html[data-theme="dark"] body .footer .footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.65rem 0 0 0 !important;
    margin-top: 0.5rem !important;
    border-top: 1px solid #374151 !important;
    color: #9ca3af !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    transition: none !important;
}

html body .footer .copyright-text,
html[data-theme="dark"] body .footer .copyright-text {
    color: #9ca3af !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}

html body .footer .social-links,
html[data-theme="dark"] body .footer .social-links {
    display: flex !important;
    gap: 1rem !important;
    margin: 0 0 0.9rem 0 !important;
}

html body .footer .social-link,
html[data-theme="dark"] body .footer .social-link {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transform: none !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

html body .footer .social-link:hover,
html[data-theme="dark"] body .footer .social-link:hover {
    background: #60a5fa !important;
    color: #ffffff !important;
    transform: none !important;
}

html body .footer .footer-brand-icon,
html[data-theme="dark"] body .footer .footer-brand-icon,
html body .footer .footer-section ul li a > i,
html[data-theme="dark"] body .footer .footer-section ul li a > i,
html body .footer .footer-section ul li a > .footer-svc-svg,
html[data-theme="dark"] body .footer .footer-section ul li a > .footer-svc-svg,
html body .footer .footer-section ul li a > .footer-svc-img,
html[data-theme="dark"] body .footer .footer-section ul li a > .footer-svc-img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex: 0 0 24px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
    filter: none !important;
    transform: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
}

html body .footer .footer-brand-icon.footer-svc-img,
html[data-theme="dark"] body .footer .footer-brand-icon.footer-svc-img {
    object-fit: contain !important;
    padding: 3px !important;
    background-color: transparent !important;
}

/* Ana sayfa hero metni: acik temada da koyu temadaki okunakli gorunum */
html body .hero .hero-title,
html:not([data-theme="dark"]) body .hero .hero-title {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* "Fark Yarat!" — üst başlık rengi alt öğeye clip edilen gradienti bozmasın */
html body .hero .hero-title .highlight,
html[data-theme="dark"] body .hero .hero-title .highlight {
    background: linear-gradient(115deg, #fffef0 0%, #ffe066 22%, #ffb86b 48%, #ff7eb3 72%, #e9d5ff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
}

html body .hero .hero-subtitle,
html:not([data-theme="dark"]) body .hero .hero-subtitle {
    color: #f1f5f9 !important;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Hero floating-platforms: TÜM platform marklarına aynı animasyon uygulanır */
html body .floating-platforms .platform-mark,
html[data-theme="dark"] body .floating-platforms .platform-mark {
    will-change: transform, opacity;
    animation: bounceUp 3s ease-in-out infinite !important;
    filter: none !important;
    opacity: 0.4;
}

/* Animasyon gecikme sınıfları !important ile uygulansın ki override'ları geçsin */
html body .floating-platforms .platform-mark.bounce-delay-0   { animation-delay: 0s    !important; }
html body .floating-platforms .platform-mark.bounce-delay-05  { animation-delay: 0.5s  !important; }
html body .floating-platforms .platform-mark.bounce-delay-1   { animation-delay: 1s    !important; }
html body .floating-platforms .platform-mark.bounce-delay-15  { animation-delay: 1.5s  !important; }
html body .floating-platforms .platform-mark.bounce-delay-2   { animation-delay: 2s    !important; }
html body .floating-platforms .platform-mark.bounce-delay-25  { animation-delay: 2.5s  !important; }

/* İç içerik (i/svg/img) animasyon almasın - sadece wrapper bouncelar */
html body .floating-platforms .platform-mark > *,
html[data-theme="dark"] body .floating-platforms .platform-mark > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Discord ikonu rengi korunsun */
html body .floating-platforms .platform-mark.discord-mark i,
html[data-theme="dark"] body .floating-platforms .platform-mark.discord-mark i {
    color: #5865f2 !important;
    -webkit-text-fill-color: #5865f2 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Discord wrapper da sadece hareket etsin, fade hissi vermesin */
html body .floating-platforms .platform-mark.discord-mark,
html[data-theme="dark"] body .floating-platforms .platform-mark.discord-mark {
    opacity: 0.4 !important;
    filter: none !important;
}

/* Facebook ve LinkedIn hero işaretleri alt platform kartlarındaki dolu ikon diliyle aynı olsun */
html body .floating-platforms .platform-mark.facebook-mark,
html[data-theme="dark"] body .floating-platforms .platform-mark.facebook-mark,
html body .floating-platforms .platform-mark.linkedin-mark,
html[data-theme="dark"] body .floating-platforms .platform-mark.linkedin-mark {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    box-shadow: none !important;
}

html body .floating-platforms .platform-mark.facebook-mark,
html[data-theme="dark"] body .floating-platforms .platform-mark.facebook-mark {
    background: #1877f2 !important;
}

html body .floating-platforms .platform-mark.linkedin-mark,
html[data-theme="dark"] body .floating-platforms .platform-mark.linkedin-mark {
    background: #0a66c2 !important;
}

html body .floating-platforms .platform-mark.facebook-mark i,
html[data-theme="dark"] body .floating-platforms .platform-mark.facebook-mark i,
html body .floating-platforms .platform-mark.linkedin-mark i,
html[data-theme="dark"] body .floating-platforms .platform-mark.linkedin-mark i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.55rem !important;
    text-shadow: none !important;
}

/* Footer TikTok logosu: tema degisince renk/golge/olcu oynamasin */
html body .footer .footer-brand-tiktok,
html[data-theme="dark"] body .footer .footer-brand-tiktok,
html body .footer .footer-brand-tiktok.fa-tiktok,
html[data-theme="dark"] body .footer .footer-brand-tiktok.fa-tiktok,
html body .footer .footer-section ul li a > i.footer-brand-tiktok,
html[data-theme="dark"] body .footer .footer-section ul li a > i.footer-brand-tiktok {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex: 0 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: #000000 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
}

html body .footer .footer-section ul li a:hover .footer-brand-tiktok,
html[data-theme="dark"] body .footer .footer-section ul li a:hover .footer-brand-tiktok {
    background: #000000 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    filter: none !important;
    transform: none !important;
}

/* Footer: tema degisiminde milimetrik oynama da olmasin */
html body .footer,
html body .footer *,
html[data-theme="dark"] body .footer,
html[data-theme="dark"] body .footer * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

html body .footer .footer-section,
html[data-theme="dark"] body .footer .footer-section {
    min-height: 1px !important;
}

html body .footer .footer-section h4,
html[data-theme="dark"] body .footer .footer-section h4 {
    min-height: 1.02rem !important;
}

html body .footer .footer-section ul li,
html[data-theme="dark"] body .footer .footer-section ul li {
    min-height: 1.22rem !important;
}

html body .footer .footer-section ul li a,
html[data-theme="dark"] body .footer .footer-section ul li a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 1.22rem !important;
}

html body .footer .footer-bottom,
html[data-theme="dark"] body .footer .footer-bottom {
    min-height: 1.45rem !important;
}

/* Tema değişimi devre dışı - tema toggle butonunu gizle */
html body .theme-toggle,
html[data-theme="dark"] body .theme-toggle,
html body .header .theme-toggle,
html[data-theme="dark"] body .header .theme-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
}

/* Platformlar dropdown - Snapchat ikonu, diğerleriyle aynı boyut/hizalama */
.dropdown-item i.fab.fa-snapchat.dropdown-snapchat-icon,
html body .dropdown-item i.fab.fa-snapchat.dropdown-snapchat-icon {
    color: #FFFC00 !important;
    -webkit-text-fill-color: #FFFC00 !important;
    font-size: 16px !important;
    width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    text-align: center !important;
    text-shadow: 0 0 1px rgba(0,0,0,0.85), 0 0 2px rgba(0,0,0,0.6) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Kurumsal / yasal sayfalar: ortak header ile uyumlu sabit yerlesim */
html body .corporate-layout,
html[data-theme="dark"] body .corporate-layout {
    display: flex !important;
    min-height: calc(100vh - var(--header-h)) !important;
    margin-top: 0 !important;
    background: #f8fafc !important;
}

html[data-theme="dark"] body .corporate-layout {
    background: #0f172a !important;
}

html body .corporate-sidebar,
html[data-theme="dark"] body .corporate-sidebar {
    top: var(--header-h) !important;
    height: calc(100vh - var(--header-h)) !important;
    width: 280px !important;
    position: fixed !important;
    overflow-y: auto !important;
}

html body .corporate-sidebar h3,
html[data-theme="dark"] body .corporate-sidebar h3 {
    margin-top: 0 !important;
}

html body .corporate-content,
html[data-theme="dark"] body .corporate-content {
    flex: 1 !important;
    margin-left: 280px !important;
    width: calc(100% - 280px) !important;
    padding: 2rem !important;
}

@media (max-width: 768px) {
    html body .corporate-layout,
    html[data-theme="dark"] body .corporate-layout {
        flex-direction: column !important;
        min-height: auto !important;
    }

    html body .corporate-sidebar,
    html[data-theme="dark"] body .corporate-sidebar {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        padding: 1rem 0 !important;
    }

    html body .corporate-content,
    html[data-theme="dark"] body .corporate-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 1rem !important;
    }
}

/* Indirim rozetleri her temada canli ve satis odakli gorunur. */
.package-card .package-pricing .discount,
.package-card .discount,
.pricing-card .discount,
.discount {
    background: linear-gradient(135deg, #ff7a18 0%, #f59e0b 45%, #10b981 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28) !important;
    text-shadow: 0 1px 1px rgba(15, 23, 42, 0.22) !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    padding: 0.32rem 0.78rem !important;
    border-radius: 999px !important;
    line-height: 1 !important;
}

.package-card .package-pricing .discount::before,
.package-card .discount::before,
.pricing-card .discount::before,
.discount::before {
    content: "%";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    margin-right: 0.34rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

html[data-theme="dark"] .package-card .package-pricing .discount,
html[data-theme="dark"] .package-card .discount,
html[data-theme="dark"] .pricing-card .discount,
html[data-theme="dark"] .discount {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 45%, #22c55e 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 10px 22px rgba(245, 158, 11, 0.24), 0 0 0 1px rgba(255,255,255,0.08) inset !important;
}

/* Satin alma kartlarinda fiyat ile buton arasindaki boslugu azaltir. */
body .package-card .package-pricing {
    gap: 0.35rem !important;
}

body .package-card .package-pricing .final-price {
    margin-bottom: 0.25rem !important;
}

body .package-card .package-pricing .add-to-cart-btn,
body .package-card .package-pricing .btn,
body .package-card .package-pricing .package-btn {
    margin-top: 0.2rem !important;
}

/* Açık temada indirim rozeti metin rengi - beyaz */
html:not([data-theme="dark"]) .discount,
html:not([data-theme="dark"]) .package-card .discount,
html:not([data-theme="dark"]) .package-pricing .discount {
    color: #ffffff !important;
}

/* Açık temada discount badge arka planı */
html:not([data-theme="dark"]) .discount {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

/* Fiyat satırındaki indirim: kartı beyazlatma kuralı rozeti öldürmesin; metin her zaman okunaklı */
html:not([data-theme="dark"]) .package-pricing .price-info .discount,
html:not([data-theme="dark"]) .package-card .package-pricing .price-info .discount {
    background: linear-gradient(135deg, #059669 0%, #10b981 45%, #d97706 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35) !important;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.4) !important;
}

/* HTML zaten "%20" içeriyor; ::before ile ikinci % gösterme */
.package-pricing .price-info .discount::before,
.package-card .package-pricing .price-info .discount::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
