﻿/* ========================================= */
/* BTG SOFT - ROYAL BLUE STYLE (IMAGE MATCH) */
/* ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

@font-face {
    font-family: 'BankGothic';
    src: url('DEMO-bgt65.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* 1. GENEL SIFIRLAMA VE DEĞİŞKENLER */
:root {
    /* ANA RENK: Resimdeki Parlak Mavi (#3B82F6) */
    --btg-blue: #3B82F6; 
    /* PARLAMA EFEKTI: Aynı mavinin şeffaf hali */
    --btg-blue-glow: rgba(59, 130, 246, 0.8);
    --btg-dark: #050505;
    --glass-bg: rgba(15, 15, 15, 0.95);
    --active-link-bg: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

/* --- ARKA PLAN --- */
body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--btg-dark);
    color: white;
    overflow-x: hidden;
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ================================================= */
/* 2. HEADER                                         */
/* ================================================= */

header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

.nav-container {
    pointer-events: auto;
    width: auto;
    min-width: 850px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid rgba(59, 130, 246, 0.3); /* Mavi Kenarlık */
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mini-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--btg-blue-glow));
}

/* BTGSOFT YAZISI */
.brand-text-fix {
    font-family: 'BankGothic', sans-serif; /* Logo fontu genelde özel kalır, istersen Montserrat yapabiliriz */
    font-size: 1.6rem;
    color: var(--btg-blue);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--btg-blue-glow);
}

.brand-separator {
    height: 30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 2px;
}

.mini-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* MENÜ LİNKLERİ - MONTSERRAT EKLENDİ */
.nav-link, .action-btn { 
    font-family: 'Montserrat', sans-serif; /* YENİ: Montserrat Fontu */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #b0b0b0;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600; /* YENİ: SemiBold (600) yapıldı, daha modern durur */
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    height: 44px;
}

.nav-link:hover, .action-btn:hover {
    color: #fff;
    background: rgba(59, 130, 246, 0.15); /* Hafif mavi arka plan */
}

.nav-link.active {
    color: var(--btg-blue);
    background: var(--active-link-bg);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    font-weight: 700; /* Aktif link daha kalın (Bold) */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.icon-btn:hover {
    color: var(--btg-blue);
    background-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

#cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--btg-blue);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif; /* Sepet sayısı da Montserrat */
    font-weight: 900;
}

/* HESABIM BUTONU */
#navLoginBtn {
    font-family: 'Montserrat', sans-serif; /* YENİ: Buton fontu */
    font-weight: 700; /* Bold */
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    padding-left: 25px;
    padding-right: 25px;
}

#navLoginBtn:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
}

@media (max-width: 1100px) {
    .nav-container { min-width: 90%; padding: 0 15px; }
    .mini-nav { display: none; }
    .brand-separator { display: none; }
}

/* ================================================= */
/* 3. HERO & BANNER                                  */
/* ================================================= */
.main-banner {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9)), url('banner.png'); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
}

