/* ============================================
   CSS RESET & GLOBAL STYLES
   Tüm elementlerin margin/padding'ini sıfırla
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   ROOT VARIABLES - Renk Paleti ve Değişkenler
   Craflord temasına özel renkler
   ============================================ */
:root {
    /* Font Aileleri - Sadece Rubik kullanılıyor */
    --font-primary: 'Rubik', sans-serif;
    --font-secondary: 'Rubik', sans-serif;

    /* Craflord Renk Paleti */
    --craflord-orange: #FF7A00;
    --craflord-yellow: #facc15;
    --craflord-blue: #4f46e5;
    --craflord-green: #00C851;
    --craflord-purple: #6A4C93;
    --craflord-red: #FF4444;
    --craflord-pink: #FF1493;

    /* Arka Plan Renkleri */
    --color-bg-dark: #251520;
    --color-bg-card: #3a2c36;
    --color-bg-light: rgba(255, 255, 255, 0.05);

    /* Text Renkleri */
    --color-text-white: #ffffff;
    --color-text-gray: #d6d6d6;
    --color-text-dark: #2a2a2a;

    /* Border Radius - CraftLord tarzı keskin köşeler */
    --radius-sm: 1px;
    --radius-md: 1px;
    --radius-lg: 1px;
    --radius-xl: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ============================================
   BODY - Ana Sayfa Stili
   Rubik font, background image ve gradient
   ============================================ */
body {
    font-family: var(--font-primary);
    background-color: #171615;
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Hero section için özel background */
.hero {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../images/header-background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* ============================================
   CONTAINER - İçerik Genişlik Sınırı
   ============================================ */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============================================
   HEADER - Üst Navigasyon Barı
   Tamamen transparan, arka plan yok
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1.5rem 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

/* ============================================
   NAVBAR - Navigasyon Yapısı
   Flexbox ile hizalama
   ============================================ */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ============================================
   LOGO TEXT - Sol Üst Text.png Logosu
   Animasyonlu giriş efekti - Biraz küçültüldü
   ============================================ */
.logo-text-container {
    flex-shrink: 0;
}

.logo-text-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    animation: logoSlideIn 0.6s ease-out;
}

.logo-text-img:hover {
    transform: scale(1.05) translateY(-2px);
}

/* Logo giriş animasyonu */
@keyframes logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   NAV MENU - Ana Menü Linkleri
   Ortada hizalanmış text navigasyon
   ============================================ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
}

.nav-item {
    display: flex;
}

/* ============================================
   NAV LINKS - Text Linkler (CraftLord tarzı)
   Kalın font, hover sarı, iconlar ekli
   ============================================ */
.nav-link {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Nav link iconları */
.nav-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Hover efekti - Sarı renk */
.nav-link:hover {
    color: var(--craflord-yellow);
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.1);
}

.gaming-rgb {
    animation: gamingColors 3.5s linear infinite;
    text-shadow: 0px 0px 15px currentColor;
    font-weight: 800;
}

.gaming-rgb-noshadow {
    animation: gamingColors1 3.5s linear infinite;
    font-weight: 800;
}

@keyframes gamingColors {
    0% {
        color: rgb(0, 255, 127);
        text-shadow: rgb(0, 255, 127) 0px 0px 15px;
    }

    14% {
        color: rgb(0, 191, 255);
        text-shadow: rgb(0, 191, 255) 0px 0px 15px;
    }

    28% {
        color: rgb(138, 43, 226);
        text-shadow: rgb(138, 43, 226) 0px 0px 15px;
    }

    42% {
        color: rgb(255, 20, 147);
        text-shadow: rgb(255, 20, 147) 0px 0px 15px;
    }

    56% {
        color: rgb(255, 69, 0);
        text-shadow: rgb(255, 69, 0) 0px 0px 15px;
    }

    70% {
        color: rgb(255, 215, 0);
        text-shadow: rgb(255, 215, 0) 0px 0px 15px;
    }

    84% {
        color: rgb(50, 205, 50);
        text-shadow: rgb(50, 205, 50) 0px 0px 15px;
    }

    100% {
        color: rgb(0, 255, 127);
        text-shadow: rgb(0, 255, 127) 0px 0px 15px;
    }
}

@keyframes gamingColors1 {
    0% {
        color: rgb(0, 255, 127);
    }

    14% {
        color: rgb(0, 191, 255);
    }

    28% {
        color: rgb(138, 43, 226);
    }

    42% {
        color: rgb(255, 20, 147);
    }

    56% {
        color: rgb(255, 69, 0);
    }

    70% {
        color: rgb(255, 215, 0);
    }

    84% {
        color: rgb(50, 205, 50);
    }

    100% {
        color: rgb(0, 255, 127);
    }
}


/* ============================================
   NAV RIGHT - Sağ Taraf Kontrolleri
   Discord, IP kutusu, Hesap butonu
   ============================================ */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* ============================================
   DISCORD BUTTON - Discord İkonu
   CraftLord tarzı 3D gölge efekti (mavi)
   Bootstrap Icons kullanılıyor
   ============================================ */
.discord-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-blue);
    border: none;
    border-radius: 1px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba;
}

.discord-btn:hover {
    background: var(--craflord-blue);
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba,
        0 0 20px rgba(79, 70, 229, 0.4);
}

.discord-btn:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #7b75ec,
        0 -2px 0 #7b75ec,
        2px 0 0 #3e37ba,
        0 2px 0 #3e37ba;
}

/* ============================================
   ACCOUNT BUTTON - Hesap/Giriş Butonu
   CraftLord tarzı 3D gölge efekti (mavi - Discord renkleri)
   Bootstrap Icons kullanılıyor
   ============================================ */
.account-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-blue);
    color: #ffffff;
    border: none;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba;
}

.account-btn:hover {
    background: var(--craflord-blue);
    color: #ffffff;
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba,
        0 0 20px rgba(79, 70, 229, 0.4);
}

.account-btn:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #7b75ec,
        0 -2px 0 #7b75ec,
        2px 0 0 #3e37ba,
        0 2px 0 #3e37ba;
}

/* ============================================
   IP BOX - IP Adresi ve Oyuncu Sayısı
   CraftLord tarzı 3D gölge efekti (sarı)
   ============================================ */
.ip-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--craflord-yellow);
    padding: 3px 10px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
}

.ip-box:hover {
    background: var(--craflord-yellow);
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.ip-box:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.ip-address {
    color: #92400e;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

/* Player count - Box dışında, açık sarı renk */
.player-count {
    color: #d97706;
    font-size: 0.9rem;
    font-weight: 900;
    margin-left: 0;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

/* ============================================
   HERO SECTION - Ana İçerik Bölümü
   Logo ve butonların olduğu merkez alan
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HERO LOGO - Ortadaki Ana Logo (logo.png)
   Büyük, animasyonlu logo görseli
   ============================================ */
.hero-logo {
    margin-bottom: 60px;
    animation: logoFadeIn 1s ease-out;
}

.main-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

/* Logo yükleniş animasyonu */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Logo yukarı-aşağı float animasyonu */
@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ============================================
   HERO BUTTONS - Ana Sayfa Butonları
   CraftLord tarzı 3D gölge efekti
   ============================================ */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 28px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.hero-btn i {
    font-size: 1.2rem;
}

/* JOIN OUR DISCORD Butonu - Mavi (CraftLord tarzı) */
.btn-discord {
    background: var(--craflord-blue);
    color: #ffffff;
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba;
}

.btn-discord:hover {
    background: var(--craflord-blue);
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba,
        0 0 20px rgba(79, 70, 229, 0.4);
}

.btn-discord:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #7b75ec,
        0 -2px 0 #7b75ec,
        2px 0 0 #3e37ba,
        0 2px 0 #3e37ba;
}

/* PLAY Butonu - Sarı (CraftLord tarzı) */
.btn-play-hero {
    background: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
}

.btn-play-hero:hover {
    background: var(--craflord-yellow);
    color: #92400e;
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.btn-play-hero:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.btn-play-hero span {
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.content-section {
    padding: 60px 0 60px 0;
    position: relative;
    background: #171615;
}

/* ============================================
   VIEW BUTTON TOOLTIP - Görüntüle Yazısı
   ============================================ */
.view-btn {
    position: relative;
}

.view-btn::after {
    content: 'Görüntüle';
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: #1d1b1a;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.view-btn::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1d1b1a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.view-btn:hover::after,
.view-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.view-btn:hover::before {
    transform: translateX(-50%);
}

/* ============================================
   CART BUTTON - Sepet Butonu
   ============================================ */
.cart-btn {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-green);
    border: none;
    border-radius: 1px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E;
}

.cart-btn:hover {
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E,
        0 0 20px rgba(0, 200, 81, 0.4);
}

.cart-count {
    position: absolute;
    top: -8x;
    margin-bottom: 24px;
    right: -8px;
    background: #dc2626;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.65rem;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid #171615;
    padding: 0;
    line-height: 1;
    text-align: center;
}

/* ============================================
   USER PROFILE - Kullanıcı Profil Alanı
   ============================================ */
.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px 4px 4px;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 2px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    box-shadow:
        -2px 0 0 #4a4a4a,
        0 -2px 0 #6a6a6a,
        2px 0 0 #2a2a2a,
        0 2px 0 #2a2a2a;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.user-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-rank {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-dropdown-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.user-profile:hover .user-dropdown-arrow {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   USER DROPDOWN MENU - Karanlık Tema Grid
   ============================================ */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: #302d2c;
    border-radius: 1px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow:
        0 4px 0 #646160,
        0 8px 24px rgba(0, 0, 0, 0.4);
}


.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #302d2c;
}

/* Dropdown Grid Layout */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.dropdown-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s ease;
    background: rgba(0, 0, 0, 0.3);
}

.dropdown-grid-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.dropdown-grid-item i {
    font-size: 1.2rem;
    color: #9ca3af;
}

.dropdown-grid-item span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    color: #d1d5db;
    text-align: center;
}

.dropdown-grid-item:hover i {
    color: #ffffff;
}

.dropdown-grid-item:hover span {
    color: #ffffff;
}

/* Bakiye özel stil */
.dropdown-grid-item.balance {
    background: rgba(250, 204, 21, 0.15);
}

.dropdown-grid-item.balance:hover {
    background: rgba(250, 204, 21, 0.25);
}

.dropdown-grid-item.balance i {
    color: var(--craflord-yellow);
}

.dropdown-grid-item.balance span {
    color: var(--craflord-yellow);
    font-weight: 800;
}

/* Admin panel özel stil */
.dropdown-grid-item.admin {
    background: rgba(236, 72, 153, 0.15);
}

.dropdown-grid-item.admin:hover {
    background: rgba(236, 72, 153, 0.25);
}

.dropdown-grid-item.admin i,
.dropdown-grid-item.admin span {
    color: #f472b6;
}

/* Divider */
.user-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

/* Çıkış Yap butonu */
.user-dropdown .user-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.15s ease;
    background: rgba(0, 0, 0, 0.3);
}

.user-dropdown .user-dropdown-item.logout {
    color: #9ca3af;
}

.user-dropdown .user-dropdown-item.logout:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
}

.user-dropdown .user-dropdown-item i {
    font-size: 0.9rem;
}

.user-dropdown .user-dropdown-item span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ============================================
   LOGGED IN WIDGET - Login Widget ile Aynı Boy
   ============================================ */
.logged-in-widget-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logged-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 4px;
}

.logged-user-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.logged-user-avatar img {
    width: 120%;
    height: auto;
    object-fit: contain;
    object-position: top;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

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

.logged-user-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.logged-user-rank {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
}

.logged-user-balance {
    color: var(--craflord-green);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.logged-user-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.logged-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    margin-top: 12px;
    background: var(--craflord-yellow);
    color: #92400e;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.logged-action-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
        0 0 15px rgba(250, 204, 21, 0.3);
}

/* Destek Taleplerim - Tam genişlik */
.logged-action-btn.full-width {
    grid-column: span 2;
    background: var(--craflord-blue);
    color: #ffffff;
    box-shadow:
        -3px 0 0 #7b75ec,
        0 -3px 0 #7b75ec,
        3px 0 0 #3e37ba,
        0 3px 0 #3e37ba;
}

.logged-action-btn.full-width:hover {
    box-shadow:
        -3px 0 0 #7b75ec,
        0 -3px 0 #7b75ec,
        3px 0 0 #3e37ba,
        0 3px 0 #3e37ba,
        0 0 15px rgba(79, 70, 229, 0.4);
}

/* ============================================
   PROMO WIDGET - İndirim Banner
   ============================================ */
.promo-widget {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7);
    border-radius: 1px;
    padding: 17px 26px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.promo-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
}

.promo-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-right: 12px;
    width: 250px;
}

.promo-btn-badge,
.promo-btn {
    width: 100%;
    box-sizing: border-box;
}

.promo-btn-badge {
    background: #dc2626;
    color: #ffffff;
    padding: 4px 40px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    border-radius: 1px;
    box-shadow:
        -3px 0 0 #f87171,
        0 -3px 0 #f87171,
        3px 0 0 #991b1b;
    margin-bottom: 0;
    margin-right: -30px;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.promo-btn-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shimmer 2s infinite;
}


.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    padding: 8px 20px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    margin-right: -30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.promo-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
        0 0 15px rgba(250, 204, 21, 0.4);
}

.promo-btn i {
    font-size: 0.8rem;
}

/* ============================================
   CONTENT SECTION - Haberler ve Sidebar
   ============================================ */
.content-section {
    padding: 60px 0 80px 0;
    position: relative;
    background: #171615;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* ============================================
   NEWS SECTION - Haberler Bölümü
   ============================================ */
.news-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    grid-column: 1;
}

.section-header i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    font-size: 1.3rem;
    border-radius: 2px;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.section-header h2 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   NEWS GRID - Haber Kartları Grid - 3 Kart Yan Yana
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   NEWS CARD - Haber Kartı
   CraftLord tarzı kart tasarımı
   ============================================ */
