/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    background: #0f172a;
    color: #ffffff;
    overflow: hidden; /* Ana sayfa için - admin/test sayfalarında override edilecek */
    line-height: 1.6;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
}

/* Admin panel ve test sayfaları için scroll'u serbest bırak */
body.admin-page,
body.test-page {
    overflow: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100vh;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Store sayfası için özel düzenleme */
#store-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    background: #0f172a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sayfa Geçişleri */
.page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0f172a;
    display: flex;
    flex-direction: column;
}

.page.active {
    transform: translateX(0);
}

#main-page {
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    height: 100vh;
    width: 100%;
}

.page.slide-out {
    transform: translateX(-100%);
}

/* Header Section */
.header-section {
    position: relative;
    min-height: calc(100vh - 260px);
    padding: 90px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    overflow: hidden;
    z-index: 20;
    flex: 1;
    width: 100%;
    isolation: isolate;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #0f172a;
    overflow: hidden;
}

.header-background.no-bg-image {
    background: radial-gradient(circle at top, rgba(64, 224, 208, 0.18), transparent 45%), #0f172a;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
    opacity: 0.08;
}

/* Görselden ana içeriğe geçiş efekti */
.header-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #0f172a 100%);
    z-index: -1;
}

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0f172a;
    z-index: -1;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.header-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 1200px;
    padding: 0 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: nowrap; /* Wrap'i kaldırdık - öğeler aynı satırda kalacak */
    text-align: center;
}

.logo-box {
    width: 190px;
    height: 190px;
    border-radius: 16px;
    background: #1e40af;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding: 20px;
}

.logo-box-title {
    z-index: 1;
}

.logo {
    width: 175px;
    height: 175px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.9) 0%, rgba(71, 82, 196, 0.9) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, rgba(88, 101, 242, 1) 0%, rgba(71, 82, 196, 1) 100%);
}

.btn-ip {
    background: #2563eb;
    color: white;
    border: 1px solid #3b82f6;
}

.btn-ip:hover {
    background: #1e40af;
    border-color: #60a5fa;
}

.btn-store {
    background: #2563eb;
    color: white;
    border: 1px solid #3b82f6;
}

.btn-store:hover {
    background: #1e40af;
    border-color: #60a5fa;
}

.btn-steam {
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.9) 0%, rgba(14, 26, 38, 0.9) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(27, 40, 56, 0.3);
}

.btn-small {
    padding: 12px 20px;
    font-size: 13px;
}


.btn-connect {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 22px 60px;
    font-size: 18px;
    border-radius: 999px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.35);
}

.btn-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 35px 70px rgba(255, 107, 53, 0.45);
}

/* Mağaza Butonu - Sağ Üst */
.btn-top-right {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

/* Logo Yanındaki Butonlar */
.btn-logo-side {
    padding: 14px 28px;
    font-size: 13px;
    min-width: 180px; /* Eşit genişlik için artırdık */
    max-width: 180px; /* Maksimum genişlik de ekledik */
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    flex-shrink: 0; /* Butonların küçülmesini engelle */
}

.btn-logo-side span {
    font-weight: 600;
    letter-spacing: 1px;
}

#server-ip {
    text-transform: uppercase;
}

.logo-box {
    order: 2; /* Logo ortada */
    flex-shrink: 0; /* Logo'nun küçülmesini engelle */
}

.btn-logo-left {
    order: 1; /* IP logo'nun solunda */
}

.btn-logo-right {
    order: 3; /* Discord sağda */
}

.connect-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}


/* Footer - Dynamic Island Style */
.footer {
    background: rgba(14, 14, 16, 0.95);
    padding: 40px 48px 28px;
    border-radius: 36px;
    width: min(1220px, calc(100% - 80px));
    margin: 40px auto 32px;
    z-index: 100;
    flex-shrink: 0;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

#main-page .footer {
    margin-top: auto;
    margin-bottom: 300px; /* Daha yukarı (260px + 40px = 300px) */
}

#store-page .footer {
    margin-top: 60px;
    margin-bottom: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    color: white;
}

.social-icon.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
}

.social-icon.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: #888888;
    font-size: 12px;
}

.store-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    padding: 30px 60px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.store-header-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-purchases {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9) 0%, rgba(255, 152, 0, 0.9) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
}

.btn-purchases:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, rgba(255, 193, 7, 1) 0%, rgba(255, 152, 0, 1) 100%);
}

.store-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    margin: 0;
}

.btn-back {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.8) 0%, rgba(60, 60, 60, 0.8) 100%);
    color: white;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back:hover {
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.9) 0%, rgba(80, 80, 80, 0.9) 100%);
    transform: translateY(-2px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    visibility: visible;
    opacity: 1;
}

.user-info .user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-info .user-name {
    font-weight: 600;
    color: #ffffff;
    margin-top: 4px;
}

.user-info .user-steamid {
    font-size: 10px;
    color: #666666;
    font-family: monospace;
    opacity: 0.7;
    margin-top: 2px;
}

.user-info .logout-btn {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
    background: rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.user-info .logout-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff5252;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--theme-color, #2563eb);
    object-fit: cover;
    display: block;
}

.store-content {
    padding: 60px 0 40px;
    flex: 1;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 40px; /* Footer ile arasındaki boşluk */
}

/* Kategori Kartı - Product Card Şeklinde (Sadece görsel, buton yok) */
.category-card {
    cursor: pointer;
    position: relative;
}

.category-image {
    position: relative;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--theme-color, #2563eb);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.category-content {
    position: relative;
}

.category-title {
    margin-bottom: 15px;
}

.category-description {
    margin-bottom: 0; /* Buton olmadığı için margin-bottom kaldırıldı */
}

.product-card {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.product-content {
    padding: 30px;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.product-duration {
    color: #888888;
    font-size: 13px;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-buy {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Loading ve Notification */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top: 3px solid var(--theme-color, #2563eb);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(400px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10000;
    max-width: 350px;
    display: none; /* Başlangıçta gizli */
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.notification.success .notification-icon {
    background: #4CAF50;
    color: white;
}

.notification.error .notification-icon {
    background: #F44336;
    color: white;
}

.notification.info .notification-icon {
    background: #2196F3;
    color: white;
}

.notification-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1e293b;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 0;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

.modal-small {
    max-width: 500px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: #60a5fa;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    color: #ffffff;
}

.purchases-grid {
    display: grid;
    gap: 20px;
}

.purchase-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.purchase-item:hover {
    border-color: rgba(64, 224, 208, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(64, 224, 208, 0.1);
}

.purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.purchase-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.purchase-price {
    color: #60a5fa;
    font-size: 18px;
    font-weight: 700;
}

.purchase-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.purchase-details p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
}

.status-badge.unknown {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .btn-logo-side {
        min-width: auto;
        width: 200px;
    }
    
    .logo-box {
        width: 150px;
        height: 150px;
        font-size: 20px;
    }
    
    .logo {
        max-width: 300px;
        order: 1;
    }
    
    .btn-logo-left {
        order: 2;
    }
    
    .btn-logo-right {
        order: 3;
    }
    
    .btn-top-right {
        top: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .store-header {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .logo-box {
        width: 130px;
        height: 130px;
        font-size: 16px;
    }
    
    .btn-logo-side {
        width: 100%;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .mode-content {
        padding: 20px;
    }
    
    .product-content {
        padding: 20px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color, #2563eb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color, #1e40af);
}