.content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Banner SATIN AL Butonu */
.btn-white {
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-white:hover {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.slider-line {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.slider-active {
    width: 50px;
    height: 100%;
    background: var(--btg-blue);
    position: absolute;
    left: 40%;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--btg-blue);
}

/* ================================================= */
/* 4. OYUNLAR (GAMES SECTION)                        */
/* ================================================= */
.games-section {
    background-color: transparent;
    padding: 80px 0;
    position: relative;
    z-index: 20;
    border-top: 1px solid #222;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--btg-blue);
    text-shadow: 0 0 20px var(--btg-blue-glow);
}

.section-subtitle {
    color: #888;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: all 0.4s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--btg-blue);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.4s;
}

.game-card:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, #000, transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-overlay h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* İNCELE BUTONU */
.game-btn {
    padding: 10px 20px;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: none; 
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.game-btn:hover {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* ================================================= */
/* 5. FEATURES & FOOTER                              */
/* ================================================= */
.bottom-features {
    background: url('bottom.png') no-repeat center center;
    background-size: cover;
    height: 480px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
}

.bottom-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.ghost-logo {
    position: absolute;
    top: 10px;
    left: -4%;
    height: 400px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transform: rotate(-10deg);
    z-index: 1;
    pointer-events: none;
}

.char-box {
    position: absolute;
    bottom: 0;
    left: 1%;
    width: 40%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.char-box img {
    height: 420px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3));
    display: block;
}

.text-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 50%;
    text-align: left;
    z-index: 10;
    padding-left: 0;
}

.small-icon {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.text-box h3 {
    font-size: 1rem;
    color: var(--btg-blue);
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.text-box h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.text-box p {
    color: #eeeeee;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 550px;
}

footer {
    background: #050505;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 50;
}

.footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}

.dev-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.dev-dc {
    font-size: 0.65rem;
    color: #444;
    font-family: monospace;
    transition: 0.3s;
}

.footer-credits:hover .dev-name {
    color: var(--btg-blue);
}

.footer-credits:hover .dev-dc {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-credits {
        align-items: center;
    }
}

/* ================================================= */
/* 6. MODALS (LOGIN & CART)                          */
/* ================================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.modal-content.raze-style {
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.3); /* Mavi Kenarlık */
    padding: 35px 40px;
    border-radius: 20px;
    width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-top-link {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.back-home-link {
    color: #aaa;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.back-home-link:hover {
    color: #fff;
}

.raze-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--btg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff; 
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.raze-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.raze-subtitle {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.raze-subtitle::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--btg-blue);
    margin: 5px auto 0;
    border-radius: 2px;
}

.raze-input-group {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.raze-input {
    width: 100%;
    padding: 14px 15px;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.raze-input:focus {
    border-color: var(--btg-blue);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--btg-blue);
    cursor: pointer;
}

.raze-options {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #ccc;
    text-align: left;
}

.raze-checkbox {
    accent-color: var(--btg-blue);
    width: 16px;
    height: 16px;
}

.fake-captcha {
    width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 1px solid #d3d3d3;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 0.9rem;
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    cursor: pointer;
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.6rem;
    color: #555;
}

.captcha-logo img {
    width: 28px;
    opacity: 0.7;
}

/* Modal Butonları */
.raze-btn, .checkout-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.raze-btn:hover, .checkout-btn:hover {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-3px);
}

.raze-footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

.raze-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.raze-footer a:hover {
    text-decoration: underline;
    color: var(--btg-blue);
}

/* SEPET STİLİ */
.modal-content.cart-style {
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.3);
    width: 500px;
    position: relative;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 30px;
    white-space: normal;
}

.modal-content.cart-style h2 {
    font-family: 'BankGothic', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.cart-items-container {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
    text-align: left;
}

.cart-items-container::-webkit-scrollbar {
    width: 5px;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.cart-item-info span {
    color: #888;
    font-size: 0.85rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--btg-blue);
    font-size: 1.1rem;
    margin-right: 15px;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.remove-btn:hover {
    color: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 20px 0 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-icons {
    margin: 10px 0 25px 0;
    font-size: 2rem;
    color: #555;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--btg-blue);
}

/* ================================================= */
/* 7. OYUN DETAY VE DİĞER SAYFALAR                   */
/* ================================================= */
.game-hero {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000000, transparent);
}

.game-title-box {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 50px;
}

.game-title-box h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px var(--btg-blue-glow);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.game-content-section {
    padding: 60px 0;
    background-color: transparent;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right-column {
    position: sticky;
    top: 120px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(8px);
    padding: 30px;
    border: 1px solid #333;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.media-slider-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    background: #000;
    aspect-ratio: 16 / 9;
}

.media-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.media-slide.active {
    display: block;
    animation: fadeEffect 0.5s;
}

.media-slide img, .media-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeEffect {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

.slider-prev, .slider-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
    z-index: 10;
}

.slider-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--btg-blue);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--btg-blue);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    background: rgba(20, 20, 20, 0.9);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    font-size: 0.95rem;
    color: #aaa;
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-card li i {
    color: var(--btg-blue);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ================================================= */
/* 8. DISCORD PANELİ (SOL)                           */
/* ================================================= */
.discord-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    height: 100%;
    background: #101010;
    border-right: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.discord-sidebar.active {
    left: 0;
}

.discord-header {
    padding: 25px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discord-header h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-header h3 i { color: #5865F2; font-size: 1.4rem; }

.close-discord {
    background: none;
    border: none;
    color: #666;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 0;
}

.close-discord:hover { color: #fff; transform: rotate(90deg); }

.discord-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.discord-widget-container {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
}

.discord-invite-area {
    padding: 20px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.invite-text {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.discord-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background-color: #5865F2; /* Discord Marka Rengi - Kalabilir */
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-join-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(3px);
}

.sidebar-overlay.active { display: block; }

/* ========================================= */
/* 10. YENİ SİPARİŞ KUTUSU                   */
/* ========================================= */
.order-box-container {
    background: #0b1120;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 350px;
    width: 100%;
}

.variant-option {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
}

.variant-option:hover {
    border-color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
}

.variant-option.selected {
    background: #1e3a8a;
    border-color: #3B82F6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.variant-title {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    display: block;
}

.variant-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 4px;
    display: block;
    color: #93c5fd;
}

.variant-option.selected .variant-price {
    color: #fff;
}

.stock-status {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #10b981; 
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Adet Seçimi */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 140px;
    padding: 5px;
    margin: 20px 0;
}

.qty-btn {
    background: #334155;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: #3B82F6; }

.qty-input {
    background: none;
    border: none;
    color: #fff;
    width: 40px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Sepete Ekle Butonu */
.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.add-to-cart-btn:hover {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.4);
}

/* HESABIM BUTONU (Giriş Yapıldıktan Sonra) - CSS Zorlama */
button#navLoginBtn {
    background: #3B82F6 !important; 
    color: #fff !important; 
    font-weight: 800 !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6) !important;
    border: none !important;
}

button#navLoginBtn:hover {
    background: #2563EB !important;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.9) !important;
}