.news-card {
    background: #302d2c;
    border-radius: 1px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: none;
    box-shadow:
        0 4px 0 #646160;
}

.news-card:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
}

.news-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (1920x1080) */
    overflow: hidden;
}

.news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Görüntülenme sayısı - Sol üst (yeşil box) */
.news-views {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--craflord-green);
    color: #ffffff;
    padding: 3px 7px;
    border-radius: 1px;
    font-weight: 700;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow:
        -3px 0 0 #33D470,
        0 -3px 0 #33D470,
        3px 0 0 #007A2E,
        0 3px 0 #007A2E;
}

.news-views i {
    font-size: 0.75rem;
}

/* Tarih - Sağ üst (kırmızı box) */
.news-date {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc2626;
    color: #ffffff;
    padding: 3px 7px;
    border-radius: 1px;
    font-weight: 700;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow:
        -3px 0 0 #f87171,
        0 -3px 0 #f87171,
        3px 0 0 #991b1b,
        0 3px 0 #991b1b;
}

.news-date i {
    font-size: 0.75rem;
}

.news-content {
    padding: 14px;
    padding-top: 1px;
}

.news-category {
    display: inline-block;
    color: var(--craflord-yellow);
    font-weight: 800;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.news-title {
    font-family: var(--font-primary);
    -webkit-line-clamp: 2;    /* Maksimum 2 satır */
  	min-height: 3em;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: -8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-excerpt {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    padding: 8px 12px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.news-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.news-btn i {
    font-size: 0.8rem;
}

/* ============================================
   PAGINATION - Sayfalama
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
}

.pagination-btn {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background: var(--craflord-yellow);
    border: none;
    border-radius: 1px;
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.pagination-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
        0 0 15px rgba(250, 204, 21, 0.3);
}

.pagination-btn:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.page-info {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    padding: 0 8px;
}

.pagination-btn.active {
    display: none;
}


/* ============================================
   SIDEBAR - Sağ Yan Panel
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: static;
    margin-bottom: 62px;
}

.sidebar-widget {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    border: none;
    box-shadow:
        0 4px 0 #646160;
}

/* ============================================
   QUICK ACCESS CARDS - Hızlı Erişim Kartları
   ============================================ */
.quick-access-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.quick-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.quick-card:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
}

.quick-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
}

.quick-card-label {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-card-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.3;
}

.quick-card-icon {
    font-size: 2.5rem;
    opacity: 0.9;
    z-index: 1;
}

.quick-card-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #b91c1c,
        0 4px 0 #b91c1c;
}

.quick-card-red .quick-card-label {
    color: #fecaca;
}

.quick-card-red:hover {
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #b91c1c,
        0 4px 0 #b91c1c,
        0 0 25px rgba(239, 68, 68, 0.5);
}

.quick-card-yellow:hover {
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 25px rgba(250, 204, 21, 0.5);
}

/* Mavi Kart - Register Buton Rengi */
.quick-card-blue {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.quick-card-blue .quick-card-label {
    color: #bae6fd;
}

.quick-card-blue:hover {
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d,
        0 0 25px rgba(2, 132, 199, 0.5);
}

/* Yeşil Kart - Görüntülenme Sayısı Rengi */
.quick-card-green {
    background: linear-gradient(135deg, #22c55e 0%, #00C851 100%);
    color: #ffffff;
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E;
}

.quick-card-green .quick-card-label {
    color: #bbf7d0;
}

.quick-card-green:hover {
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E,
        0 0 25px rgba(0, 200, 81, 0.5);
}

/* ============================================
   FOOTER - Alt Bölüm (Turuncu CraftLord Stili)
   ============================================ */
.footer {
    background: #1d1b1a;
    padding: 40px 0;
    margin-top: 0px;
}

.footer-wrapper {
    background: var(--craflord-yellow);
    border-radius: 1px;
    overflow: hidden;
    box-shadow:
        0 0 0 #fcd950,
        0 0 0 #fcd950,
        8px 0 0 #995617,
        0 8px 0 #995617;
    position: relative;
}

/* Footer Üst Kısım - Koyu Turuncu */
.footer-top {
    background: #eaa21a;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Footer Logo - Alt taraftan başlayıp yukarı taşan */
.footer-logo {
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 100%;
    width: 140px;
    flex-shrink: 0;
}

.footer-logo img {
    width: 140px;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(170px);
}

/* Footer Center - IP ve Oyuncu */
.footer-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-right: auto;
}

.footer-ip-box {
    background: #da8a13;
    color: #7c3812;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-left: 30px;
}

.footer-players-box {
    background: #da8a13;
    color: #7c3812;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
}

/* Footer Sosyal Medya */
.footer-social {
    display: flex;
    gap: 1rem;
    width: 140px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.footer-social-link {
    color: #7c3812;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    opacity: 0.7;
}

/* Footer Alt Kısım - Açık Sarı */
.footer-bottom {
    padding: 1.2rem 2rem;
    background: var(--craflord-yellow);
}

.footer-bottom-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-info {
    text-align: left;
    margin-left: 170px;
}

.footer-info p {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 2px 0;
    line-height: 1.3;
}

.footer-info a {
    color: #92400e;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.footer-info a:hover {
    opacity: 0.7;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    max-width: 300px;
    /* İstediğin genişlik */
}

.footer-copyright {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.65rem;
    margin: 8px 0 0 0;
    opacity: 1;
    text-align: center;
}

/* Footer Section Title - Ortak Başlık */
.footer-section-title {
    color: #7c3812;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
    white-space: nowrap;

}

/* Footer Quick Access - Hızlı Erişim */
.footer-quick-access {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-quick-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-quick-list a {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.7rem;
    text-decoration: none;
    padding: 2px 8px;
    background: rgba(146, 64, 14, 0.1);
    border-radius: 3px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-quick-list a:hover {
    background: rgba(146, 64, 14, 0.2);
}

/* Footer Links - Bağlantılar */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-links-list a {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.7rem;
    text-decoration: none;
    padding: 2px 8px;
    background: rgba(146, 64, 14, 0.1);
    border-radius: 3px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-links-list a:hover {
    background: rgba(146, 64, 14, 0.2);
}

/* Footer Brand - Sağdaki Logo */
.footer-brand {
    flex-shrink: 0;
    align-self: center;
}

.footer-brand img {
    height: 32px;
    width: auto;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.footer-brand img:hover {
    opacity: 0.7;
}

/* ============================================
   TOP DONATOR WIDGET - En Çok Kredi Yükleyen
   ============================================ */
.top-donator-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.top-donator-widget .widget-title i {
    color: var(--craflord-yellow);
    font-size: 1.1rem;
}

.donator-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.donator-card:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(4px);
}


.donator-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    /* Üstten hizalama */
    justify-content: center;
}

.donator-avatar img {
    width: 120%;
    height: auto;
    /* Orantıyı korur */
    object-fit: contain;
    object-position: top;
    /* Görseli yukarıdan başlatır */
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.donator-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.donator-name {
    color: white;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.donator-amount {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.3rem;
    text-align: center;
}

.top-donator-widget {
    position: relative;
}

.widget-decoration {
    position: absolute;

    /* KONUM - bu değerleri değiştir */
    top: 48px;
    /* yukarı-aşağı: azalt = yukarı, artır = aşağı */
    right: 3px;
    /* sağa-sola: azalt = sağa, artır = sola */

    /* BOYUT - bu değeri değiştir */
    width: 80px;
    /* genişlik */
    height: auto;
    /* orantıyı korur */

    /* KALİTE - piksel art için */
    image-rendering: pixelated;
    image-rendering: crisp-edges;

    /* Opsiyonel */
    pointer-events: none;
    /* tıklamayı engelleme */
    z-index: 1;
}

/* ============================================
   RECENT DONATORS WIDGET - Son Kredi Yükleyenler
   ============================================ */
.recent-donators-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.recent-donators-widget .widget-title i {
    color: var(--craflord-yellow);
    font-size: 1.1rem;
}

.recent-donators-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-donator-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.recent-donator-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(4px);
}

.recent-donator-avatar {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    overflow: hidden;
    border-radius: 2px;
}

.recent-donator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.recent-donator-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.recent-donator-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.recent-donator-amount {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.8rem;
}

/* ============================================
   LOGIN WIDGET - Giriş Yap Bölümü
   ============================================ */


.login-widget .widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.login-widget .widget-title i {
    color: var(--craflord-yellow);
    font-size: 1.1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.login-input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    background: rgba(0, 0, 0, 0.6);
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-actions {
    display: flex;
    gap: 8px;
}

.login-btn {
    flex: 1;
    padding: 7px;
    margin-right: 5px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.login-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
        0 0 15px rgba(250, 204, 21, 0.3);
}

.register-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #41a3d5,
        0 -3px 0 #41a3d5,
        3px 0 0 #025e8d,
        0 3px 0 #025e8d;
}

.register-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.input-with-avatar {
    position: relative;
}

.login-avatar {
    position: absolute;
    top: -80px;
    right: -20px;
    width: 90px;
    height: 90px;
    z-index: 10;
}

.login-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   WIDGET HEADER & TITLE
   ============================================ */
.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.widget-header h3 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-gray);
    padding: 6px 12px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.widget-tab.active {
    background: var(--craflord-orange);
    border-color: var(--craflord-orange);
    color: #ffffff;
}

.widget-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}


/* ============================================
   COPY NOTIFICATION - Kopyalama Bildirimi
   CraftLord tarzı yeşil 3D gölge efekti
   ============================================ */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--craflord-green);
    color: rgb(255, 255, 255);
    padding: 1rem 2rem;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-notification.show {
    transform: translateX(0);
}

.copy-notification i {
    font-size: 1.2rem;
}

/* ============================================
   UTILITY CLASSES - Yardımcı Sınıflar
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}




/* ============================================
   LOGIN PAGE - Giriş Sayfası Stilleri
   CraftLord temasına uygun tasarım
   ============================================ */

.login-page {
    min-height: 100vh;
    background: #171615;
    overflow: hidden;
}

.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* ============================================
   LOGIN WALLPAPER - Sol Taraf Görsel
   ============================================ */
.login-wallpaper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.login-wallpaper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wallpaper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wallpaper-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.wallpaper-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
    margin-bottom: 24px;
}

.wallpaper-tagline {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* ============================================
   LOGIN FORM CONTAINER - Sağ Taraf Form
   ============================================ */
.login-form-container {
    width: 520px;
    min-width: 520px;
    background: #1d1b1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    position: relative;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BACK TO HOME - Ana Sayfaya Dön Butonu
   ============================================ */
.back-to-home {
    position: absolute;
    top: 30px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.back-to-home:hover {
    color: var(--craflord-yellow);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-4px);
}

.back-to-home i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.back-to-home:hover i {
    transform: translateX(-4px);
}

/* ============================================
   LOGIN BOX - Form Kutusu
   ============================================ */
.login-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.login-header p {
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
}


/* ============================================
   LOGIN FORM - Form Elemanları
   ============================================ */
.login-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--craflord-yellow);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: #302d2c;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow:
        0 4px 0 #646160;
}

.form-group input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    background: #3a3736;
    box-shadow:
        0 4px 0 #646160,
        0 0 20px rgba(250, 204, 21, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.toggle-password:hover {
    color: var(--craflord-yellow);
}

/* ============================================
   FORM OPTIONS - Beni Hatırla & Şifremi Unuttum
   ============================================ */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

/* Custom Checkbox */
.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #302d2c;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 0 #646160;
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #92400e;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.remember-me input:checked~.checkmark {
    background: var(--craflord-yellow);
    border-color: var(--craflord-yellow);
}

.remember-me input:checked~.checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.remember-me:hover .checkmark {
    border-color: var(--craflord-yellow);
}

.remember-text {
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.forgot-password {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.forgot-password:hover {
    color: #fcd950;
    text-decoration: underline;
}

/* ============================================
   LOGIN SUBMIT BUTTON - Giriş Yap Butonu
   ============================================ */
.login-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.login-submit-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-3px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 25px rgba(250, 204, 21, 0.4);
}

.login-submit-btn:active {
    filter: brightness(0.95);
    transform: translateY(0);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.login-submit-btn i {
    font-size: 1rem;
}

/* ============================================
   LOGIN DIVIDER - Ayırıcı
   ============================================ */
.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider span {
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   REGISTER LINK BUTTON - Kayıt Ol Butonu
   ============================================ */
.register-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.register-link-btn:hover {
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-3px);
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d,
        0 0 25px rgba(2, 132, 199, 0.4);
}

.register-link-btn:active {
    filter: brightness(0.95);
    transform: translateY(0);
}

.register-link-btn i {
    font-size: 0.95rem;
}

/* ============================================
   DISCORD LOGIN BUTTON - Discord ile Giriş
   ============================================ */
.discord-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background: var(--craflord-blue);
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba;
}

.discord-login-btn:hover {
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-3px);
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba,
        0 0 25px rgba(79, 70, 229, 0.4);
}

.discord-login-btn:active {
    filter: brightness(0.95);
    transform: translateY(0);
}

.discord-login-btn i {
    font-size: 1.1rem;
}

/* ============================================
   LOGIN FOOTER - Alt Bilgi
   ============================================ */
.login-footer {
    position: absolute;
    bottom: 30px;
    left: 50px;
    right: 50px;
    text-align: center;
}

.login-footer p {
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.75rem;
}

/* ============================================
   PROFILE PAGE - Profil Sayfası Stilleri
   CraftLord temasına uygun tasarım
   ============================================ */

.profile-page {
    background: #171615;
    min-height: 100vh;
}

.profile-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* ============================================
   PROFILE SECTION - Ana İçerik Bölümü
   ============================================ */
.profile-section {
    padding: 40px 0 80px 0;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

/* ============================================
   PROFILE SIDEBAR - Sol Menü
   ============================================ */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}

/* Kullanıcı Kartı */
.profile-user-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 0 #646160;
}

.profile-avatar {
    width: 100px;
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.profile-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.profile-user-info {
    text-align: center;
}

.profile-username {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.profile-rank {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-rank.admin-rank {
    background: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.profile-rank.player-rank {
    background: #4f46e5;
    color: #ffffff;
}

/* Menü Bölümü */
.profile-menu-section {
    background: #302d2c;
    border-radius: 1px;
    padding: 20px;
    box-shadow: 0 4px 0 #646160;
}

.menu-section-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 4px;
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.profile-menu-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.profile-menu-item:hover i {
    color: var(--craflord-yellow);
}

.profile-menu-item.active {
    background: rgba(250, 204, 21, 0.1);
    color: var(--craflord-yellow);
}

.profile-menu-item.active i {
    color: var(--craflord-yellow);
}

.profile-menu-item.discord-connect {
    color: #7289da;
}

.profile-menu-item.discord-connect i {
    color: #7289da;
}

.profile-menu-item.discord-connect:hover {
    background: rgba(114, 137, 218, 0.1);
    color: #7289da;
}

/* ============================================
   PROFILE CONTENT - Sağ İçerik
   ============================================ */
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Profile Card - Tema stilinde */
.profile-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    box-shadow: 0 4px 0 #646160;
}

.profile-card-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
}

/* ============================================
   DETAILS GRID - Detaylar Bölümü (Yan Yana)
   ============================================ */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.details-column.details-right {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.detail-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.balance-value {
    color: var(--craflord-yellow);
    font-weight: 700;
    font-size: 1rem;
}

.add-balance-btn {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-green);
    color: #ffffff;
    border: none;
    padding: 0;
    border-radius: 50%;
    line-height: 0;
    /* inline ikon boşluğunu yok eder */
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.add-balance-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(0, 200, 81, 0.5);
}

/* Role Badge - Yetki Sarı Box */
.role-badge {
    display: inline-block;
    padding: 3px 12px;
    background: var(--craflord-yellow);
    color: #92400e;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.3);
}

.email-value {
    color: #9ca3af;
}

.status-disabled {
    color: #9ca3af;
}

.status-enabled {
    color: var(--craflord-green);
}

/* ============================================
   EMPTY STATE - Boş Durum
   ============================================ */
.empty-state {
    padding: 40px 20px;
    text-align: center;
}

.empty-text {
    color: #ef4444;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   PROFILE TABLE - Tablolar (Tema Stilinde - SARI)
   ============================================ */
.profile-table-wrapper {
    overflow-x: auto;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table thead th {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 14px 16px;
    background: rgba(250, 204, 21, 0.08);
    border-bottom: 2px solid rgba(250, 204, 21, 0.2);
}

.profile-table tbody td {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.profile-table tbody tr:last-child td {
    border-bottom: none;
}

.profile-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Table Cell Styles */
.id-cell {
    color: var(--craflord-yellow);
    font-weight: 600;
}

.title-cell {
    color: #ffffff;
    font-weight: 600;
}

.category-cell {
    color: #9ca3af;
}

.date-cell {
    color: #9ca3af;
}

/* Amount Styles */
.amount-negative {
    color: #ef4444;
    font-weight: 600;
}

.amount-positive {
    color: #d1d5db;
    font-weight: 600;
}

/* Type Icons - SARI TONLARI */
.type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.type-icon.expense {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.type-icon.income {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
}

.status-badge.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.status-badge.failed {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-badge.open {
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
}

.status-badge.closed {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
}

/* View Button - SARI TONLARI */
.view-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.15);
    color: var(--craflord-yellow);
    border: none;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn:hover {
    background: var(--craflord-yellow);
    color: #92400e;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

/* ============================================
   CREDITS PAGE - Kredi Yükle Sayfası Stilleri
   CraftLord temasına uygun tasarım
   ============================================ */

.credits-page {
    background: #171615;
    min-height: 100vh;
}

.credits-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* Credits Hero Background */
.credits-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(23, 22, 21, 0.85) 0%, rgba(23, 22, 21, 0.7) 50%, rgba(23, 22, 21, 0.85) 100%),
        url('../images/credits-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.credits-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(23, 22, 21, 0.8) 100%);
}

/* ============================================
   CREDITS SECTION - Ana İçerik
   ============================================ */
.credits-section {
    padding: 40px 0 80px 0;
    position: relative;
    z-index: 1;
}

.credits-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    align-items: start;
}

/* ============================================
   CREDITS CARD - Kart Stili
   ============================================ */
.credits-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 28px;
    box-shadow: 0 4px 0 #646160;
}

.credits-card-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credits-card-title i {
    color: var(--craflord-yellow);
    font-size: 1.1rem;
}

.credits-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.credits-card-header .credits-card-title {
    margin-bottom: 0;
}

.see-all-link {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.see-all-link:hover {
    opacity: 0.8;
}

/* ============================================
   CREDITS FORM - Form Stilleri (KOYU TEMA)
   ============================================ */
.credits-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credits-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credits-form .form-group label {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Miktar Input - KOYU TEMA */
.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #0d0c0c;
    -moz-appearance: textfield;
    /* Firefox için */
}

/* Chrome, Safari, Edge, Opera için number input okları gizle */
.amount-input-wrapper input::-webkit-outer-spin-button,
.amount-input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    box-shadow: 0 4px 0 #0d0c0c, 0 0 0 3px rgba(250, 204, 21, 0.15);
}

.amount-input-wrapper input::placeholder {
    color: #6b6866;
    font-weight: 500;
}

.currency-label {
    position: absolute;
    right: 20px;
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
}

.amount-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
}

.amount-info i {
    font-size: 0.9rem;
}

/* ============================================
   QUICK AMOUNTS - Hızlı Miktar Seçimi
   ============================================ */
.quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-amount-btn {
    padding: 10px 20px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 0 #0d0c0c;
}

.quick-amount-btn:hover {
    background: #252322;
    border-color: var(--craflord-yellow);
    color: var(--craflord-yellow);
}

.quick-amount-btn.active {
    background: var(--craflord-yellow);
    border-color: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================
   PAYMENT METHODS - Ödeme Yöntemleri (KOYU TEMA)
   ============================================ */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-label {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 1px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #0d0c0c;
}

.payment-method:hover .payment-method-content {
    border-color: #5a5856;
    background: #252322;
}

.payment-method input:checked+.payment-method-content {
    border-color: var(--craflord-yellow);
    background: rgba(250, 204, 21, 0.08);
    box-shadow: 0 4px 0 #0d0c0c, 0 0 0 2px rgba(250, 204, 21, 0.2);
}

.payment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.payment-icon.paytr {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
}

.payment-icon.paytr-eft {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

.payment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
}

.payment-desc {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
}

.payment-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4a4644;
    border-radius: 50%;
    color: transparent;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.payment-check i {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method input:checked+.payment-method-content .payment-check {
    background: var(--craflord-green);
    color: #ffffff;
}

/* ============================================
   TERMS CHECKBOX - Şartlar Onay Kutusu
   ============================================ */
.terms-checkbox {
    margin-top: 8px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkmark {
    width: 22px;
    height: 22px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.custom-checkbox .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #92400e;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.custom-checkbox input:checked+.checkmark {
    background: var(--craflord-yellow);
    border-color: var(--craflord-yellow);
}

.custom-checkbox input:checked+.checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.terms-text {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.terms-link {
    color: var(--craflord-yellow);
    font-weight: 700;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* ============================================
   CREDITS SUBMIT BUTTON - Kredi Yükle Butonu
   ============================================ */
.credits-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--craflord-green);
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E;
    white-space: nowrap;
    flex-shrink: 0;
}

.credits-submit-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-3px);
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E,
        0 0 25px rgba(0, 200, 81, 0.4);
}

.credits-submit-btn:active {
    filter: brightness(0.95);
    transform: translateY(0);
}

.credits-submit-btn i {
    font-size: 1rem;
}

/* ============================================
   PAYMENT ERROR WARNING - Ödeme Hata Uyarısı
   ============================================ */
.payment-error-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid #dc2626;
    border-radius: 1px;
    margin-top: 8px;
}

.payment-error-warning>i {
    color: #dc2626;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.warning-content strong {
    color: #dc2626;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.95rem;
}

.warning-content span {
    color: #fca5a5;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
}

.warning-content a {
    color: #fca5a5;
    font-weight: 700;
    text-decoration: underline;
}

.warning-content a:hover {
    color: #ffffff;
}

/* ============================================
   SECURITY BANNER - Güvence Bandı (nu Stili)
   ============================================ */
.security-banner-inline {
    flex: 1;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7);
    border-radius: 1px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.security-banner-inline .security-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-banner-inline .security-content {
    flex: 1;
}

.security-banner-inline .security-content h4 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.security-banner-inline .security-content p {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* ============================================
   CREDITS SIDEBAR - Sağ Panel
   ============================================ */
.credits-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
    padding: 4px;
    /* Shadow taşmasını önlemek için padding eklendi */
}

/* Credits History */
.credits-history {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credits-history-empty {
    padding: 30px 20px;
    background: #dc2626;
    border-radius: 4px;
    text-align: center;
}

.credits-history-empty span {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.credits-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.credits-history-item:hover {
    background: rgba(0, 0, 0, 0.3);
}

.history-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

.history-icon.income {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.history-icon.expense {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-amount {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.history-amount.income {
    color: #22c55e;
}

.history-amount.expense {
    color: #ef4444;
}

.history-date {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.75rem;
}

/* Balance Card */
.balance-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--craflord-yellow) 0%, #f59e0b 100%);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
}

.balance-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #92400e;
    font-size: 1.4rem;
}

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.balance-label {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.8;
}

.balance-amount {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4);
}

.submit-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

/* Info Card */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.3);
    box-shadow: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0ea5e9;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #0ea5e9;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.info-content p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5;
}


/* ============================================
   PROFILE FORM STYLES - Form Stilleri
   ============================================ */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    min-width: 140px;
}

.form-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    background: rgba(250, 204, 21, 0.05);
}

.form-input::placeholder {
    color: #6b7280;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .form-input {
    padding-right: 50px;
}

.input-icon-btn {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.input-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.4);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
}

