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

:root {
    --bg:           #0a0b0f;
    --bg2:          #0f1016;
    --card-bg:      rgba(255,255,255,0.03);
    --card-border:  rgba(255,255,255,0.07);
    --primary:      #e8304a;
    --primary-dark: #8b1a2a;
    --primary-glow: rgba(232,48,74,0.25);
    --accent:       #7c3aed;
    --text:         #f4f4f5;
    --muted:        #71717a;
    --muted2:       #52525b;
    --glass:        rgba(10,11,15,0.8);
    --input-bg:     rgba(255,255,255,0.04);
    --success:      #22c55e;
    --warning:      #f59e0b;
    --discord:      #5865F2;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Arka plan efektleri ── */
.bg-glow {
    position: fixed;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(232,48,74,0.12) 0%, transparent 65%);
    top: -300px; left: 50%;
    transform: translateX(-50%);
    z-index: 0; pointer-events: none;
}
.bg-glow2 {
    position: fixed;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 65%);
    bottom: 0; right: -100px;
    z-index: 0; pointer-events: none;
}

/* ── Navbar ── */
header {
    background: var(--glass);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    position: sticky; top: 0; z-index: 1000;
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
}
.logo {
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #e8304a, #7c3aed);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 16px; color: #fff;
    font-family: 'Outfit', sans-serif;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 1.3rem; color: var(--text);
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--primary); }
.nav-links {
    display: flex; gap: 0.3rem; list-style: none;
}
.nav-links a {
    color: var(--muted); text-decoration: none;
    font-weight: 500; font-size: 0.9rem;
    padding: 0.5rem 0.9rem; border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text); background: rgba(255,255,255,0.06);
}
.nav-buttons { display: flex; gap: 0.7rem; align-items: center; }

