/* 
 * Minecraft Sunucusu Premium Mor-Siyah Tema Tasarım Sistemi (main.css) 
 * Tasarım Referansı: AtlasOyuncu & LeaderOS Lester Tema Esintileri
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --primary-rgb: 220, 38, 38;
    --secondary: #f97316;
    --secondary-hover: #ea580c;
    --secondary-rgb: 249, 115, 22;
    
    --body-bg: #050508;
    --card-bg: rgba(14, 15, 20, 0.8);
    --card-border: rgba(220, 38, 38, 0.15);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --glow: 0 0 15px rgba(220, 38, 38, 0.25);
    --glow-md: 0 0 25px rgba(220, 38, 38, 0.4);
    
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% -20%, rgba(220, 38, 38, 0.15) 0%, rgba(5, 5, 8, 0) 60%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

/* Ortak Konteynır */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Kayan Duyuru Satırı (Header Broadcast) */
.header-broadcast {
    background: rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 105;
}

.header-broadcast-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-broadcast-label {
    background: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.header-broadcast-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.header-broadcast-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* 2. Header Yapısı */
.header {
    background: linear-gradient(rgba(7, 3, 15, 0.65), rgba(7, 3, 15, 0.95)), url('https://images.unsplash.com/photo-1607988795691-3d0147b43231?q=80&w=1200') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    border-bottom: 2px solid var(--card-border);
}

.header-top {
    background: rgba(7, 3, 15, 0.35);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

/* Akan neon lazer şerit efekti */
.header-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(220, 38, 38, 0) 0%, 
        rgba(220, 38, 38, 0) 25%, 
        rgba(220, 38, 38, 0.95) 50%, 
        rgba(220, 38, 38, 0) 75%, 
        rgba(220, 38, 38, 0) 100%
    );
    background-size: 200% 100%;
    box-shadow: 0 1px 12px rgba(220, 38, 38, 0.85);
    pointer-events: none;
    animation: border-glow-slide 4.5s linear infinite;
}

@keyframes border-glow-slide {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.header-top-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 90px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-nav-logo {
    max-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.45));
    transition: var(--transition);
}

.centered-nav-logo:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 14px rgba(239, 68, 68, 0.65));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.nav-right-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo {
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
    transition: var(--transition);
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Navigasyon Linkleri */
.header-nav {
    display: flex;
    gap: 8px;
}

.header-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.header-nav-item:hover, .header-nav-item.active {
    color: var(--text-white);
    background: rgba(139, 92, 246, 0.12);
}

.header-nav-item.active {
    box-shadow: inset 0 0 8px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

/* Giriş / Kayıt Butonları (AtlasOyuncu Tarzı) */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.header-cart:hover {
    background: var(--primary);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

.header-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px var(--secondary);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-white);
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-md);
    filter: brightness(1.1);
}

.btn-gradient-transparent {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gradient-transparent:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* 3. Dev Kahraman (Hero) Bölümü (Sadece Anasayfa) */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    align-items: center;
}

.header-content {
    max-width: 650px;
}

.header-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.header-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 15px;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.header-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.header-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.header-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.header-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 4. Profil Dropdown (Cam Efektli) */
.profile-dropdown-wrapper {
    position: relative;
    cursor: pointer;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(20, 12, 34, 0.6);
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.profile-trigger:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: var(--glow);
}

.profile-trigger img {
    width: 28px;
    height: 28px;
    image-rendering: pixelated;
    border-radius: 4px;
}

.profile-trigger-info {
    display: flex;
    flex-direction: column;
}

.profile-trigger-info .name {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-white);
}

.profile-trigger-info .role-badge {
    font-size: 0.65rem;
    padding: 0 5px;
    border-radius: 3px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    margin-top: 1px;
    width: fit-content;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 60px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    width: 230px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 110;
    animation: slideDown 0.25s ease;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-white);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 0;
}

.dropdown-item.danger {
    color: var(--secondary);
}