/* ============================================
   BUTTONS - Buton Stilleri
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 4px 0 #995617,
        0 8px 20px rgba(250, 204, 21, 0.3);
}

/* ============================================
   ALERT MESSAGES - Uyarı Mesajları
   ============================================ */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-bottom: 2rem;
}

.alert-success i {
    font-size: 1.1rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* ============================================
   TWO FACTOR AUTH - İki Adımlı Doğrulama
   ============================================ */
.two-factor-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.two-factor-info {
    flex: 1;
}

.two-factor-info .profile-card-title {
    margin-bottom: 8px;
}

.two-factor-desc {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   PROFILE CARD HEADER - Başlık + Buton
   ============================================ */
.profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.profile-card-header .profile-card-title {
    margin-bottom: 0;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.header-action-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 4px 0 #995617,
        0 8px 15px rgba(250, 204, 21, 0.3);
}

/* ============================================
   STORE PAGE
   ============================================ */
.store-page {
    background: #171615;
    min-height: 100vh;
}

.store-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* Footer gradient kaldır */
.store-page .footer {
    background: #1d1b1a;
}

.store-page .footer::before {
    display: none;
}

/* ============================================
   STORE BANNER
   ============================================ */
.store-banner {
    background: linear-gradient(135deg, #1a1918 0%, #252322 50%, #1a1918 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.store-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(250, 204, 21, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.store-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.store-banner-text {
    max-width: 500px;
}

.store-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--craflord-yellow);
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.store-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 5px 0 #995617,
        0 10px 20px rgba(250, 204, 21, 0.3);
}

.store-banner-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.store-banner-desc {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
}

.store-banner-image img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ============================================
   BREADCRUMB
   ============================================ */
.store-breadcrumb {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: var(--craflord-yellow);
}

.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-separator {
    color: #4b5563;
    font-size: 0.7rem;
}

/* ============================================
   STORE SECTION
   ============================================ */
.store-section {
    padding: 50px 0 80px 0;
}

.store-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.store-section-header i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    font-size: 1.2rem;
    border-radius: 2px;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.store-section-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* ============================================
   SERVER / CATEGORY GRID
   ============================================ */
.server-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.server-card,
.category-card {
    display: block;
    background: #302d2c;
    border-radius: 1px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #646160;
}

.server-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 #646160, 0 12px 30px rgba(0, 0, 0, 0.3);
}

.server-card-image,
.category-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.server-card-image img,
.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.server-card:hover .server-card-image img,
.category-card:hover .category-card-image img {
    transform: scale(1.05);
}

.server-card-footer,
.category-card-footer {
    padding: 16px;
    background: #252322;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.server-card-btn,
.category-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--craflord-yellow);
    border-radius: 2px;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.server-card:hover .server-card-btn,
.category-card:hover .category-card-btn {
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 5px 0 #995617,
        0 8px 20px rgba(250, 204, 21, 0.25);
}

