/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Mode Variables */
    --bg-primary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --bg-secondary: rgba(255, 255, 255, 0.1);
    --bg-tertiary: rgba(0, 0, 0, 0.9);
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-modal: rgba(0, 0, 0, 0.8);
    --bg-input: rgba(0, 0, 0, 0.7);
    
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-accent: #00ca00;
    --text-success: #4CAF50;
    --text-warning: #ff9800;
    --text-key: #9C27B0;
    
    --border-primary: #00ca00;
    --border-secondary: #00ca00;
    --border-success: #00ca00;
    --border-warning: #ff9800;
    --border-key: #9C27B0;
    
    --shadow-primary: 0 4px 20px rgba(0, 202, 0, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 202, 0, 0.3);
    --shadow-success: 0 20px 40px rgba(76, 175, 80, 0.3);
    --shadow-warning: 0 20px 40px rgba(255, 152, 0, 0.3);
    --shadow-key: 0 20px 40px rgba(156, 39, 176, 0.3);
}

[data-theme="light"] {
    /* Light Mode Variables - Daha yumuşak ve göze hoş renkler */
    --bg-primary: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
    --bg-secondary: rgba(236, 240, 243, 0.8);
    --bg-tertiary: rgba(255, 255, 255, 0.95);
    --bg-card: rgba(248, 250, 252, 0.9);
    --bg-modal: rgba(255, 255, 255, 0.98);
    --bg-input: rgba(248, 250, 252, 0.95);
    
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-accent: #00ca00;
    --text-success: #38a169;
    --text-warning: #dd6b20;
    --text-key: #805ad5;
    
    --border-primary: rgba(0, 202, 0, 0.2);
    --border-secondary: #00ca00;
    --border-success: #38a169;
    --border-warning: #dd6b20;
    --border-key: #805ad5;
    
    --shadow-primary: 0 4px 20px rgba(0, 202, 0, 0.15);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-success: 0 4px 12px rgba(56, 161, 105, 0.15);
    --shadow-warning: 0 4px 12px rgba(221, 107, 32, 0.15);
    --shadow-key: 0 4px 12px rgba(128, 90, 213, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Theme Toggle */


.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.theme-icon {
    font-size: 24px;
    transition: all 0.3s ease;
}

.theme-toggle[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.theme-toggle[data-theme="light"] .moon-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

/* Header */
header {
    background: var(--bg-tertiary);
    padding: 20px 0;
    box-shadow: var(--shadow-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 200px;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    border-color: var(--text-accent);
    transform: scale(1.02);
    box-shadow: 0 2px 10px var(--border-primary);
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: var(--text-accent);
    border-color: var(--text-accent);
    color: white;
    transform: translateY(-2px);
}

/* WhatsApp Support */
.whatsapp-header {
    background: linear-gradient(135deg, #25d366 0%, #20b858 100%);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-compact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 24px;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-title {
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-number {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-hours {
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
}

/* Main Content */
main {
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h1,
.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-accent), #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p,
.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Buttons */
.view-all-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--text-accent), #00e600);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-card);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.view-all-products-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-card);
    border-color: #00ff00;
}

.view-all-products-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.view-all-products-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.view-all-products-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 28px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}
/* En Çok Satanlar Bölümü */
.bestsellers-section {
    margin: 60px 0;
    padding: 0;
    background: none;
}

.bestsellers-header {
    text-align: center;
    margin-bottom: 50px;
}

.bestsellers-header h2 {
    font-size: 42px;
    color: var(--text-accent);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 202, 0, 0.3);
}

.bestsellers-header p {
    font-size: 18px;
    color: var(--text-secondary);
    opacity: 0.9;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bestseller-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.bestseller-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card);
    border-color: var(--text-accent);
}

.bestseller-card.personal {
    border-color: var(--border-warning);
    background: rgba(255, 152, 0, 0.08);
}

.bestseller-card.personal:hover {
    box-shadow: var(--shadow-warning);
    border-color: var(--text-warning);
}

.bestseller-card.key {
    border-color: var(--border-key);
    background: rgba(156, 39, 176, 0.08);
}

.bestseller-card.key:hover {
    box-shadow: var(--shadow-key);
    border-color: var(--text-key);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.product-badge.personal {
    background: var(--text-warning);
}

.product-badge.key {
    background: var(--text-key);
}

.bestseller-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: rgba(0, 202, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--border-secondary);
    transition: all 0.3s ease;
}

.bestseller-card.personal .bestseller-image {
    border-color: var(--border-warning);
    background: rgba(255, 152, 0, 0.1);
}

.bestseller-card.key .bestseller-image {
    border-color: var(--border-key);
    background: rgba(156, 39, 176, 0.1);
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-icon {
    font-size: 32px;
    color: var(--text-accent);
}

.bestseller-card.personal .no-image-icon {
    color: var(--text-warning);
}

.bestseller-card.key .no-image-icon {
    color: var(--text-key);
}

.bestseller-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bestseller-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bestseller-platform {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.bestseller-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-success);
    margin-bottom: 10px;
}

.bestseller-card.personal .bestseller-price {
    color: var(--text-warning);
}

.bestseller-card.key .bestseller-price {
    color: var(--text-key);
}

.bestseller-sales {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.sales-icon {
    font-size: 14px;
}

.bestseller-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--text-accent), #00e600);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.bestseller-card.personal .bestseller-overlay {
    background: linear-gradient(135deg, var(--text-warning), #ffb74d);
}

.bestseller-card.key .bestseller-overlay {
    background: linear-gradient(135deg, var(--text-key), #BA68C8);
}

.bestseller-card:hover .bestseller-overlay {
    opacity: 0.95;
    transform: scale(1);
}

.bestseller-action {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.bestseller-card:hover .bestseller-action {
    transform: translateY(0);
}

.action-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hover Efektleri */
.bestseller-card:hover .bestseller-image {
    transform: scale(1.1);
    border-color: white;
}

.bestseller-card:hover .bestseller-name,
.bestseller-card:hover .bestseller-platform,
.bestseller-card:hover .bestseller-price,
.bestseller-card:hover .bestseller-sales {
    transform: translateY(-5px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .bestsellers-section {
        margin: 40px 0;
    }
    
    .bestsellers-header h2 {
        font-size: 32px;
    }
    
    .bestsellers-header p {
        font-size: 16px;
    }
    
    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .bestseller-card {
        min-height: 260px;
        padding: 18px;
    }
    
    .bestseller-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .no-image-icon {
        font-size: 28px;
    }
    
    .bestseller-name {
        font-size: 16px;
    }
    
    .bestseller-price {
        font-size: 18px;
    }
    
    .action-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .bestsellers-grid {
        padding: 0 10px;
    }
    
    .bestseller-card {
        min-height: 240px;
        padding: 15px;
    }
    
    .bestseller-image {
        width: 60px;
        height: 60px;
    }
    
    .bestseller-name {
        font-size: 15px;
    }
    
    .bestseller-price {
        font-size: 17px;
    }
}

/* Statistics Counter Section */
.stats-counter-section {
    margin: 60px 0;
    padding: 50px 0;
    background: var(--bg-secondary);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-accent), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--text-accent), #00ff00);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.counter-item.animate::before {
    transform: scaleX(1);
}

.counter-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--text-accent);
}

.counter-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.counter-item:nth-child(1) .counter-icon {
    animation-delay: 0s;
}

.counter-item:nth-child(2) .counter-icon {
    animation-delay: 0.5s;
}

.counter-item:nth-child(3) .counter-icon {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.counter-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-accent);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.counter-label {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    opacity: 0.8;
}

/* Counter Animation */
.counter-number.counting {
    animation: pulse 0.1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Gradient Numbers for Special Effect */
.counter-item:nth-child(1) .counter-number {
    background: linear-gradient(45deg, #00ca00, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-item:nth-child(2) .counter-number {
    background: linear-gradient(45deg, #38a169, #68d391);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-item:nth-child(3) .counter-number {
    background: linear-gradient(45deg, #805ad5, #b794f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Light Mode Overrides */
[data-theme="light"] .stats-counter-section {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .counter-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .counter-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-counter-section {
        margin: 40px 0;
        padding: 30px 0;
    }

    .stats-counter-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .counter-item {
        padding: 25px 15px;
    }

    .counter-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .counter-number {
        font-size: 36px;
    }

    .counter-label {
        font-size: 16px;
    }

    .counter-description {
        font-size: 13px;
    }
}

.stat-item,
.stat-card {
    background: var(--bg-secondary);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-primary);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.stat-item:hover,
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-accent);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

.stat-item.personal {
    border-color: var(--border-warning);
}

.stat-item.personal .stat-number {
    color: var(--text-warning);
}

.stat-item.personal:hover {
    box-shadow: var(--shadow-warning);
}

.stat-item.key {
    border-color: var(--border-key);
}

.stat-item.key .stat-number {
    color: var(--text-key);
}

.stat-item.key:hover {
    box-shadow: var(--shadow-key);
}

/* Code Input Section - Updated for Two Column Layout */
.code-section {
    background: var(--bg-secondary);
    border-radius: 15px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    overflow: hidden;
}

.code-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* Sol taraf - Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--text-accent) 0%, #00ff00 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 500%; /* 5 slide için */
    height: 100%;
    animation: slideShow 15s infinite;
}

.slide {
    width: 20%; /* 5 slide için her biri %20 */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
    color: white;
    position: relative;
}

.slide-image {
    width: 423px;
    height: 395px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.slide-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.slide-price {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Slider animasyonu */
@keyframes slideShow {
    0%, 16% { transform: translateX(0); }
    20%, 36% { transform: translateX(-20%); }
    40%, 56% { transform: translateX(-40%); }
    60%, 76% { transform: translateX(-60%); }
    80%, 96% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

/* Slider indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Sağ taraf - Kod Giriş Formu */
.code-input-section {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-card);
}

.code-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-accent);
    font-size: 28px;
}

.code-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.code-input {
    padding: 18px 20px;
    border: 2px solid var(--border-secondary);
    border-radius: 12px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.code-input:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 15px rgba(0, 202, 0, 0.3);
    transform: translateY(-2px);
}

.code-button {
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--text-accent), #00e600);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-button:hover {
    background: linear-gradient(135deg, #00e600, #00cc00);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 202, 0, 0.4);
}

.code-button:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .code-section-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-slider {
        min-height: 300px;
    }
    
    .slide {
        padding: 30px 20px;
    }
    
    .slide-image {
        width: 100px;
        height: 100px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .code-input-section {
        padding: 30px 20px;
    }
    
    .code-section h2 {
        font-size: 24px;
    }
    
    .code-input, .code-button {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* Filters */
.filters-section {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
}

.filters-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    align-items: end;
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-secondary);
    border-radius: 25px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 10px var(--border-primary);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-accent);
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #00e600;
}

.filter-select {
    padding: 15px 20px;
    border: 2px solid var(--border-secondary);
    border-radius: 25px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 16px;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--text-accent);
}

.clear-filters {
    padding: 15px 30px;
    background: #666;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.clear-filters:hover {
    background: #555;
}

/* Categories */
.categories-section {
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.category-card {
    background: var(--bg-input);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.category-card.active {
    border-color: var(--border-secondary);
    background: var(--bg-secondary);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.category-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.category-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Game Selection */
.game-selection {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.game-selection h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 24px;
}

.game-grid-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.game-option {
    background: var(--bg-input);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.game-option:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.game-option.selected {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffed4e;
}

.game-option img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
}

.master-submit {
    background: #ffd700;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.master-submit:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* Games Grid */
.games-section h2 {
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--text-accent);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.game-card.personal {
    border: 2px solid var(--border-warning);
    background: rgba(255, 152, 0, 0.1);
}

.game-card.personal:hover {
    box-shadow: var(--shadow-warning);
}

.game-card.personal::before {
    content: '👤 KİŞİSEL HESAP';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--text-warning);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.game-card.key {
    border: 2px solid var(--border-key);
    background: rgba(156, 39, 176, 0.1);
}

.game-card.key:hover {
    box-shadow: var(--shadow-key);
}

.game-card.key::before {
    content: '🔑 KEY ÜRÜNÜ';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--text-key);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.game-card.personal .category-badge,
.game-card.key .category-badge {
    top: 40px;
}

.game-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 10px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--border-secondary);
}

.game-card.personal .game-image {
    border-color: var(--border-warning);
}

.game-card.key .game-image {
    border-color: var(--border-key);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-image.no-image {
    background: linear-gradient(45deg, var(--text-accent), #00ff00);
    color: white;
    font-size: 40px;
}

.game-card.personal .game-image.no-image {
    background: linear-gradient(45deg, var(--text-warning), #ffb74d);
}

.game-card.key .game-image.no-image {
    background: linear-gradient(45deg, var(--text-key), #BA68C8);
}

.game-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-accent);
}

.game-card.personal .game-name {
    color: var(--text-warning);
}

.game-card.key .game-name {
    color: var(--text-key);
}

.game-platform {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.game-description {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.game-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-success);
}

.game-stock {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--text-success);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.game-card.personal .game-stock {
    background: var(--text-warning);
}

.game-card.key .game-stock {
    background: var(--text-key);
}

/* Messages */
.success-msg {
    background: var(--text-success);
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

.error-msg {
    background: #f44336;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

/* Account Details */
.account-details {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--border-success);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
}

.account-details.personal {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--border-warning);
}

.account-details.personal h3 {
    color: var(--text-warning) !important;
}

.account-details.personal .info-label {
    color: var(--text-warning) !important;
}

.account-details.personal .info-item {
    border-left-color: var(--border-warning) !important;
}

.account-details.key {
    background: rgba(156, 39, 176, 0.1);
    border: 2px solid var(--border-key);
}

.account-details.key h3 {
    color: var(--text-key) !important;
}

.account-details.key .info-label {
    color: var(--text-key) !important;
}

.account-details.key .info-item {
    border-left-color: var(--border-key) !important;
}

.timer {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--text-accent);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.account-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-item {
    background: var(--bg-input);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--border-success);
}

.info-label {
    font-weight: bold;
    color: var(--text-success);
    margin-bottom: 5px;
}

.info-value {
    color: var(--text-primary);
    word-break: break-all;
    font-family: monospace;
    background: var(--bg-tertiary);
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Info Section */
.info-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.info-section h2 {
    color: #2196F3;
    margin-bottom: 20px;
    font-size: 32px;
}

.info-section > p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Guide Links - Resim Desteği Eklenmiş Versiyon */
.guide-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.guide-item {
    background: var(--bg-input);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(33, 150, 243, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
}

/* Guide Logo Container - Sabit boyutlar */
.guide-logo {
    background: var(--bg-card);
    border: transparent;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 150px;
    height: 80px;
    margin: 0 auto 20px auto;
    overflow: hidden;
}

.guide-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: #2196F3;
}

.guide-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Guide Icon - Hem SVG hem resim desteği */
.guide-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* Resim için özel stil */
.guide-icon img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

/* Guide Logo Container - Payment logolarındaki gibi */
.guide-logo {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 80px;
    margin-bottom: 20px;
}

.guide-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: #2196F3;
}

.guide-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Alternatif: Yatay resim layout */
.guide-item.horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.guide-item.horizontal .guide-logo {
    margin-bottom: 0;
    min-width: 120px;
    flex-shrink: 0;
}

.guide-item.horizontal .guide-content {
    flex: 1;
}

.guide-content h3 {
    color: #2196F3;
    margin-bottom: 15px;
    font-size: 20px;
}

.guide-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.guide-button:hover {
    background: #00e600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--border-primary);
}

/* Light Mode için guide logo overrides */
[data-theme="light"] .guide-logo {
    background: rgba(255, 255, 255, 0.9);
    border-color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .guide-logo:hover {
    border-color: #2196F3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .guide-links {
        grid-template-columns: 1fr;
    }
    
    .guide-item.horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-item.horizontal .guide-logo {
        margin-bottom: 20px;
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .guide-logo {
        min-height: 60px;
        padding: 12px;
    }
    
    .guide-logo img {
        max-height: 45px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a, .pagination span {
    padding: 10px 15px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--text-accent);
    color: white;
}

.pagination .current {
    background: var(--text-accent);
    color: white;
    font-weight: bold;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-modal);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, var(--text-accent), #00e600);
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: modalShow 0.3s ease-out;
}

@keyframes modalShow {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

.modal h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.modal p {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: 15px;
    margin: 40px 0;
}

.no-results h3 {
    font-size: 24px;
    color: var(--text-accent);
    margin-bottom: 15px;
}

.no-results p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Footer */
footer {
    background: var(--bg-tertiary);
    margin-top: 50px;
    border-top: 1px solid var(--border-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    align-items: start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links h3 {
    color: var(--text-accent);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    margin-left: -15px;
}

.footer-links a:hover {
    color: var(--text-accent);
    border-left-color: var(--text-accent);
    padding-left: 20px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.payment-methods h3 {
    color: var(--text-accent);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.payment-logos {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: 100%;
}

/* PayTR Logo - Büyük */
.payment-logo:first-child {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 80px;
    width: 100%;
}

.payment-logo:first-child:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--text-accent);
}

.payment-logo:first-child img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Diğer Logolar - Küçük ve Yan Yana */
.other-payment-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.payment-logo:not(:first-child) {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 60px;
}

.payment-logo:not(:first-child):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--text-accent);
}

.payment-logo:not(:first-child) img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* Light Mode Footer Overrides */
[data-theme="light"] .payment-logo {
    background: rgba(255, 255, 255, 0.9);
    border-color: #e2e8f0;
}

[data-theme="light"] .payment-logo:first-child {
    border-color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .payment-logo:hover {
    border-color: var(--text-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid var(--border-primary);
    padding: 20px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Light Mode Footer Overrides */
[data-theme="light"] .footer-links a {
    color: var(--text-secondary);
}

[data-theme="light"] .footer-links a:hover {
    color: var(--text-accent);
}

[data-theme="light"] .payment-logo {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .footer-bottom {
    background: rgba(247, 250, 252, 0.5);
}

/* Light Mode Specific Overrides */
[data-theme="light"] .game-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .game-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

[data-theme="light"] .game-card.personal {
    background: linear-gradient(145deg, #fffaf0 0%, #fef5e7 100%);
    border: 1px solid #fed7aa;
}

[data-theme="light"] .game-card.key {
    background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
    border: 1px solid #d6bcfa;
}

[data-theme="light"] .code-section,
[data-theme="light"] .filters-section {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .category-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .info-value {
    background: rgba(247, 250, 252, 0.8);
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .search-input,
[data-theme="light"] .filter-select,
[data-theme="light"] .code-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    color: var(--text-primary);
}

[data-theme="light"] .search-input:focus,
[data-theme="light"] .filter-select:focus,
[data-theme="light"] .code-input:focus {
    border-color: var(--border-secondary);
    box-shadow: 0 0 0 3px rgba(0, 202, 0, 0.1);
}

[data-theme="light"] .stat-item,
[data-theme="light"] .stat-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .account-details {
    background: linear-gradient(145deg, #f0fff4 0%, #f7fafc 100%);
    border: 1px solid #9ae6b4;
}

[data-theme="light"] .account-details.personal {
    background: linear-gradient(145deg, #fffaf0 0%, #fef5e7 100%);
    border: 1px solid #fed7aa;
}

[data-theme="light"] .account-details.key {
    background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
    border: 1px solid #d6bcfa;
}

[data-theme="light"] .guide-item {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #bee3f8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .no-results {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
}

[data-theme="light"] footer {
    background: linear-gradient(145deg, #f7fafc 0%, #edf2f7 100%);
    border-top: 1px solid #e2e8f0;
}

[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Light Mode için özel gradientler */
[data-theme="light"] .view-all-products-btn {
    background: linear-gradient(135deg, #00ca00 0%, #00b300 100%);
    box-shadow: 0 4px 15px rgba(0, 202, 0, 0.3);
}

[data-theme="light"] .view-all-products-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 202, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .theme-toggle {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-compact {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px 15px;
    }

    .whatsapp-text {
        align-items: center;
    }

    .hero h1,
    .page-title {
        font-size: 36px;
    }

    .view-all-products-btn {
        padding: 20px 35px;
        font-size: 18px;
    }

    .product-stats,
    .game-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .code-form {
        flex-direction: column;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .account-info {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 30% auto;
        width: 90%;
    }

    .game-grid-selection {
        grid-template-columns: 1fr;
    }

    .guide-links {
        grid-template-columns: 1fr;
    }

    .info-section {
        padding: 25px;
        margin: 30px 0;
    }

    .info-section h2 {
        font-size: 28px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .payment-methods {
        align-items: center;
    }

    .payment-logos {
        max-width: 300px;
    }

    /* PayTR mobilde daha küçük */
    .payment-logo:first-child {
        min-height: 60px;
        padding: 15px;
    }

    .payment-logo:first-child img {
        max-height: 45px;
    }

    /* Diğer logolar mobilde 2x2 grid */
    .other-payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .payment-logo:not(:first-child) {
        min-height: 50px;
        padding: 8px;
    }

    .payment-logo:not(:first-child) img {
        max-height: 35px;
    }

    .footer-links a {
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-bottom: 5px;
    }

    .footer-links a:hover {
        padding-left: 0;
        border-left: none;
        border-bottom-color: var(--text-accent);
    }
}