.dropdown-item.danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* 5. Breadcrumb */
.breadcrumb-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 15px 25px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
}

.breadcrumb-container a {
    color: var(--text-muted);
}

.breadcrumb-container a:hover {
    color: var(--primary);
}

.breadcrumb-container span.active {
    color: var(--text-white);
    font-weight: 600;
}

/* 6. ATLASOYUNCU SECTION TASARIMLARI (Anasayfa Yapısı) */

/* SECTION 1 - Mağaza Daveti Şeridi */
.section-1 {
    margin: 40px 0;
}

.section-1-box {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow);
}

.section-1-button {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-1-button:hover {
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
}

.section-1-button-play {
    background: var(--secondary);
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-1-button-play:hover {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
    transform: translateY(-2px);
}

.section-1-center {
    text-align: center;
}

.section-1-title {
    font-size: 1.35rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.section-1-description {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* SECTION 2 - Hakkımızda & Sunucu Özellikleri */
.section-2 {
    padding: 50px 0;
}

.section-2-content {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: center;
}

.section-2-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.section-2-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.section-2-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.section-2-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-2-feature {
    display: flex;
    gap: 20px;
}

.section-2-feature i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
}

.section-2-feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.section-2-feature-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.section-2-right img {
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--glow);
    margin-bottom: 25px;
}

.section-2-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.section-2-stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.section-2-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
}

.section-2-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* SECTION 3 - Haberler Sütun Düzeni */
.section-3 {
    padding: 50px 0;
}

.section-3-header {
    margin-bottom: 30px;
}

.section-3-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-3-title {
    font-size: 2.2rem;
    color: var(--text-white);
}

.section-3-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.section-3-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.section-3-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.section-3-image {
    height: 180px;
    position: relative;
}

.section-3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-3-image-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.section-3-category {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.section-3-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-3-meta-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.section-3-stats {
    display: flex;
    gap: 12px;
}

.section-3-info h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.section-3-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-3-read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-3-read-more:hover {
    color: var(--text-white);
}

/* SECTION 4 - SSS (FAQ) Accordion */
.section-4 {
    padding: 50px 0;
}

.section-4-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-4-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-4-title {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.section-4-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section-4-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-4-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.section-4-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.section-4-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.section-4-question h3 {
    font-size: 1rem;
    color: var(--text-white);
}

.section-4-toggle {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.section-4-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.section-4-item.active .section-4-answer {
    padding: 0 25px 25px 25px;
    max-height: 300px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-4-item.active .section-4-toggle {
    transform: rotate(180deg);
}

/* SECTION 7 - Discord Topluluk Alanı */
.section-7 {
    padding: 50px 0 80px 0;
}

.section-7-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-7-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.section-7-title {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.section-7-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section-7-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    align-items: center;
}

.section-7-left iframe {
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--glow);
    margin-bottom: 20px;
}

.section-7-join {
    background: #5865F2;
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.section-7-join:hover {
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.section-7-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-7-feature {
    display: flex;
    gap: 20px;
}

.section-7-feature i {
    font-size: 1.8rem;
    color: #5865F2;
    background: rgba(88, 101, 242, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.section-7-feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.section-7-feature-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 7. Mağaza & Ürün Listeleme Sayfası */
.store-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.store-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    font-weight: 700;
    color: var(--text-muted);
}

.store-menu-item:hover, .store-menu-item.active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.product-header {
    height: 180px;
    background-color: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-badge-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--secondary);
}

.product-header img {
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.2));
}

.product-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.product-old-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* 8. Sepet Mimarisi */
.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-bottom: 60px;
}

.cart-list {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px 40px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.cart-item-info h4 {
    font-size: 1rem;
    color: var(--text-white);
}

.cart-item-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.cart-price {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    font-size: 1.1rem;
    text-align: right;
}

.cart-summary-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    backdrop-filter: blur(10px);
}

.coupon-section {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 25px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.form-control {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background-color: rgba(255,255,255,0.03);
    color: var(--text-white);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: rgba(255,255,255,0.05);
    box-shadow: var(--glow);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* 9. Profil Mimarisi (Koyu Panel Düzeni) */
.profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.profile-card-left {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.profile-avatar-big {
    width: 90px;
    height: 90px;
    image-rendering: pixelated;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--glow-md);
}

.profile-left-name {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.profile-role-badge-large {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 30px;
    box-shadow: var(--glow);
}

.profile-menu-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.profile-menu-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    padding: 10px 15px 5px 15px;
}

.profile-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.profile-menu-btn:hover, .profile-menu-btn.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-white);
    font-weight: 700;
}

.profile-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.profile-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.profile-panel-title {
    font-size: 1.25rem;
    color: var(--text-white);
}

/* Bilgi Kutusu Grid */
.info-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
}

.info-item i {
    font-size: 1.6rem;
    color: var(--primary);
}

.info-item-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.info-item-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
}

/* Sandık Eşyaları Tasarımı */
.chest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.chest-item-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.chest-item-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.chest-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

/* Tablolar (Geçmiş, Destek, Cezalar) */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.custom-table th {
    text-align: left;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    color: var(--text-muted);
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.05);
}