.server-card-name,
.category-card-name {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.server-card-arrow,
.category-card-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(146, 64, 14, 0.2);
    color: #92400e;
    border-radius: 50%;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.server-card:hover .server-card-arrow,
.category-card:hover .category-card-arrow {
    transform: translateX(3px);
}

/* ============================================
   STORE PRODUCTS PAGE - Ürünler Sayfası
   ============================================ */

.products-section {
    padding: 50px 0 80px 0;
}

.products-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.products-section-header i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    font-size: 1.2rem;
    border-radius: 2px;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.products-section-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* ============================================
   PRODUCTS GRID - Ürün Kartları Grid (5'li)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* ============================================
   PRODUCT CARD - Ürün Kartı (Mavi Canlı Tema)
   ============================================ */
.product-card {
    background: #302d2c;
    border-radius: 1px;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 0 #575453,
        -4px 0 0 #302d2c,
        4px 0 0 #302d2c;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-4px);
}

/* Üst kısım - İndirim Badge */
.product-card-top {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-discount-badge-top {
    background: #dc2626;
    color: #ffffff;
    padding: 5px 16px;
    /* 10px'den 6px'e düşürdüm */
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.8rem;
    /* 0.9rem'den 0.8rem'e düşürdüm */
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b;
    position: relative;
    overflow: hidden;
}

.product-discount-badge-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shimmer 2s infinite;
}

.product-card-top.no-discount {
    min-height: 36px;
}

.product-card-top.no-discount .product-discount-badge-top {
    visibility: hidden;
}

/* Ürün Görseli */
.product-card-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

/* Ürün İçerik */
.product-card-content {
    padding: 16px;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.product-card-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Fiyat Alanı */
.product-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 55px;
    justify-content: center;
}

.product-old-price {
    color: #dc2626;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: line-through;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: -10px;
    /* Negatif margin ile yaklaştır */
}

.product-old-price.hidden {
    visibility: hidden;
}

.product-current-price {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

/* Satın Al Butonu Wrapper */
.product-buy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    position: relative;
    width: 100%;
}

/* Stok Badge - Butonun üstünde */
.product-stock-badge {
    background: #dc2626;
    color: #ffffff;
    padding: 5px 20px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    border-radius: 1px;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.product-stock-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shimmer 2s infinite;
}

.product-stock-badge.hidden {
    visibility: hidden;
}

/* Satın Al Butonu - IP Box Stili */
.product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--craflord-yellow);
    color: #92400e;
    padding: 14px 16px;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.product-buy-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.product-buy-btn:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.product-buy-btn i {
    font-size: 1rem;
}

/* ============================================
   VIP PAGE STYLES - VIP Sayfası Stilleri
   CraftLord temasına uygun tasarım
   ============================================ */

/* VIP Section */
.vip-section {
    padding: 50px 0 80px 0;
}

/* ============================================
   VIP COMBINED CARD - Tek Kart İçinde Her Şey
   ============================================ */
.vip-combined-card {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    overflow: hidden;
}

/* ============================================
   VIP CARDS ROW - Tablo ile Aynı Yapı
   ============================================ */
.vip-cards-row {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 24px 0 20px 0;
}

.vip-cards-spacer {
    display: table-cell;
    width: 160px;
    min-width: 160px;
}

/* ============================================
   VIP CARD - Table Cell Olarak
   ============================================ */
.vip-card {
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
    padding: 0 10px;
}

/* Ürün Görseli */
.vip-card-image {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    transition: transform 0.3s ease;
}

.vip-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.vip-card-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Fiyat Alanı */
.vip-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6px;
}

.vip-old-price {
    color: #dc2626;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: line-through;
    margin-bottom: -4px;
}

.vip-current-price {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* İndirim Badge */
.vip-discount-badge {
    display: flex;
    /* İçeriği ortalamak için */
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Kapsayıcının tamamını kapla */
    box-sizing: border-box;
    /* Padding taşmasını engelle */

    background: #dc2626;
    color: #ffffff;
    padding: 6px 0;
    /* Yanal padding'i kaldırdık, dikey verdik */
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    /* Biraz büyüttük */
    text-transform: uppercase;
    text-align: center;
    border-radius: 1px 1px 0 0;
    /* Sadece üst köşeler */

    /* Alt gölgeyi kaldırdık ki butona yapışsın, sadece yan ve üst kaldı */
    box-shadow:
        -3px 0 0 #f87171,
        /* Sol */
        0 -3px 0 #f87171,
        /* Üst */
        3px 0 0 #991b1b;
    /* Sağ */

    position: relative;
    overflow: hidden;
    z-index: 2;
    /* Butonun üstünde kalsın (görsel olarak) */
}

.vip-discount-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}


/* Satın Al Butonu */
.vip-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 100%;
    /* Kapsayıcının tamamını kapla */
    max-width: none;
    /* Eski max-width'i iptal et */
    box-sizing: border-box;

    background: var(--craflord-yellow);
    color: #92400e;
    padding: 10px 0;
    /* Yüksekliği dengelemek için */
    border: none;
    border-radius: 0 0 1px 1px;
    /* Sadece alt köşeler */

    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;

    /* Üst gölgeyi (0 -3px 0) koruduk, bu sayede badge ile arasında çizgi varmış gibi durur */
    box-shadow:
        -3px 0 0 #fcd950,
        /* Sol */
        0 -3px 0 #fcd950,
        /* Üst (Badge ile ayrım çizgisi) */
        3px 0 0 #995617,
        /* Sağ */
        0 3px 0 #995617;
    /* Alt */

    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

/* --- YENİ EKLENECEK KISIM --- */
.vip-action-wrapper {
    display: flex;
    flex-direction: column;
    /* Alt alta sırala */
    width: 140px;
    /* Resim genişliği ile aynı */
    margin: 0 auto;
    /* Ortala */
}

.vip-buy-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
        0 0 15px rgba(250, 204, 21, 0.4);
}

.vip-buy-btn:active {
    filter: brightness(0.9);
    transform: translateY(0px);
}

.vip-buy-btn i {
    font-size: 0.75rem;
}

/* ============================================
   VIP TABLE SECTION
   ============================================ */
.vip-table-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* VIP Table Title */
.vip-table-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 24px 12px 24px;
    margin: 0;
}

.vip-table-wrapper {
    overflow-x: auto;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Colgroup */
.vip-table .col-feature {
    width: 160px;
}

.vip-table .col-vip {
    width: auto;
}

/* Tablo İçeriği */
.vip-table tbody td {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    text-align: center;
    background: transparent;
}

.vip-table tbody tr:last-child td {
    border-bottom: none;
}

.vip-table tbody td.vip-table-feature {
    text-align: left;
    color: #9ca3af;
    font-weight: 600;
    padding-left: 24px;
    padding-right: 16px;
}

/* ============================================
   VIP TABLE ICONS
   ============================================ */
.vip-icon-yes {
    color: #22c55e;
    font-size: 1rem;
}

.vip-icon-no {
    color: #ef4444;
    font-size: 1rem;
}

/* ============================================
   BREADCRUMB HOME ICON - Ana Sayfa İkonu
   ============================================ */
.breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--craflord-yellow);
    border-radius: 4px;
    color: #92400e;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.breadcrumb-home:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}


/* ============================================
   LANGUAGE SELECTOR - Navbar için
   CraftLord tarzı dropdown menü
   ============================================ */
.language-selector {
    position: relative;
}

.language-btn {
    width: 64px;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #0284c7;
    border: none;
    border-radius: 1px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.language-btn:hover {
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d,
        0 0 20px rgba(2, 132, 199, 0.4);
}

.language-btn .flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.language-btn .dropdown-arrow {
    font-size: 0.65rem;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

/* Language Dropdown Menu - Koyu Tema */
.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: #302d2c;
    border-radius: 1px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow:
        0 4px 0 #646160,
        0 8px 24px rgba(0, 0, 0, 0.4);
    max-height: 350px;
    overflow-y: auto;
}


.language-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #302d2c;
}

/* Language Item - Koyu Tema */
.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.language-item.active {
    background: rgba(250, 204, 21, 0.15);
    color: var(--craflord-yellow);
    font-weight: 600;
}

.language-item .flag-icon {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Scrollbar - Koyu Tema */
.language-menu::-webkit-scrollbar {
    width: 6px;
}

.language-menu::-webkit-scrollbar-track {
    background: #252322;
    border-radius: 3px;
}

.language-menu::-webkit-scrollbar-thumb {
    background: #4a4644;
    border-radius: 3px;
}

.language-menu::-webkit-scrollbar-thumb:hover {
    background: #5a5856;
}

/* ============================================
   FOOTER TOP BORDER - Footer Üst Çizgisi
   ============================================ */
.footer {
    border-top: 3px solid #302d2c;
}

/* ============================================
           PRODUCT MODAL - Ürün Detay Popup
           ============================================ */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.product-modal {
    background: #302d2c;
    border-radius: 1px;
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow:
        0 4px 0 #646160,
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-modal-overlay.active .product-modal {
    transform: scale(1) translateY(0);
}

/* Modal Kapat Butonu */
.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Modal İçerik */
.product-modal-content {
    display: flex;
    gap: 0;
}

/* Sol Taraf - Görsel */
.product-modal-image {
    width: 320px;
    min-width: 320px;
    background: linear-gradient(135deg, #252322 0%, #1d1b1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.product-modal-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

/* Sağ Taraf - Bilgiler */
.product-modal-info {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Ürün Başlık */
.product-modal-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding-right: 40px;
}

/* Stok Badge */
.product-modal-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(250, 204, 21, 0.15);
    border: 2px solid var(--craflord-yellow);
    border-radius: 4px;
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    width: fit-content;
}

/* Bilgi Listesi */
.product-modal-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-modal-row {
    display: flex;
    gap: 8px;
}

.product-modal-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.product-modal-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Fiyat */
.product-modal-price {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Giriş Yap Butonu */
.product-modal-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: fit-content;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.product-modal-login-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

/* Scrollbar */
.product-modal::-webkit-scrollbar {
    width: 6px;
}

.product-modal::-webkit-scrollbar-track {
    background: #252322;
}

.product-modal::-webkit-scrollbar-thumb {
    background: #4a4644;
    border-radius: 3px;
}

/* ============================================
   CHEST PAGE - Sandık Sayfası
   ============================================ */

/* ============================================
   CONFIRM MODAL - Onay Modalı
   Aktif Et uyarısı için kullanılır
   ============================================ */

.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.confirm-modal {
    background: #302d2c;
    border-radius: 2px;
    box-shadow:
        0 4px 0 #646160,
        0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.confirm-modal-overlay.active .confirm-modal {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.confirm-modal-header {
    background: #252322;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.confirm-modal-header i {
    font-size: 1.5rem;
    color: var(--craflord-yellow);
}

.confirm-modal-header h3 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
}

/* Modal Body */
.confirm-modal-body {
    padding: 24px;
}

.confirm-modal-body p {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modal Actions */
.confirm-modal-actions {
    padding: 0 24px 24px 24px;
    display: flex;
    gap: 12px;
}

.confirm-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Tamam Butonu */
.confirm-btn.confirm {
    background: #3b82f6;
    color: #ffffff;
    box-shadow:
        -3px 0 0 #60a5fa,
        0 -3px 0 #60a5fa,
        3px 0 0 #1d4ed8,
        0 3px 0 #1d4ed8;
}

.confirm-btn.confirm:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* İptal Butonu */
.confirm-btn.cancel {
    background: #1d1b1a;
    color: #9ca3af;
    box-shadow:
        -3px 0 0 #2d2b2a,
        0 -3px 0 #2d2b2a,
        3px 0 0 #0d0c0c,
        0 3px 0 #0d0c0c;
}

.confirm-btn.cancel:hover {
    background: #252322;
    color: #ffffff;
    transform: translateY(-2px);
}

.confirm-btn:active {
    transform: translateY(0);
}

.chest-page {
    background: #171615;
    min-height: 100vh;
}

.chest-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

.chest-section {
    padding: 40px 0 80px 0;
}

.chest-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.chest-section-header i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    font-size: 1.2rem;
    border-radius: 2px;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.chest-section-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Sandık Grid - 3'lü */
.chest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Sandık Wrapper - Grid ile Sidebar */
.chest-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    align-items: start;
}

.chest-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Miktar Seçici - Sandık Kartı İçin */
.chest-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 8px;
}

.chest-qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 1px;
}

.chest-qty-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.chest-qty-btn.minus {
    background: #dc2626;
    color: #ffffff;
    box-shadow:
        -2px 0 0 #f87171,
        0 -2px 0 #f87171,
        2px 0 0 #991b1b,
        0 2px 0 #991b1b;
}

.chest-qty-btn.minus:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.chest-qty-btn.plus {
    background: var(--craflord-green);
    color: #ffffff;
    box-shadow:
        -2px 0 0 #33D470,
        0 -2px 0 #33D470,
        2px 0 0 #007A2E,
        0 2px 0 #007A2E;
}

.chest-qty-btn.plus:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.chest-qty-input {
    width: 50px;
    height: 36px;
    background: #1d1b1a;
    border: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    margin: 0 6px;
    border-radius: 1px;
    box-shadow: 0 2px 0 #0d0c0c;
    -moz-appearance: textfield;
}

.chest-qty-input::-webkit-outer-spin-button,
.chest-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.chest-qty-input:focus {
    outline: none;
}

/* Sandık Sidebar */
.chest-sidebar {
    position: sticky;
    top: 24px;
}

/* Sandık Kartı */
.chest-card {
    background: #302d2c;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 4px 0 #646160;
    transition: all 0.3s ease;
}

.chest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 #646160, 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Kart Görseli */
.chest-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #252322 0%, #1d1b1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.chest-card-image img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

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

/* Kart İçerik */
.chest-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chest-card-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.chest-card-category {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
}

.chest-card-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Kart Butonları */
.chest-card-actions {
    display: flex;
    gap: 14px;
}

.chest-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Aktif Et Butonu - Yeşil */
.chest-action-btn.activate {
    background: var(--craflord-green);
    color: #ffffff;
    box-shadow:
        -3px 0 0 #33D470,
        0 -3px 0 #33D470,
        3px 0 0 #007A2E,
        0 3px 0 #007A2E;
}

.chest-action-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.chest-action-btn.activate:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #33D470,
        0 -3px 0 #33D470,
        3px 0 0 #007A2E,
        0 3px 0 #007A2E,
        0 0 15px rgba(0, 200, 81, 0.4);
}

/* Hediye Et Butonu - Mavi */
.chest-action-btn.gift {
    background: var(--craflord-yellow);
    color: #92400e;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.chest-action-btn.gift:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
}

/* Boş Sandık */
.chest-empty {
    grid-column: span 3;
    padding: 60px 20px;
    text-align: center;
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
}

.chest-empty i {
    font-size: 4rem;
    color: #4a4644;
    margin-bottom: 20px;
}

.chest-empty p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   GIFT PAGE - Hediye Gönder Sayfası
   ============================================ */
.gift-page {
    background: #171615;
    min-height: 100vh;
}

.gift-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

.gift-section {
    padding: 40px 0 80px 0;
}

.gift-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: stretch;
}

/* Hediye Gönder Kartı */
.gift-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 28px;
    box-shadow: 0 4px 0 #646160;
    display: flex;
    flex-direction: column;
}