/* ── Butonlar ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.6rem 1.2rem; border-radius: 8px;
    font-weight: 600; font-family: 'Outfit', sans-serif;
    text-decoration: none; transition: all 0.25s;
    cursor: pointer; border: none; font-size: 0.9rem;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #c92a2a);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,48,74,0.4);
    filter: brightness(1.1);
}
.btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--card-border);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}
.btn-discord { background: var(--discord); color: #fff; width: 100%; }
.btn-discord:hover { background: #4752C4; transform: translateY(-2px); }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }

/* ── Tipografi ── */
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; color: var(--text); }
h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.1;
    background: linear-gradient(135deg, #fff 30%, #a1a1aa);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

/* ── Layout ── */
main {
    flex: 1; padding: 3rem 2rem;
    max-width: 1280px; margin: 0 auto; width: 100%;
    position: relative; z-index: 1;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { margin-bottom: 5rem; }

/* ── Hero ── */
.hero {
    text-align: center;
    padding: 7rem 1rem 5rem;
    position: relative;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(232,48,74,0.1);
    border: 1px solid rgba(232,48,74,0.25);
    border-radius: 50px; color: var(--primary);
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero p {
    color: var(--muted); font-size: 1.15rem;
    max-width: 580px; margin: 1rem auto 2.5rem;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 3rem; justify-content: center;
    margin-top: 4rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 900; color: var(--primary);
}
.hero-stat .label { color: var(--muted); font-size: 0.85rem; }

/* ── Grid ── */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

/* ── Kartlar ── */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px; padding: 1.8rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card-img {
    width: 100%; border-radius: 10px;
    aspect-ratio: 16/9; object-fit: cover;
    margin-bottom: 1.2rem;
    border: 1px solid var(--card-border);
}
.card-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: rgba(232,48,74,0.1);
    color: var(--primary); border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 800; color: var(--success);
}

/* ── Formlar ── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block; margin-bottom: 0.5rem;
    font-weight: 500; font-size: 0.9rem; color: var(--muted);
}
.form-control {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px; color: var(--text);
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,48,74,0.15);
}
.form-control:disabled { opacity: 0.5; cursor: not-allowed; }
.form-control::placeholder { color: var(--muted2); }
textarea.form-control { resize: vertical; min-height: 120px; }

.auth-wrap {
    max-width: 460px; margin: 2rem auto;
}
.auth-wrap .card { padding: 2.5rem; }
.auth-title {
    text-align: center; margin-bottom: 0.5rem;
    font-size: 1.8rem;
}
.auth-sub {
    text-align: center; color: var(--muted);
    font-size: 0.9rem; margin-bottom: 2rem;
}
.divider {
    display: flex; align-items: center;
    text-align: center; margin: 1.5rem 0;
    color: var(--muted2); font-size: 0.8rem;
}
.divider::before, .divider::after {
    content: ''; flex: 1;
    border-bottom: 1px solid var(--card-border);
}
.divider::before { margin-right: .6em; }
.divider::after  { margin-left:  .6em; }

/* ── Alert ── */
.alert {
    padding: 0.9rem 1.2rem; border-radius: 8px;
    margin-bottom: 1.2rem; font-size: 0.9rem;
    display: flex; align-items: center; gap: 0.6rem;
}
.alert-error {
    background: rgba(232,48,74,0.1);
    border: 1px solid rgba(232,48,74,0.3);
    color: #fca5a5;
}
.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #86efac;
}
.alert-info {
    background: rgba(88,101,242,0.1);
    border: 1px solid rgba(88,101,242,0.3);
    color: #a5b4fc;
}

/* ── Profil dropdown ── */
.profile-menu { position: relative; }
.profile-toggle {
    display: flex; align-items: center; gap: 0.6rem;
    cursor: pointer; padding: 0.4rem 0.8rem;
    border-radius: 8px; transition: background 0.2s;
    border: 1px solid var(--card-border);
    user-select: none;
}
.profile-toggle:hover { background: rgba(255,255,255,0.05); }
.profile-avatar {
    width: 32px; height: 32px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid var(--primary);
}
.profile-name { font-size: 0.9rem; font-weight: 600; }
.dropdown {
    display: none; position: absolute;
    top: calc(100% + 8px); right: 0;
    background: #13141a;
    border: 1px solid var(--card-border);
    border-radius: 10px; width: 210px;
    padding: 0.5rem; box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    z-index: 9999;
}
.dropdown.open { display: block; animation: fadeDown 0.2s ease; }
@keyframes fadeDown {
    from { opacity:0; transform: translateY(-8px); }
    to   { opacity:1; transform: translateY(0); }
}
.dropdown a {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.7rem 0.9rem; color: var(--text);
    text-decoration: none; border-radius: 7px;
    font-size: 0.88rem; transition: background 0.2s;
}
.dropdown a:hover { background: rgba(255,255,255,0.06); }
.dropdown a.danger { color: #f87171; }
.dropdown-divider { border-top: 1px solid var(--card-border); margin: 0.4rem 0; }

/* ── Sidebar (profil/envanter) ── */
.dashboard { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.sidebar { flex: 0 0 240px; }
.sidebar-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    border: 3px solid var(--primary); object-fit: cover;
    display: block; margin: 0 auto 1rem;
}
.sidebar-name { text-align: center; font-size: 1.1rem; font-weight: 700; }
.sidebar-role {
    text-align: center; color: var(--muted);
    font-size: 0.8rem; margin-bottom: 1.5rem;
}
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.7rem 1rem; border-radius: 8px;
    color: var(--muted); text-decoration: none;
    font-size: 0.9rem; transition: all 0.2s;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.sidebar-nav a.active { background: rgba(232,48,74,0.1); color: var(--primary); font-weight: 600; }
.sidebar-nav a.danger { color: #f87171; }
.sidebar-nav .divider { border-top: 1px solid var(--card-border); margin: 0.5rem 0; }
.dashboard-content { flex: 1; min-width: 0; }

/* ── Mağaza ── */
.store-header { text-align: center; padding: 3rem 0 2rem; }
.store-filters {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    justify-content: center; margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.4rem 1rem; border-radius: 50px;
    border: 1px solid var(--card-border);
    background: transparent; color: var(--muted);
    cursor: pointer; font-size: 0.85rem; font-weight: 500;
    transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
    background: rgba(232,48,74,0.1);
    border-color: rgba(232,48,74,0.3);
    color: var(--primary);
}

/* ── Ürün detay ── */
.product-detail { display: grid; gap: 3rem; align-items: start; }
.product-img {
    width: 100%; border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; }
.meta-item {
    display: flex; align-items: center; gap: 0.4rem;
    color: var(--muted); font-size: 0.85rem;
}
.meta-item i { color: var(--primary); }

/* ── Admin ── */
.admin-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 2rem;
    padding-bottom: 1rem; border-bottom: 1px solid var(--card-border);
}
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 1.5rem;
}
.stat-card .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 900; color: var(--primary);
}
.stat-card .stat-label { color: var(--muted); font-size: 0.85rem; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--card-border); font-size: 0.9rem; }
th { color: var(--muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
tr:hover td { background: rgba(255,255,255,0.02); }
.badge {
    display: inline-block; padding: 0.2rem 0.6rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.badge-green { background: rgba(34,197,94,0.1); color: #86efac; }
.badge-red   { background: rgba(232,48,74,0.1);  color: #fca5a5; }
.badge-blue  { background: rgba(88,101,242,0.1); color: #a5b4fc; }

/* ── Footer ── */
footer {
    border-top: 1px solid var(--card-border);
    padding: 3rem 2rem; margin-top: auto;
    position: relative; z-index: 1;
}
.footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.8rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted2); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
    max-width: 1280px; margin: 2rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid var(--card-border);
    display: flex; justify-content: space-between; align-items: center;
    color: var(--muted2); font-size: 0.85rem; flex-wrap: wrap; gap: 1rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--card-bg); border: 1px solid var(--card-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); text-decoration: none; transition: all 0.2s;
}
.social-links a:hover { background: rgba(232,48,74,0.1); color: var(--primary); border-color: rgba(232,48,74,0.3); }

/* ── 404 ── */
.page-404 { text-align: center; padding: 8rem 2rem; }
.page-404 .code { font-size: 8rem; font-weight: 900; color: var(--primary); opacity: 0.3; line-height: 1; font-family: 'Outfit', sans-serif; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .dashboard { flex-direction: column; }
    .sidebar { flex: none; width: 100%; }
    main { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
}

/* ── Custom Select ── */
.custom-select-wrap {
    position: relative;
    user-select: none;
}
.custom-select-wrap select {
    display: none; /* native select'i gizle */
}
.cs-selected {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.cs-selected::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--muted);
    transition: transform 0.2s;
    pointer-events: none;
}
.custom-select-wrap.open .cs-selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,48,74,0.15);
}
.custom-select-wrap.open .cs-selected::after {
    transform: translateY(-50%) rotate(180deg);
}
.cs-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #13141a;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    animation: fadeDown 0.15s ease;
}
.custom-select-wrap.open .cs-options { display: block; }
.cs-option {
    padding: 0.75rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cs-option:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text);
}
.cs-option.selected {
    background: rgba(232,48,74,0.1);
    color: var(--primary);
    font-weight: 600;
}
.cs-option + .cs-option {
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── Site Banner ── */
.site-banner {
    width: 100%; padding: 0.7rem 2rem;
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap; position: relative; z-index: 999;
    font-size: 0.9rem;
}
.banner-img { height: 32px; width: auto; object-fit: contain; border-radius: 4px; }
.banner-content { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
.banner-content strong { color: #fff; font-weight: 700; }
.banner-content span { color: rgba(255,255,255,0.85); }
.banner-btn {
    background: rgba(255,255,255,0.2); color: #fff;
    padding: 0.3rem 0.9rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.82rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s;
}
.banner-btn:hover { background: rgba(255,255,255,0.35); }

/* ── Yuvarlak Logo ── */
.logo-img-round {
    width: 36px; height: 36px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(232,48,74,0.4);
}

/* ── WhatsApp Float ── */
.wp-float {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9998; transition: transform 0.2s, box-shadow 0.2s;
}
.wp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ── Lisans kartı ── */
.license-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 1.2rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
}
.license-key {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem; color: var(--primary);
    background: rgba(232,48,74,0.08);
    padding: 0.3rem 0.8rem; border-radius: 6px;
    letter-spacing: 1px;
}

/* ── Yorum kartı ── */
.review-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 1.5rem;
}
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-author {
    display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem;
}
.review-author img {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--card-border);
}
.review-author-name { font-weight: 600; font-size: 0.9rem; }
.review-product { color: var(--muted); font-size: 0.78rem; }