.custom-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-main);
}

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

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge.success { background-color: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid var(--success); }
.status-badge.warning { background-color: rgba(245, 158, 11, 0.15); color: var(--warning); border: 1px solid var(--warning); }
.status-badge.danger { background-color: rgba(239, 68, 68, 0.15); color: var(--danger); border: 1px solid var(--danger); }
.status-badge.info { background-color: rgba(139, 92, 246, 0.15); color: var(--primary); border: 1px solid var(--primary); }

/* 10. Çarkıfelek Tasarımı */
.wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.wheel-container {
    position: relative;
    width: 360px;
    height: 360px;
}

.wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid var(--body-bg);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    transition: transform 4s cubic-bezier(0.15, 0.85, 0.15, 1);
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--secondary);
    z-index: 10;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.wheel-center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--body-bg);
    border: 4px solid var(--primary);
    cursor: pointer;
    box-shadow: var(--glow-md);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--text-white);
    user-select: none;
    transition: var(--transition);
}

.wheel-center-button:active {
    transform: translate(-50%, -50%) scale(0.92);
}

/* 11. Destek Mesajlaşma (Chat Arayüzü) */
.ticket-chat {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 480px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius);
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.03);
}

.ticket-msg-bubble {
    max-width: 75%;
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    position: relative;
}

.ticket-msg-bubble.user {
    align-self: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-main);
}

.ticket-msg-bubble.staff {
    align-self: flex-end;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--text-white);
}

.ticket-msg-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

/* 12. Footer */
footer {
    background: rgba(7, 3, 15, 0.6);
    border-top: 1px solid var(--card-border);
    padding: 50px 0;
    margin-top: 80px;
    font-size: 0.88rem;
    color: var(--text-muted);
    backdrop-filter: blur(15px);
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-right {
    display: flex;
    gap: 25px;
}

.footer-right a:hover {
    color: var(--primary);
}

/* Mobil ve Tablet Uyumları */
@media (max-width: 1024px) {
    .section-2-content, .section-7-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .section-3-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .store-container, .cart-grid, .profile-grid {
        grid-template-columns: 1fr;
    }
    .nav-left, .nav-right-links {
        display: none !important;
    }
    .header-top-container {
        grid-template-columns: auto 1fr;
        height: 80px;
    }
    .nav-center {
        justify-content: flex-start;
    }
    .centered-nav-logo {
        max-height: 55px;
    }
    .header-title {
        font-size: 2.2rem;
    }
    .section-1-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
    }
    .section-3-content {
        grid-template-columns: 1fr;
    }
    .info-box-grid {
        grid-template-columns: 1fr;
    }
}