.gift-card-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

/* Hediye Formu */
.gift-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.gift-form-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.gift-form-label {
    width: 120px;
    min-width: 120px;
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
    padding-top: 12px;
}

.gift-form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gift-form-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 0;
}

.gift-form-input {
    width: 100%;
    padding: 12px 16px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 3px 0 #0d0c0c;
}

.gift-form-input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    box-shadow: 0 3px 0 #0d0c0c, 0 0 0 3px rgba(250, 204, 21, 0.15);
}

.gift-form-input::placeholder {
    color: #6b6866;
}

/* Input ile Yardım Butonu */
.gift-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-input-wrapper .gift-form-input {
    flex: 1;
}

.gift-help-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.gift-help-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.gift-form-hint {
    color: #6b6866;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.8rem;
}

/* Hediye Gönder Butonu */
.gift-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.gift-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.gift-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

/* Sandık Geçmişi */
.gift-history-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    box-shadow: 0 4px 0 #646160;
    display: flex;
    flex-direction: column;
}

.gift-history-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Geçmiş Tablo */
.gift-history-table {
    width: 100%;
    border-collapse: collapse;
}

.gift-history-table thead th {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-history-table thead th:last-child {
    text-align: right;
}

.gift-history-table tbody td {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gift-history-table tbody tr:last-child td {
    border-bottom: none;
}

.gift-history-table tbody td:last-child {
    text-align: right;
}

/* Geçmiş İkonlar */
.history-type-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
}

.history-type-icon.gift {
    background: rgba(2, 132, 199, 0.2);
    color: #0ea5e9;
}

.history-type-icon.activated {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* ============================================
   CART PAGE - Sepet Sayfası
   ============================================ */
.cart-page {
    background: #171615;
    min-height: 100vh;
}

.cart-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

.cart-section {
    padding: 40px 0 80px 0;
}

.cart-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cart-section-header i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    font-size: 1.2rem;
    border-radius: 2px;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.cart-section-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

/* Sepet Tablosu */
.cart-table-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 0;
    box-shadow: 0 4px 0 #646160;
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead th {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

/* Ürün Hücresi */
.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product-image {
    width: 56px;
    height: 56px;
    background: #1d1b1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.cart-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-product-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-product-category {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.8rem;
}

/* Fiyat Hücresi */
.cart-price {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Adet Seçici */
.cart-quantity-selector {
    display: inline-flex;
    align-items: center;
    background: #1d1b1a;
    border-radius: 4px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-qty-btn.minus {
    background: #dc2626;
    color: #ffffff;
}

.cart-qty-btn.minus:hover {
    background: #b91c1c;
}

.cart-qty-btn.plus {
    background: var(--craflord-green);
    color: #ffffff;
}

.cart-qty-btn.plus:hover {
    background: #00a844;
}

.cart-qty-input {
    width: 40px;
    height: 32px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.cart-qty-input:focus {
    outline: none;
}

/* Toplam Fiyat */
.cart-total {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Aksiyon Butonları */
.cart-action-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-info-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-info-btn:hover {
    background: #0369a1;
    transform: scale(1.1);
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Sağ Panel - Kupon ve Özet */
.cart-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Kupon Kartı */
.cart-coupon-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    box-shadow: 0 4px 0 #646160;
}

.cart-coupon-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cart-coupon-form {
    display: flex;
    gap: 10px;
}

.cart-coupon-input {
    flex: 1;
    padding: 12px 16px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.cart-coupon-input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
}

.cart-coupon-input::placeholder {
    color: #6b6866;
}

.cart-coupon-btn {
    padding: 12px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.cart-coupon-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Sipariş Özeti Kartı */
.cart-summary-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    box-shadow: 0 4px 0 #646160;
}

.cart-summary-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary-row:last-of-type {
    border-bottom: none;
}

.cart-summary-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-summary-value {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.3rem;
}

/* Ödeme Yöntemi */
.cart-payment-method {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-payment-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.cart-payment-select {
    width: 100%;
    padding: 12px 16px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.cart-payment-select:focus {
    outline: none;
    border-color: var(--craflord-yellow);
}

/* Kredi Kullan Checkbox */
.cart-credit-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    cursor: pointer;
}

.cart-credit-option input {
    display: none;
}

.cart-credit-checkbox {
    width: 20px;
    height: 20px;
    background: #1d1b1a;
    border: 2px solid #4a4644;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cart-credit-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: #92400e;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.cart-credit-option input:checked+.cart-credit-checkbox {
    background: var(--craflord-yellow);
    border-color: var(--craflord-yellow);
}

.cart-credit-option input:checked+.cart-credit-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

.cart-credit-text {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-credit-text strong {
    color: var(--craflord-yellow);
    font-weight: 700;
}

/* Ödeme Butonu */
.cart-checkout-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.cart-checkout-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 25px rgba(250, 204, 21, 0.4);
}

/* Boş Sepet */
.cart-empty {
    padding: 60px 20px;
    text-align: center;
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
}

.cart-empty i {
    font-size: 4rem;
    color: #4a4644;
    margin-bottom: 20px;
}

.cart-empty p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.cart-empty-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ============================================
   BLOG POST PAGE - Blog Yazısı Sayfası
   ============================================ */
.blog-post-page {
    background: #171615;
    min-height: 100vh;
}

.blog-post-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* Blog Post Section */
.blog-post-section {
    padding: 40px 0 80px;
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* Main Content */
.blog-post-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-post-card {
    background: #302d2c;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 4px 0 #646160;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #252322 0%, #1d1b1a 100%);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    /* Firefox için */
}

.blog-post-content {
    padding: 28px;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.blog-post-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-post-text p {
    margin-bottom: 16px;
}

.blog-post-text p:last-child {
    margin-bottom: 0;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.blog-post-date i {
    color: var(--craflord-yellow);
    font-size: 0.8rem;
}

.blog-post-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-post-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.blog-post-stat i {
    color: var(--craflord-yellow);
    font-size: 0.8rem;
}

/* Comments Section */
.blog-comments-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 28px;
    box-shadow: 0 4px 0 #646160;
}

.blog-comments-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Comment Form */
.comment-form {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-form-avatar {
    width: 64px;
    height: 64px;
    border-radius: 1px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 0 #1d1b1a;
}

.comment-form-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.comment-form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.comment-form-textarea {
    width: 100%;
    min-height: 80px;
    padding: 14px;
    background: #1d1b1a;
    border: 2px solid transparent;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.comment-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.comment-form-textarea:focus {
    outline: none;
    border-color: var(--craflord-yellow);
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
}

.comment-submit-btn {
    padding: 12px 28px;
    background: var(--craflord-yellow);
    border: none;
    border-radius: 1px;
    color: #92400e;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.comment-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617,
        0 0 15px rgba(250, 204, 21, 0.4);
}

.comment-submit-btn:active {
    transform: translateY(1px);
}

/* Comment List */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 14px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 1px;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.comment-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.comment-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.comment-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Sidebar */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}

.sidebar-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px;
    box-shadow: 0 4px 0 #646160;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Author Card */
.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 3px 0 #1d1b1a;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.author-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-link:hover {
    color: var(--craflord-yellow);
}

/* Related Posts */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #1d1b1a;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.related-post-item:hover {
    background: #252322;
    transform: translateX(4px);
}

.related-post-image {
    width: 56px;
    height: 56px;
    border-radius: 1px;
    overflow: hidden;
    flex-shrink: 0;
    background: #302d2c;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.related-post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.no-related {
    color: var(--craflord-yellow);
    font-size: 0.9rem;
}

/* ============================================
   TICKET PAGES - Destek Sayfaları Stilleri
   CraftLord temasına uygun tasarım
   ============================================ */

.ticket-page {
    background: #171615;
    min-height: 100vh;
}

.ticket-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* ============================================
   TICKET SECTION - Ana İçerik Bölümü
   ============================================ */
.ticket-section {
    padding: 40px 0 80px 0;
}

/* ============================================
   INFO CARD - Uyarı Kartı
   ============================================ */
.ticket-info-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 0 #646160;
}

.ticket-info-icon {
    width: 56px;
    height: 56px;
    background: var(--craflord-yellow);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

.ticket-info-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.ticket-info-content {
    flex: 1;
}

.ticket-info-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.ticket-info-text {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.7;
}

.ticket-info-text strong {
    color: var(--craflord-yellow);
}

.ticket-info-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ticket-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.ticket-info-btn.discord {
    background: #5865f2;
    color: #ffffff;
    box-shadow:
        -4px 0 0 #7983f5,
        0 -4px 0 #7983f5,
        4px 0 0 #4752c4,
        0 4px 0 #4752c4;
}

.ticket-info-btn.discord:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #7983f5,
        0 -4px 0 #7983f5,
        4px 0 0 #4752c4,
        0 4px 0 #4752c4,
        0 0 20px rgba(88, 101, 242, 0.4);
}

.ticket-info-btn.wiki {
    background: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.ticket-info-btn.wiki:hover {
    background: var(--craflord-yellow);
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

/* ============================================
   TICKET CARD - Ana Kart
   ============================================ */
.ticket-card {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    overflow: hidden;
}

.ticket-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ticket-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-card-title i {
    color: var(--craflord-yellow);
}

.ticket-create-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.ticket-create-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.ticket-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #252322;
    color: #ffffff;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ticket-back-btn:hover {
    background: #3d3a39;
    transform: translateY(-2px);
}

/* ============================================
   TICKET TABLE - Tablo
   ============================================ */
.ticket-table-wrapper {
    overflow-x: auto;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
}

.ticket-table thead th {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 14px 20px;
    background: rgba(250, 204, 21, 0.08);
    border-bottom: 2px solid rgba(250, 204, 21, 0.2);
}

.ticket-table tbody td {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.ticket-table tbody tr:last-child td {
    border-bottom: none;
}

.ticket-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Table Cell Styles */
.ticket-table .id-cell {
    color: var(--craflord-yellow);
    font-weight: 600;
}

.ticket-table .title-cell {
    color: #ffffff;
    font-weight: 600;
}

.ticket-table .category-cell {
    color: #9ca3af;
}

.ticket-table .date-cell {
    color: #9ca3af;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.status-badge.open {
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
}

.status-badge.answered {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-badge.closed {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* Action Buttons */
.actions-cell {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* View Button - Sarı (Profildeki gibi) */
.view-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.15);
    color: var(--craflord-yellow);
    border: none;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.view-btn:hover {
    background: var(--craflord-yellow);
    color: #92400e;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

/* Delete Button - Kırmızı */
.delete-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: none;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-btn:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

/* ============================================
   TICKET FORM - Form Stilleri
   ============================================ */
.ticket-form {
    padding: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.form-input::placeholder {
    color: #6b7280;
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper .form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.form-select option {
    background: #1d1b1a;
    color: #ffffff;
    padding: 12px;
}

/* Textarea */
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #1d1b1a;
    border: none !important;
    /* Önemli: Kenarlık olmamalı */
    border-radius: 0;
    color: #ffffff;
    font-family: var(--font-primary, sans-serif);
    font-weight: 500;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 150px;
    box-shadow: none !important;
    /* Focus gölgesini siliyoruz */
    outline: none !important;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.form-textarea::placeholder {
    color: #6b7280;
}

/* Editor Toolbar */
.rich-editor-container {
    border: 2px solid #3d3a39;
    border-radius: 1px;
    background: #1d1b1a;
    transition: all 0.2s ease;
    overflow: hidden;
    /* Köşelerin düzgün görünmesi için */
}

/* Kapsayıcıya tıklandığında (içindeki textarea'ya focus olunca)
   Dış çerçeve sarı olur ve yukarı zıplar */
.rich-editor-container:focus-within {
    border-color: #facc15;
    /* Sarı renk */
    box-shadow: 0 4px 0 rgba(250, 204, 21, 0.2);
    transform: translateY(-1px);
}

/* 2. Toolbar (Üst Kısım) 
   Kenarlıklarını sıfırlıyoruz, sadece alta çizgi koyuyoruz. */
.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    background: #302d2c;
    border: none;
    /* Dış kenarlık yok */
    border-bottom: 2px solid #3d3a39;
    /* Textarea ile aradaki çizgi */
}

.toolbar-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: #9ca3af;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toolbar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.toolbar-btn:active {
    background: rgba(250, 204, 21, 0.2);
    color: var(--craflord-yellow);
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 8px;
}

.ticket-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.ticket-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

/* ============================================
   TICKET DETAIL - Detay Sayfası
   ============================================ */
.ticket-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.ticket-detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ticket-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket-detail-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticket-detail-title h1 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
}

/* Messages */
.ticket-messages {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-message {
    display: flex;
    gap: 16px;
}

.message-avatar {
    position: relative;
    flex-shrink: 0;
}

.message-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    image-rendering: pixelated;
}

.staff-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--craflord-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-badge i {
    font-size: 0.6rem;
    color: #92400e;
}

.message-content {
    flex: 1;
    background: #252322;
    border-radius: 4px;
    padding: 16px;
    border-left: 3px solid transparent;
}

/* User Message - Sağda */
.user-message {
    flex-direction: row;
}

.user-message .message-content {
    border-left: none;
    border-right: 3px solid #6b7280;
    text-align: right;
}

.user-message .message-header {
    justify-content: flex-end;
}

/* Staff Message - Solda */
.staff-message .message-content {
    border-left-color: var(--craflord-yellow);
    background: rgba(250, 204, 21, 0.05);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.message-author {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.message-role {
    display: inline-block;
    padding: 2px 8px;
    background: var(--craflord-yellow);
    color: #92400e;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.message-date {
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.8rem;
}

.message-body {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
}

.message-body p {
    margin: 0;
}

/* Reply Form */
.ticket-reply-form {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    padding: 24px;
}

.reply-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reply-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

/* Sidebar */
.ticket-detail-sidebar {
    position: sticky;
    top: 24px;
}

.ticket-sidebar-card {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    padding: 24px;
}

.sidebar-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

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

.info-label {
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-btn.close-ticket {
    background: #dc2626;
    color: #ffffff;
    box-shadow:
        -3px 0 0 #f87171,
        0 -3px 0 #f87171,
        3px 0 0 #991b1b,
        0 3px 0 #991b1b;
}

.sidebar-btn.close-ticket:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #f87171,
        0 -3px 0 #f87171,
        3px 0 0 #991b1b,
        0 3px 0 #991b1b,
        0 0 20px rgba(239, 68, 68, 0.4);
}

/* ============================================
   WIKI PAGE - Wiki Sayfası Stilleri
   CraftLord temasına uygun tasarım
   ============================================ */

.wiki-page {
    background: #171615;
    min-height: 100vh;
}

.wiki-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* ============================================
   WIKI SECTION - Ana İçerik Bölümü
   ============================================ */
.wiki-section {
    padding: 40px 0 80px 0;
}

.wiki-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

/* ============================================
   WIKI SIDEBAR - Sol Menü
   ============================================ */

.wiki-sidebar {
    background: #302d2c;
    border-radius: 1px;
    padding: 20px;
    box-shadow: 0 4px 0 #646160;
    position: sticky;
    top: 24px;
}

/* Arama - Tema Buton Stilinde */
.wiki-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0284c7;
    border-radius: 1px;
    padding: 12px 16px;
    margin-bottom: 24px;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.wiki-search i {
    color: #ffffff;
    font-size: 0.9rem;
}

.wiki-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.wiki-search input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

/* Menü Bölümleri */
.wiki-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wiki-menu-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Kategori Başlığı - Buton Stilinde */
.wiki-menu-title {
    background: var(--craflord-yellow);
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    margin-bottom: 8px;
    border-radius: 1px;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.wiki-menu-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wiki-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wiki-menu-item i {
    width: 18px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.wiki-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.wiki-menu-item:hover i {
    color: var(--craflord-yellow);
}

.wiki-menu-item.active {
    background: rgba(250, 204, 21, 0.1);
    color: var(--craflord-yellow);
}

.wiki-menu-item.active i {
    color: var(--craflord-yellow);
}

/* ============================================
   WIKI CONTENT - Ana İçerik
   ============================================ */
.wiki-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Banner */
.wiki-banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.wiki-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Makale Kartı */
.wiki-article {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    overflow: hidden;
    /* Banner köşeleri için */
}

.wiki-article-body {
    padding: 32px;
}

.wiki-article-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.wiki-article-date {
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Makale İçeriği */
.wiki-article-content {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.8;
}

.wiki-article-content p {
    margin-bottom: 16px;
}

.wiki-article-content strong {
    color: #ffffff;
    font-weight: 700;
}

.wiki-article-content a,
.wiki-link {
    color: var(--craflord-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.wiki-article-content a:hover,
.wiki-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
}

.wiki-article-content h2 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(250, 204, 21, 0.3);
}

.wiki-article-content h3 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

/* Sırasız Liste */
.wiki-article-content ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.wiki-article-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.wiki-article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--craflord-yellow);
    border-radius: 2px;
}

/* Sıralı Liste */
.wiki-article-content ol {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: wiki-counter;
}

.wiki-article-content ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    counter-increment: wiki-counter;
}

.wiki-article-content ol li::before {
    content: counter(wiki-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

/* Highlight Box - Bilgi */
.wiki-highlight {
    display: flex;
    gap: 16px;
    background: rgba(250, 204, 21, 0.08);
    border-left: 4px solid var(--craflord-yellow);
    border-radius: 0 4px 4px 0;
    padding: 20px;
    margin: 24px 0;
}

.wiki-highlight i {
    color: var(--craflord-yellow);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.wiki-highlight p {
    margin: 0;
    color: #d1d5db;
}

/* Warning Box - Uyarı */
.wiki-warning {
    display: flex;
    gap: 16px;
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid #ef4444;
    border-radius: 0 4px 4px 0;
    padding: 20px;
    margin: 24px 0;
}

.wiki-warning i {
    color: #ef4444;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.wiki-warning p {
    margin: 0;
    color: #d1d5db;
}

.wiki-warning a {
    color: #ef4444;
}

/* Tablo */
.wiki-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #252322;
    border-radius: 4px;
    overflow: hidden;
}

.wiki-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wiki-table tr:last-child {
    border-bottom: none;
}

.wiki-table td {
    padding: 14px 18px;
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.wiki-table td:first-child {
    background: rgba(250, 204, 21, 0.05);
    width: 40%;
}

.wiki-table td strong {
    color: var(--craflord-yellow);
}

/* Code */
.wiki-article-content code {
    background: #1d1b1a;
    color: var(--craflord-yellow);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85em;
    border: 1px solid #3d3a39;
}

.wiki-article-content pre {
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 4px;
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0;
}

.wiki-article-content pre code {
    background: transparent;
    padding: 0;
    color: #d1d5db;
    border: none;
}

/* Wiki Buttons */
.wiki-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.wiki-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.wiki-btn.discord {
    background: #5865f2;
    color: #ffffff;
    box-shadow:
        -3px 0 0 #7983f5,
        0 -3px 0 #7983f5,
        3px 0 0 #4752c4,
        0 3px 0 #4752c4;
}

.wiki-btn.discord:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #7983f5,
        0 -3px 0 #7983f5,
        3px 0 0 #4752c4,
        0 3px 0 #4752c4,
        0 0 20px rgba(88, 101, 242, 0.4);
}

.wiki-btn.twitter {
    background: #1d9bf0;
    color: #ffffff;
    box-shadow:
        -3px 0 0 #4db5f5,
        0 -3px 0 #4db5f5,
        3px 0 0 #0c7abf,
        0 3px 0 #0c7abf;
}

.wiki-btn.twitter:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #4db5f5,
        0 -3px 0 #4db5f5,
        3px 0 0 #0c7abf,
        0 3px 0 #0c7abf,
        0 0 20px rgba(29, 155, 240, 0.4);
}

.wiki-btn.youtube {
    background: #ff0000;
    color: #ffffff;
    box-shadow:
        -3px 0 0 #ff4d4d,
        0 -3px 0 #ff4d4d,
        3px 0 0 #b30000,
        0 3px 0 #b30000;
}

.wiki-btn.youtube:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #ff4d4d,
        0 -3px 0 #ff4d4d,
        3px 0 0 #b30000,
        0 3px 0 #b30000,
        0 0 20px rgba(255, 0, 0, 0.4);
}

/* Blockquote */
.wiki-article-content blockquote {
    background: #252322;
    border-left: 4px solid #6b7280;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.wiki-article-content blockquote p {
    margin: 0;
    color: #9ca3af;
    font-style: italic;
}

/* Image */
.wiki-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
    box-shadow: 0 4px 0 #646160;
}

.wiki-image-caption {
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: -10px;
    margin-bottom: 16px;
}

/* ============================================
   FORGOT PASSWORD PAGE
   CraftLord Login Temasına Uygun
   ============================================ */

/* Login Page Base */
.login-page {
    background: #171615;
    min-height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

/* Sol Taraf - Wallpaper */
.login-wallpaper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.login-wallpaper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wallpaper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Sağ Taraf - Form Container */
.login-form-container {
    width: 500px;
    min-height: 100vh;
    background: #171615;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

/* Ana Sayfaya Dön */
.back-to-home {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-to-home:hover {
    color: var(--craflord-yellow);
}

.back-to-home i {
    font-size: 0.85rem;
}

/* Alert Messages */
.forgot-alert {
    position: absolute;
    top: 80px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.forgot-alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.forgot-alert.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    box-shadow:
        -3px 0 0 rgba(34, 197, 94, 0.3),
        0 -3px 0 rgba(34, 197, 94, 0.3),
        3px 0 0 rgba(21, 128, 61, 0.5),
        0 3px 0 rgba(21, 128, 61, 0.5);
}

.forgot-alert.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    box-shadow:
        -3px 0 0 rgba(239, 68, 68, 0.3),
        0 -3px 0 rgba(239, 68, 68, 0.3),
        3px 0 0 rgba(185, 28, 28, 0.5),
        0 3px 0 rgba(185, 28, 28, 0.5);
}

/* Login Box */
.login-box {
    width: 100%;
    max-width: 380px;
}

/* Logo */
.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img {
    height: 50px;
    width: auto;
}

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.login-header p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Form */
.login-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--craflord-yellow);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #252322;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.form-group input::placeholder {
    color: #6b7280;
}

/* Submit Button */
.login-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.login-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 5px 0 #995617,
        0 8px 20px rgba(250, 204, 21, 0.3);
}

.login-submit-btn:active {
    transform: translateY(0);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider span {
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Register/Login Link Button */
.register-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -3px 0 0 #41a3d5,
        0 -3px 0 #41a3d5,
        3px 0 0 #025e8d,
        0 3px 0 #025e8d;
}

.register-link-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -3px 0 0 #41a3d5,
        0 -3px 0 #41a3d5,
        3px 0 0 #025e8d,
        0 5px 0 #025e8d,
        0 8px 20px rgba(2, 132, 199, 0.3);
}

.register-link-btn:active {
    transform: translateY(0);
    box-shadow:
        -2px 0 0 #41a3d5,
        0 -2px 0 #41a3d5,
        2px 0 0 #025e8d,
        0 2px 0 #025e8d;
}

/* Footer */
.login-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.login-footer p {
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.8rem;
}

/* ============================================
   MINI PAGES - Ödeme Başarılı, 2FA vb.
   CraftLord temasına uygun tasarım
   ============================================ */

/* ============================================
   PAYMENT SUCCESS PAGE
   ============================================ */
.mini-page {
    background: #171615;
    min-height: 100vh;
}

.mini-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

.mini-section {
    padding: 40px 0 80px 0;
}

.mini-page-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.mini-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 60px 40px;
    box-shadow: 0 4px 0 #646160;
}

/* Success Content */
.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--craflord-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.success-text {
    color: var(--craflord-green);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.success-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 6px 0 #995617;
}

/* ============================================
   AUTH MINI PAGES - 2FA
   ============================================ */
.auth-mini-page {
    background: #171615;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.auth-mini-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/gifbanner.gif') center center / cover;
    opacity: 0.15;
    z-index: 0;
}

.auth-mini-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Logo */
/* Logo */
.auth-mini-logo {
    width: 100%;
    max-width: 420px;
    text-align: center;
    margin-bottom: 8px;
}

.auth-mini-logo img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Card */
.auth-mini-card {
    width: 100%;
    background: #302d2c;
    border-radius: 1px;
    padding: 32px;
    box-shadow: 0 4px 0 #646160;
}

.auth-mini-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-mini-header h1 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.auth-mini-header p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* QR Code */
.qr-code-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.qr-code-wrapper img {
    width: 180px;
    height: 180px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
}

/* Secret Key Info */
.secret-key-info {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 4px;
}

.secret-key-info p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.secret-key-info strong {
    color: var(--craflord-yellow);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Form */
.auth-mini-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-mini-input-group {
    display: flex;
    align-items: stretch;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.auth-mini-input-group:focus-within {
    border-color: var(--craflord-yellow);
}

.auth-mini-input-icon {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--craflord-yellow);
    color: #92400e;
    font-size: 1rem;
    flex-shrink: 0;
}

.auth-mini-input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-align: center;
}

.auth-mini-input::placeholder {
    color: #6b7280;
    letter-spacing: normal;
}

/* Submit Button */
.auth-mini-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.auth-mini-submit-btn:hover {
    background: var(--craflord-yellow);
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.auth-mini-submit-btn:active {
    transform: translateY(0);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
}

/* Link */
.auth-mini-link {
    display: block;
    text-align: center;
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 8px;
}

.auth-mini-link:hover {
    color: var(--craflord-yellow);
}

/* ============================================
   ERROR PAGE STYLES
   ============================================ */
.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.error-text {
    color: #ef4444;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

/* ============================================
   WARNING/PENDING STYLES
   ============================================ */
.pending-icon {
    width: 100px;
    height: 100px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pending-icon i {
    font-size: 3rem;
    color: #92400e;
}

.pending-text {
    color: #fbbf24;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

/* ============================================
   APPLICATIONS PAGE - Başvuru Sayfası
   CraftLord temasına uygun tasarım
   ============================================ */

.applications-page {
    background: #171615;
    min-height: 100vh;
}

.applications-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* ============================================
   APPLICATIONS SECTION
   ============================================ */
.applications-section {
    padding: 40px 0 80px 0;
}

/* Application Header */
.application-header {
    margin-bottom: 24px;
}

.application-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.application-desc {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Application Card */
.application-card {
    background: #302d2c;
    border-radius: 1px;
    box-shadow: 0 4px 0 #646160;
    overflow: hidden;
}

/* Application Form */
.application-form {
    padding: 40px 60px;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 40px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row:first-child {
    padding-top: 0;
}

.form-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-label {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding-top: 14px;
    text-align: right;
}

.form-input-wrapper {
    width: 100%;
}

/* Text Input */
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
}

.form-input::placeholder {
    color: #6b7280;
}

/* Number Input - Daha dar */
.form-input[type="number"] {
    max-width: 120px;
}

/* Textarea */
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.2s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--craflord-yellow);
}

.form-textarea::placeholder {
    color: #6b7280;
}

/* Select */
.select-wrapper {
    position: relative;
    max-width: 350px;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    padding-right: 50px;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--craflord-yellow);
}

.form-select option {
    background: #1d1b1a;
    color: #ffffff;
    padding: 12px;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    font-size: 0.9rem;
}

/* ============================================
   RADIO BUTTONS - Tek Seçim
   ============================================ */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.radio-group.vertical {
    flex-direction: column;
    gap: 10px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
}

.radio-item:hover {
    border-color: #4d4a49;
    background: #252322;
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.radio-checkmark::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--craflord-yellow);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.radio-item input[type="radio"]:checked~.radio-checkmark {
    border-color: var(--craflord-yellow);
}

.radio-item input[type="radio"]:checked~.radio-checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.radio-item input[type="radio"]:checked~.radio-text {
    color: var(--craflord-yellow);
}

.radio-text {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

/* Active Radio Item */
.radio-item:has(input[type="radio"]:checked) {
    border-color: var(--craflord-yellow);
    background: rgba(250, 204, 21, 0.05);
}

/* ============================================
   CHECKBOXES - Çoktan Seçmeli
   ============================================ */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #1d1b1a;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    border-color: #4d4a49;
    background: #252322;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #6b7280;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #92400e;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked~.checkbox-checkmark {
    border-color: var(--craflord-yellow);
    background: var(--craflord-yellow);
}

.checkbox-item input[type="checkbox"]:checked~.checkbox-checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-item input[type="checkbox"]:checked~.checkbox-text {
    color: var(--craflord-yellow);
}

.checkbox-text {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

/* Active Checkbox Item */
.checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: var(--craflord-yellow);
    background: rgba(250, 204, 21, 0.05);
}

/* Form Footer */
.form-footer {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-top: 32px;
    margin-top: 24px;
}

.form-footer-actions {
    display: flex;
    justify-content: flex-end;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.form-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 6px 0 #995617;
}

.form-submit-btn:active {
    transform: translateY(0);
    box-shadow:
        -3px 0 0 #fcd950,
        0 -3px 0 #fcd950,
        3px 0 0 #995617,
        0 3px 0 #995617;
}

/* ============================================
   FORM VALIDATION STATES
   ============================================ */
.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #ef4444;
}

.form-input.success,
.form-textarea.success,
.form-select.success {
    border-color: #22c55e;
}

.form-error-text {
    color: #ef4444;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ============================================
   REQUIRED INDICATOR
   ============================================ */
.form-label.required::after {
    content: ' *';
    color: #ef4444;
}

/* ============================================
   HELPER TEXT
   ============================================ */
.form-helper {
    color: #6b7280;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ============================================
   DISABLED STATE
   ============================================ */
.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.radio-item.disabled,
.checkbox-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   LOGIN/REGISTER PAGE - Form Container Düzeltmesi
   Ekrana sığması için ayarlamalar
   ============================================ */

/* Login Form Container - Scroll ve padding ayarı */
.login-form-container {
    width: 520px;
    min-width: 520px;
    background: #1d1b1a;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 50px;
    position: relative;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    max-height: 100vh;
}

/* Back to home - Daha kompakt */
.back-to-home {
    position: relative;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    padding: 8px 14px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    width: fit-content;
}

/* Login Box - Daha kompakt spacing */
.login-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-header h1 {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.6rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.login-header p {
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Form - Daha kompakt gap */
.login-form-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--craflord-yellow);
    font-size: 0.85rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #302d2c;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #646160;
}

.form-group input:focus {
    outline: none;
    border-color: var(--craflord-yellow);
    background: #3a3736;
    box-shadow:
        0 4px 0 #646160,
        0 0 20px rgba(250, 204, 21, 0.15);
}

/* Password wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.toggle-password:hover {
    color: var(--craflord-yellow);
}

/* Form options - Daha kompakt */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

/* Checkbox - Daha küçük */
.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: #302d2c;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 0 #646160;
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: #92400e;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.remember-me input:checked~.checkmark {
    background: var(--craflord-yellow);
    border-color: var(--craflord-yellow);
}

.remember-me input:checked~.checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.remember-text {
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
}

.forgot-password,
.terms-link-inline {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.forgot-password:hover,
.terms-link-inline:hover {
    text-decoration: underline;
}

/* Submit Button - Daha kompakt */
.login-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 6px;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.login-submit-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 25px rgba(250, 204, 21, 0.4);
}

.login-submit-btn i {
    font-size: 0.95rem;
}

/* Divider - Daha kompakt */
.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider span {
    color: var(--color-text-gray);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Register/Login Link Button - Daha kompakt */
.register-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d;
}

.register-link-btn:hover {
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #41a3d5,
        0 -4px 0 #41a3d5,
        4px 0 0 #025e8d,
        0 4px 0 #025e8d,
        0 0 25px rgba(2, 132, 199, 0.4);
}

.register-link-btn i {
    font-size: 0.9rem;
}

/* Discord Button - Daha kompakt */
.discord-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 24px;
    background: var(--craflord-blue);
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba;
}

.discord-login-btn:hover {
    filter: brightness(1.15) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #7b75ec,
        0 -4px 0 #7b75ec,
        4px 0 0 #3e37ba,
        0 4px 0 #3e37ba,
        0 0 25px rgba(79, 70, 229, 0.4);
}

.discord-login-btn i {
    font-size: 1rem;
}

/* Footer - Daha kompakt */
.login-footer {
    margin-top: 24px;
    text-align: center;
}

.login-footer p {
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.7rem;
}


/* ============================================
   GAMING NIGHT PAGE - Gaming Gecesi Sayfası
   CraftLord Temasına Uygun
   ============================================ */

.gaming-night-page {
    background: #171615;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gaming-header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
    flex-shrink: 0;
}

/* ============================================
   GAMING HERO SECTION - GIF Arkaplan
   ============================================ */
.gaming-hero {
    position: relative;
    padding: 100px 0 80px 0;
    overflow: hidden;
    flex-shrink: 0;
}

/* Full Height - Footer'a kadar uzasın */
.gaming-hero.full-height {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px - 300px);
    /* Header ve Footer çıkarılmış */
}

.gaming-hero.full-height .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaming-hero.full-height .gaming-hero-content {
    margin-top: -50px;
}

/* GIF Arkaplan */
.gaming-hero-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/gifbanner.gif') center center / cover no-repeat;
    opacity: 0.25;
    /* Opaklık ayarı - 0.1 ile 1 arası değiştir */
    z-index: 0;
}

/* Overlay - karartma efekti */
.gaming-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(23, 22, 21, 0.6) 0%,
            rgba(23, 22, 21, 0.4) 50%,
            rgba(23, 22, 21, 0.8) 100%);
    z-index: 1;
}

.gaming-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ============================================
   GAMING TITLE
   ============================================ */
.gaming-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.gaming-title-icon {
    font-size: 3rem;
    color: #facc15;
    filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.gaming-title {
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gaming-subtitle {
    color: #9ca3af;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ============================================
   COUNTDOWN TIMER - Sabit Boyutlu
   ============================================ */
.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #302d2c;
    padding: 20px 0;
    border-radius: 1px;
    width: 120px;
    height: 110px;
    box-shadow:
        0 4px 0 #646160,
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.countdown-number {
    color: #facc15;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(250, 204, 21, 0.3);
    width: 70px;
    text-align: center;
    display: block;
}

.countdown-text {
    color: #6b7280;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.countdown-divider {
    color: #facc15;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    opacity: 0.5;
    animation: dividerBlink 1s ease-in-out infinite;
    width: 20px;
    text-align: center;
}

@keyframes dividerBlink {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   GAMING PRODUCTS SECTION
   ============================================ */
.gaming-products-section {
    padding: 60px 0 80px 0;
    background: #171615;
}

.gaming-products-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gaming-products-header i {
    color: #f97316;
    font-size: 1.5rem;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.gaming-products-header h2 {
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 5 Kartlık Grid */
.gaming-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* ============================================
   CARD WRAPPER - Gölgeler için alan
   ============================================ */
.gaming-card-wrapper {
    padding: 4px;
    padding-bottom: 8px;
}

/* ============================================
   GAMING PRODUCT CARD - Market ile 1/1 Aynı
   ============================================ */
.gaming-product-card {
    background: #302d2c;
    border-radius: 1px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:
        0 4px 0 #575453,
        -4px 0 0 #302d2c,
        4px 0 0 #302d2c;
}

.gaming-product-card:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-4px);
}

/* ============================================
   CARD REVEAL OVERLAY - Valorant Tarzı Çizgiler
   ============================================ */
.card-reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f1e1d 0%, #252423 50%, #1a1918 100%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow:
        0 -4px 0 #575453,
        0 4px 0 #575453,
        -4px 0 0 #302d2c,
        4px 0 0 #302d2c;
}

/* Valorant Tarzı Çizgi Detayları */
.card-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-lines .line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.3), transparent);
}

.card-lines .line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: lineScan 3s ease-in-out infinite;
}

.card-lines .line-2 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: lineScan 3s ease-in-out infinite 0.5s;
}

.card-lines .line-3 {
    top: 80%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: lineScan 3s ease-in-out infinite 1s;
}

.card-lines .line-4 {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(250, 204, 21, 0.2), transparent);
    animation: lineVertical 4s ease-in-out infinite;
}

@keyframes lineScan {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes lineVertical {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

.line-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(250, 204, 21, 0.4);
}

.corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.card-reveal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.08), transparent);
    animation: overlayShimmer 3s infinite;
}

@keyframes overlayShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.gaming-product-card.revealed .card-reveal-overlay {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.reveal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    z-index: 1;
}

.reveal-content i {
    font-size: 2.5rem;
    color: #facc15;
    filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.5));
    animation: lockPulse 1.5s ease-in-out infinite;
}

@keyframes lockPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.reveal-content span {
    color: #9ca3af;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   PRODUCT CARD INNER - Market ile Aynı Stiller
   ============================================ */
.gaming-product-card .product-card-top {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gaming-product-card .product-discount-badge-top {
    background: #dc2626;
    color: #ffffff;
    padding: 5px 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b;
    position: relative;
    overflow: hidden;
}

.gaming-product-card .product-discount-badge-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.gaming-product-card .product-card-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

.gaming-product-card .product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.gaming-product-card .product-card-content {
    padding: 16px;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.gaming-product-card .product-card-name {
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gaming-product-card .product-price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 55px;
    justify-content: center;
}

.gaming-product-card .product-old-price {
    color: #dc2626;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: line-through;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: -10px;
}

.gaming-product-card .product-current-price {
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.gaming-product-card .product-buy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    position: relative;
    width: 100%;
}

/* Stok Badge - Butonun üstünde */
.gaming-product-card .product-stock-badge {
    background: #dc2626;
    color: #ffffff;
    padding: 5px 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    border-radius: 1px;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.gaming-product-card .product-stock-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.gaming-product-card .product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #facc15;
    color: #92400e;
    padding: 14px 16px;
    border: none;
    border-radius: 1px;
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.gaming-product-card .product-buy-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.gaming-product-card .product-buy-btn:active {
    filter: brightness(0.9);
    transform: translateY(0px);
    box-shadow:
        -2px 0 0 #fcd950,
        0 -2px 0 #fcd950,
        2px 0 0 #995617,
        0 2px 0 #995617;
}

.gaming-product-card .product-buy-btn i {
    font-size: 1rem;
}

/* ============================================
   FOOTER - Sayfa yapısı için
   ============================================ */
.gaming-night-page .footer {
    flex-shrink: 0;
    margin-top: auto;
}

/* ============================================
   USER PROFILE DROPDOWN - Tıklamalı Menü Stilleri
   Bu stiller mevcut style.css'e eklenmelidir
   ============================================ */

/* Hover efektini devre dışı bırak */
.user-profile:hover .user-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
}

/* Sadece active class'ı ile aç */
.user-profile.active .user-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Ok işareti dönsün */
.user-dropdown-arrow i {
    transition: transform 0.2s ease;
}

.user-profile.active .user-dropdown-arrow i {
    transform: rotate(180deg);
}

/* Cursor pointer ekle */
.user-profile {
    cursor: pointer;
    user-select: none;
}

/* ============================================
   LANGUAGE MODAL - Dil Seçme Modalı Stilleri
   ============================================ */

.language-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

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

.language-modal {
    background: #302d2c;
    border-radius: 1px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow:
        0 4px 0 #646160,
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.language-modal-overlay.active .language-modal {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.language-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #252322;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.language-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.language-modal-title i {
    color: var(--craflord-yellow);
    font-size: 1.3rem;
}

.language-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-modal-close:hover {
    background: #dc2626;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Modal Body */
.language-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

/* Language Grid */
.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.language-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #1d1b1a;
    border: 2px solid transparent;
    border-radius: 1px;
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.language-grid-item:hover {
    background: #252322;
    border-color: rgba(250, 204, 21, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.language-grid-item.active {
    background: rgba(250, 204, 21, 0.15);
    border-color: var(--craflord-yellow);
    color: var(--craflord-yellow);
}

.language-grid-item .flag-icon {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scrollbar */
.language-modal-body::-webkit-scrollbar {
    width: 6px;
}

.language-modal-body::-webkit-scrollbar-track {
    background: #252322;
    border-radius: 3px;
}

.language-modal-body::-webkit-scrollbar-thumb {
    background: #4a4644;
    border-radius: 3px;
}

.language-modal-body::-webkit-scrollbar-thumb:hover {
    background: #5a5856;
}


/* ============================================
   PRODUCT DETAIL PAGE - Ürün Detay Sayfası
   ============================================ */

.product-detail-section {
    padding: 40px 0 80px 0;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
    align-items: start;
}

/* ============================================
   SOL TARAF - ÜRÜN GÖRSELİ
   ============================================ */
.product-detail-image-area {
    background: #302d2c;
    border-radius: 1px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 0 #646160;
}

.product-detail-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.product-detail-badge .discount-badge {
    display: block;
    background: #dc2626;
    color: #ffffff;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b;
    position: relative;
    overflow: hidden;
}

.product-detail-badge .discount-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    padding-top: 30px;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.product-detail-image img:hover {
    transform: scale(1.05);
}

/* ============================================
   SAĞ TARAF - ÜRÜN BİLGİLERİ
   ============================================ */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.product-detail-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(250, 204, 21, 0.15);
    border: 2px solid var(--craflord-yellow);
    border-radius: 1px;
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.product-detail-stock i {
    font-size: 0.9rem;
}

/* ============================================
   META BİLGİLER
   ============================================ */
.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.meta-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   ÜRÜN AÇIKLAMASI
   ============================================ */
.product-detail-description {
    background: #252322;
    border-radius: 1px;
    padding: 24px;
}

.description-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.product-detail-description p {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

/* ============================================
   FİYAT VE BUTON - AÇIKLAMA İÇİNDE
   ============================================ */
.product-detail-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-box .old-price {
    color: #dc2626;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-box .current-price {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sepete Ekle Butonu */
.product-detail-description .add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--craflord-yellow);
    color: #92400e;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.product-detail-description .add-to-cart-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.product-detail-description .add-to-cart-btn:active {
    transform: translateY(0);
}

/* ============================================
   STICKY FOOTER PAGE - Footer Aşağıda Sabit
   İçerik az olduğunda footer aşağıda kalır
   ============================================ */

.sticky-footer-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sticky-footer-page .header {
    flex-shrink: 0;
}

.sticky-footer-page .store-breadcrumb {
    flex-shrink: 0;
}

.sticky-footer-page .gift-section,
.sticky-footer-page .chest-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 80px;
}

.sticky-footer-page .footer {
    flex-shrink: 0;
    margin-top: auto;
}

/* Hediye Geçmişi Boş Durum */
.gift-history-empty {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    padding: 14px 18px;
}

.gift-history-empty span {
    color: #ef4444;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   APPLICATIONS SHOW PAGE - Başvuru Görüntüleme
   applications.css dosyasına eklenecek
   ============================================ */

/* Application Show Header */
.application-show-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.application-show-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0;
}

/* Durum Badge'leri */
.application-status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Onay Bekliyor - Turuncu */
.application-status-badge.pending {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
}

/* Onaylandı - Yeşil */
.application-status-badge.approved {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

/* Reddedildi - Kırmızı */
.application-status-badge.rejected {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Application Show Card */
.application-show-card {
    background: #302d2c;
    border-radius: 2px;
    box-shadow: 0 4px 0 #646160;
    padding: 24px;
}

/* Soru-Cevap Item */
.application-answer-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.application-answer-item:first-child {
    padding-top: 0;
}

.application-answer-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.answer-question {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 6px 0;
}

.answer-text {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sticky Footer için applications-section */
.sticky-footer-page .applications-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 80px;
}

.sticky-footer-page .applications-section .container {
    width: 100%;
}

/* ============================================
   ERROR & MAINTENANCE PAGES
   404 ve Bakım Modu Sayfaları
   style.css'e eklenecek
   ============================================ */

body.error-page,
body.maintenance-page {
    font-family: var(--font-primary);
    background: #171615;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

/* GIF Arkaplan - ::before ile */
body.error-page::before,
body.maintenance-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/gifbanner.gif') center center / cover;
    opacity: 0.15;
    z-index: 0;
}

/* ============================================
   404 PAGE
   ============================================ */

.error-wrapper {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.error-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.error-logo img {
    max-width: 100%;
    height: auto;
}

.error-box {
    width: 100%;
    background: #302d2c;
    border-radius: 1px;
    padding: 32px;
    box-shadow: 0 4px 0 #646160;
    text-align: center;
}

.error-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.error-subtitle {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.error-btn.primary {
    background: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.error-btn.primary:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

.error-btn.secondary {
    background: #dc2626;
    color: #ffffff;
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b,
        0 4px 0 #991b1b;
}

.error-btn.secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #f87171,
        0 -4px 0 #f87171,
        4px 0 0 #991b1b,
        0 4px 0 #991b1b,
        0 0 20px rgba(220, 38, 38, 0.4);
}

/* ============================================
   MAINTENANCE PAGE
   ============================================ */

.maintenance-wrapper {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.maintenance-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.maintenance-logo img {
    max-width: 100%;
    height: auto;
}

.maintenance-box {
    width: 100%;
    background: #302d2c;
    border-radius: 1px;
    padding: 32px;
    box-shadow: 0 4px 0 #646160;
    text-align: center;
}

.maintenance-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.maintenance-subtitle {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.maintenance-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.maintenance-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 1px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.2s ease;
    width: 100%;
}

.maintenance-btn.discord {
    background: #5865F2;
    color: #ffffff;
    box-shadow:
        -4px 0 0 #7b85f5,
        0 -4px 0 #7b85f5,
        4px 0 0 #4a55ce,
        0 4px 0 #4a55ce;
}

.maintenance-btn.discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #7b85f5,
        0 -4px 0 #7b85f5,
        4px 0 0 #3b42a1,
        0 4px 0 #3b42a1,
        0 8px 20px rgba(88, 101, 242, 0.4);
}

.maintenance-btn.secondary {
    background: #393635;
    color: #a8a29e;
    box-shadow:
        -4px 0 0 #454140,
        0 -4px 0 #454140,
        4px 0 0 #2a2827,
        0 4px 0 #2a2827;
}

.maintenance-btn.secondary:hover {
    background: #454140;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #575250,
        0 -4px 0 #575250,
        4px 0 0 #2a2827,
        0 4px 0 #2a2827,
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.maintenance-btn i {
    font-size: 1.1rem;
}

/* ============================================
   GAMES PAGE - Oyunlar Sayfası
   style.css'e eklenecek
   ============================================ */

.games-page {
    background: #171615;
    min-height: 100vh;
}

.games-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* Games Section */
.games-section {
    padding: 40px 0 80px 0;
}

.games-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
}

/* Sol Taraf - İçerik */
.games-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.games-page-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
}

/* İçerik Box */
.games-box {
    background: #302d2c;
    border-radius: 1px;
    padding: 28px;
    box-shadow: 0 4px 0 #646160;
}

.games-box-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 16px 0;
}

.games-box p {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.games-box p:last-child {
    margin-bottom: 0;
}

.games-box h3 {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    margin: 24px 0 12px 0;
}

.games-box ul {
    margin: 0 0 16px 0;
    padding: 0;
    list-style: none;
}

.games-box ul li {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.games-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--craflord-yellow);
    border-radius: 50%;
}

/* Sağ Taraf - Sidebar */
.games-sidebar {
    position: sticky;
    top: 24px;
}

.games-sidebar-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 0 16px 0;
}

/* Oyun Listesi */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #302d2c;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 4px 0 #646160;
}

.games-list-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.games-list-item:last-child {
    border-bottom: none;
}

.games-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.games-list-item.active {
    background: rgba(250, 204, 21, 0.1);
    color: var(--craflord-yellow);
    font-weight: 600;
    border-left: 3px solid var(--craflord-yellow);
}

/* ============================================
   GIFT REDEEM PAGE - Yeniden Tasarlanmış Stiller
   CraftLord temasına uygun
   ============================================ */

.gift-redeem-page {
    background: #171615;
    min-height: 100vh;
}

.gift-redeem-page .header {
    position: relative;
    background: #1d1b1a;
    border-bottom: 3px solid #302d2c;
}

/* Gift Section */
.gift-section {
    padding: 40px 0 80px 0;
}

.gift-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    align-items: start;
}

/* Gift Card - Ana Kart */
.gift-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 28px;
    box-shadow: 0 4px 0 #646160;
}

.gift-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 24px 0;
}

.gift-card-title i {
    color: var(--craflord-yellow);
    font-size: 1.1rem;
}

/* ============================================
   GIFT PRODUCT DISPLAY - Ürün Gösterimi
   ============================================ */
.gift-product-display {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-product-image-box {
    background: #252322;
    border-radius: 1px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-product-image-box img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.gift-product-image-box:hover img {
    transform: scale(1.05);
}

.gift-product-details-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gift-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gift-detail-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 100px;
}

.gift-detail-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.gift-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--craflord-green) !important;
    font-weight: 700 !important;
}

.gift-free-badge i {
    font-size: 0.85rem;
}

/* ============================================
   GIFT CREDIT DISPLAY - Kredi Gösterimi
   ============================================ */
.gift-credit-display {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-credit-icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
    border: 2px solid rgba(250, 204, 21, 0.2);
    border-radius: 1px;
    padding: 24px;
}

.gift-credit-icon {
    width: 70px;
    height: 70px;
    background: var(--craflord-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.3);
}

.gift-credit-icon i {
    font-size: 2rem;
    color: #92400e;
}

.gift-credit-amount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gift-credit-amount .credit-value {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gift-credit-amount .credit-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-credit-message {
    background: #252322;
    border-radius: 4px;
    padding: 16px 20px;
}

.gift-credit-message p {
    color: #d1d5db;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.gift-credit-message strong {
    color: var(--craflord-yellow);
    font-weight: 700;
}

/* ============================================
   GIFT ACTION BOX - Buton Alanı
   ============================================ */
.gift-action-box {
    display: flex;
    justify-content: flex-end;
}

.gift-claim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--craflord-green);
    color: #ffffff;
    border: none;
    border-radius: 1px;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E;
}

.gift-claim-btn:hover {
    filter: brightness(1.1) saturate(1.1);
    transform: translateY(-2px);
    box-shadow:
        -4px 0 0 #33D470,
        0 -4px 0 #33D470,
        4px 0 0 #007A2E,
        0 4px 0 #007A2E,
        0 0 20px rgba(0, 200, 81, 0.4);
}

.gift-claim-btn:active {
    transform: translateY(0);
}

.gift-claim-btn.credit-btn {
    background: var(--craflord-yellow);
    color: #92400e;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4),
        1px 1px 0 rgba(255, 255, 255, 0.4);
}

.gift-claim-btn.credit-btn:hover {
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617,
        0 0 20px rgba(250, 204, 21, 0.4);
}

/* ============================================
   GIFT SIDEBAR - Sağ Taraf Kartları
   ============================================ */
.gift-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 24px;
}

/* Info Card */
.gift-info-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 0 #646160;
    border-left: 4px solid #0ea5e9;
}

.gift-info-icon {
    width: 40px;
    height: 40px;
    background: #0ea5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-info-icon i {
    font-size: 1rem;
    color: #ffffff;
}

.gift-info-content h4 {
    color: #0ea5e9;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 6px 0;
}

.gift-info-content p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Warning Card */
.gift-warning-card {
    background: #302d2c;
    border-radius: 1px;
    padding: 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 0 #646160;
    border-left: 4px solid #f59e0b;
}

.gift-warning-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-warning-icon i {
    font-size: 1rem;
    color: #ffffff;
}

.gift-warning-content h4 {
    color: #f59e0b;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 6px 0;
}

.gift-warning-content p {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Balance Card */
.gift-balance-card {
    background: linear-gradient(135deg, var(--craflord-yellow) 0%, #f59e0b 100%);
    border-radius: 1px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow:
        -4px 0 0 #fcd950,
        0 -4px 0 #fcd950,
        4px 0 0 #995617,
        0 4px 0 #995617;
}

.gift-balance-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-balance-icon i {
    font-size: 1.4rem;
    color: #92400e;
}

.gift-balance-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gift-balance-content .balance-label {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.8;
}

.gift-balance-content .balance-amount {
    color: #92400e;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-shadow:
        1px 0 0 rgba(255, 255, 255, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ============================================
   ORDER SHOW PAGE - Sipariş Detay Sayfası
   ============================================ */

/* Order Show Header */
.order-show-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.order-show-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-back-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252322;
    border: 2px solid #3d3a39;
    border-radius: 1px;
    color: #9ca3af;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.order-back-btn:hover {
    background: #3d3a39;
    color: #ffffff;
    transform: translateX(-4px);
}

.order-show-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
}

.order-show-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.order-show-date i {
    color: var(--craflord-yellow);
}

/* ============================================
   ORDER SUMMARY GRID - Özet Kartları
   ============================================ */
.order-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.order-summary-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #252322;
    border-radius: 4px;
    padding: 16px;
}

.order-summary-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.15);
    border-radius: 8px;
    color: var(--craflord-yellow);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.order-summary-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.order-summary-icon.highlight {
    background: var(--craflord-yellow);
    color: #92400e;
}

.order-summary-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-summary-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.8rem;
}