/* ── Rol badge ── */
.role-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.15rem 0.6rem; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Referans/müşteri section ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ── Discord Widget ── */
.discord-widget-wrap {
    border-radius: 12px; overflow: hidden;
    border: 1px solid var(--card-border);
}

/* ══════════════════════════════════════
   ANASAYFA — Nourse tarzı
══════════════════════════════════════ */

/* Hero */
.hero-nourse {
    padding: 5rem 0 3rem;
    position: relative;
}
.hero-nourse-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}
.hero-nourse-text { flex: 1; min-width: 280px; }
.hero-nourse-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 1rem 0;
    background: linear-gradient(135deg, #fff 40%, #a1a1aa);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-nourse-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero-nourse-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-nourse-img {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-glow-circle {
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(232,48,74,0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Section genel */
.home-section { padding: 4rem 0; border-top: 1px solid var(--card-border); }
.section-label { color: var(--primary); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 0; }

/* Feature cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(232,48,74,0.3); transform: translateY(-3px); }

/* Ürün grid — Nourse tarzı küçük kartlar */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
}
.product-card-nourse {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card-nourse:hover { transform: translateY(-4px); border-color: rgba(232,48,74,0.3); }
.product-card-img { aspect-ratio: 4/3; overflow: hidden; background: #13141a; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card-nourse:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 0.9rem; flex: 1; display: flex; flex-direction: column; }
.product-card-body h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; line-height: 1.3; }
.product-card-price { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--primary); }

/* Referanslar */
.refs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.8rem;
}
.ref-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.75rem;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.ref-item:hover { border-color: rgba(232,48,74,0.3); transform: translateY(-2px); color: var(--text); }
.ref-item img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; }
.ref-placeholder {
    width: 52px; height: 52px;
    background: rgba(232,48,74,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--primary); font-size: 1rem;
}

/* Yorumlar slider */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}
.review-card-nourse {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Discord section */
.discord-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}
.discord-section-text { flex: 1; min-width: 280px; }

/* İstatistikler */
.stats-section { border-top: 1px solid var(--card-border); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-item .stat-label { color: var(--muted); font-size: 0.88rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-nourse-content { flex-direction: column; }
    .hero-nourse-img { display: none; }
    .discord-section { flex-direction: column; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