.order-summary-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
}

.order-summary-value.success {
    color: #22c55e;
}

.order-summary-value.highlight {
    color: var(--craflord-yellow);
    font-weight: 800;
    font-size: 1.1rem;
}

/* ============================================
   ORDER PRODUCTS LIST - Ürün Listesi
   ============================================ */
.order-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.order-product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #252322;
    border-radius: 4px;
    padding: 16px;
}

.order-product-image {
    width: 60px;
    height: 60px;
    background: #1d1b1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.order-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.order-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-product-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.order-product-category {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
}

.order-product-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-product-quantity .quantity-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
}

.order-product-quantity .quantity-value {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.order-product-price .price-value {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Order Total Row */
.order-total-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.order-total-label {
    color: #9ca3af;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
}

.order-total-value {
    color: var(--craflord-yellow);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cart-quantity-selector {
    display: inline-flex;
    align-items: center;
    background: #1d1b1a;
    /* Input arka planı */
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #ffffff;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}


.cart-qty-btn.minus {
    background: #ef4444;
    color: white;
}

.cart-qty-btn.minus:hover {
    background: #dc2626;
}


.cart-qty-btn.plus {
    background: #22c55e;
    color: white;
}

.cart-qty-btn.plus:hover {
    background: #16a34a;
}


.cart-qty-input {
    width: 40px;
    height: 32px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    pointer-events: none;
}