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

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: rgba(255, 255, 255, 0.07);
    --text: #e2e8f0;
    --muted: #64748b;
    --accent: #ef4444;
    --accent2: #f97316;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.page-bg {
    background: url('https://resmim.net/cdn/2026/06/06/C63vT8.png') center top / cover no-repeat fixed;
}

body.page-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.90) 0%,
            rgba(10, 10, 10, 0.82) 40%,
            rgba(10, 10, 10, 0.95) 100%);
    pointer-events: none;
    z-index: -1;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1100px;
    z-index: 100;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    background-color: rgba(0, 0, 0, 0.75);
}

.nav-inner {
    position: relative;
    padding: 0 1.75rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo — solda */
.nav-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--accent);
}

/* Linkler — tam orta */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
}

.nav-item {
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.6);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    padding: 0.325rem 0.75rem;
    font-size: 0.938rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* CTA — beyaz solid pill, siyah yazı */
.nav-cta {
    flex-shrink: 0;
    border-radius: 9999px;
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s ease;
    letter-spacing: -0.01em;
    font-size: 0.938rem;
    padding: 6px 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.78);
}

/* Sağ grup — Discord ikonu + Giriş Yap */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.55);
    transition: background-color 150ms ease, color 150ms ease;
}

.nav-discord:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Giriş yapılınca gösterilen kullanıcı profili */
.nav-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background 0.2s;
}

.nav-user:hover {
    background: rgba(255, 255, 255, 0.14);
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-username {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-chevron {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* Profil wrapper */
.nav-profile {
    position: relative;
}

/* Buton olarak nav-user */
.nav-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.nav-user:hover,
.nav-profile.open .nav-user {
    background: rgba(255, 255, 255, 0.14);
}

.nav-profile.open .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: rgba(16, 16, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}

.nav-profile.open .nav-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-dropdown-danger {
    color: rgba(248, 113, 113, 0.85);
}

.nav-dropdown-danger:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

/* ─── ADMIN BİLDİRİM ZİLİ ─── */
.notif-wrap {
    position: relative;
}
.notif-bell-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.notif-bell-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}
.notif-bell-btn.notif-shake {
    animation: notif-shake-anim 0.5s ease;
}
@keyframes notif-shake-anim {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(-14deg); }
    40%, 80% { transform: rotate(14deg); }
}
.notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 9999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    max-width: 90vw;
    max-height: 420px;
    overflow-y: auto;
    background: rgba(16, 16, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 200;
}
.notif-wrap.open .notif-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.notif-panel-head {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    padding: 6px 8px 10px;
}
.notif-empty {
    padding: 20px 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}
.notif-item {
    padding: 10px;
    border-radius: 9px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.notif-item.notif-completed {
    opacity: 0.5;
}
.notif-item-clickable {
    cursor: pointer;
    transition: background 0.15s;
}
.notif-item-clickable:hover {
    background: rgba(255, 255, 255, 0.08);
}
.notif-item-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 4px;
}
.notif-item-icon {
    display: inline-flex;
    flex-shrink: 0;
}
.notif-item-success .notif-item-title { color: #4ade80; }
.notif-item-success .notif-item-icon { color: #4ade80; }
.notif-item-error .notif-item-title { color: #f87171; }
.notif-item-error .notif-item-icon { color: #f87171; }
.notif-item-warning .notif-item-title { color: #fbbf24; }
.notif-item-warning .notif-item-icon { color: #fbbf24; }
.notif-item-info .notif-item-title { color: #60a5fa; }
.notif-item-info .notif-item-icon { color: #60a5fa; }
.notif-item-msg {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: pre-line;
    line-height: 1.5;
    margin-bottom: 8px;
}
.notif-item-date {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 4px 0;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 1.5rem 40px;
    position: relative;
    overflow: visible;
    background: url('https://resmim.net/cdn/2026/06/06/C63vT8.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.72) 40%,
            rgba(10, 10, 10, 0.92) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero>* {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-top: 9.5rem;
}

.hero-rotate {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-rotate.fade-out {
    opacity: 0;
    transform: translateY(-6px);
}

.hero-rotate.fade-in {
    opacity: 0;
    transform: translateY(6px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .grad {
    display: block;
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* ─── SLIDESHOW 3D ─── */
.hero-3d-scene {
    perspective: 1400px;
    margin: 2.5rem auto 0;
    max-width: 860px;
    width: 100%;
    position: relative;
}

.hero-3d-card {
    position: relative;
    transform: rotateY(-6deg) rotateX(4deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    border-radius: 16px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.06) inset,
        0 60px 120px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: visible;
}

.hero-3d-card:hover {
    transform: rotateY(-2deg) rotateX(1deg) translateZ(20px);
}

.slide-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── FLOATING BUBBLES ─── */
.bubble {
    position: absolute;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateZ(60px);
}

.bubble-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bubble-icon svg {
    width: 16px;
    height: 16px;
}

.bubble-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.bubble-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.bubble-text-inner {
    /* overflow removed - conflicts with preserve-3d */
}

.bubble-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
}

.bubble-label.sub {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

/* bubble positions */
.bubble-1 {
    top: 8%;
    left: -130px;
    animation: float1 4s ease-in-out infinite;
}

.bubble-2 {
    top: 40%;
    right: -140px;
    animation: float2 4.5s ease-in-out infinite 0.5s;
}

.bubble-3 {
    bottom: 10%;
    left: -130px;
    animation: float1 5s ease-in-out infinite 1s;
}

.bubble-4 {
    bottom: 25%;
    right: -140px;
    animation: float2 3.8s ease-in-out infinite 0.2s;
}

.bubble-5 {
    top: 55%;
    left: -130px;
    animation: float1 4.8s ease-in-out infinite 0.6s;
}

@keyframes float1 {

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

    50% {
        transform: translateZ(60px) translateY(-10px);
    }
}

@keyframes float2 {

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

    50% {
        transform: translateZ(60px) translateY(8px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateX(-50%) translateZ(60px) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateZ(60px) translateY(-8px);
    }
}

/* bubble colors */
.bubble-purple .bubble-icon {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
}

.bubble-green .bubble-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.bubble-yellow .bubble-icon {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.bubble-blue .bubble-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.bubble-pink .bubble-icon {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

/* ─── BTNS ─── */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-main:hover {
    background: var(--accent2);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
section {
    padding: 90px 1.5rem;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    text-align: center;
    width: 100%;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
}

/* ─── FEATURES ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
    border-color: rgba(239, 68, 68, 0.35);
    transform: translateY(-3px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feat-icon svg {
    width: 22px;
    height: 22px;
    color: #a1a1aa;
}

.feat-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feat-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── STATS ─── */
.stats-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat-item {
    padding: 2.2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat-item:last-child {
    border-right: none;
}

/* Arka plan dekoratif ikon */
.stat-item .stat-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -8px;
    width: 90px;
    height: 90px;
    opacity: 0.06;
    pointer-events: none;
    color: #fff;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.stat-num span {
    color: var(--accent);
}

.stat-lbl {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ─── STEPS ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.step {
    text-align: center;
    padding: 1rem;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.85rem;
}

.star {
    color: #f59e0b;
    font-size: 0.85rem;
}

.testi-card blockquote {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fca5a5;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ─── PRICING ─── */
.pricing-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 3.5rem;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
    border-color: rgba(239, 68, 68, 0.25);
    transform: translateY(-3px);
}

.price-card-popular {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.04);
}

.price-popular-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.price-period {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.price-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 2px 10px;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.price-old {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.price-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.price-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.5rem;
    width: 100%;
}

.price-features li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.price-features li::before {
    content: '✓';
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
}

.price-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: auto;
}

.price-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.price-btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.price-btn-accent:hover {
    background: var(--accent2);
    border-color: var(--accent2);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── CTA ─── */
.cta-section {
    text-align: center;
    padding: 100px 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 0.78rem;
    color: #2d3748;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

    .bubble-1,
    .bubble-3,
    .bubble-5 {
        left: -10px;
    }

    .bubble-2,
    .bubble-4 {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 80px 1rem 40px;
        min-height: 100svh;
    }

    .hero-3d-scene {
        margin-top: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .bubble {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   USERS PANEL — sidebar + content layout (users/ sayfaları)
───────────────────────────────────────────────────────────────── */
.ps-wrap {
    display: flex;
    gap: 1.5rem;
    padding-top: 100px;
    padding-bottom: 3rem;
    min-height: 100vh;
    width: calc(100% - 4rem);
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Sidebar */
.ps-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding: 1.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    z-index: 1;
}

.ps-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.75rem;
}

.ps-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
}

.ps-name {
    font-size: 0.83rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 155px;
}

.ps-email {
    font-size: 0.68rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 155px;
}

.ps-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #5865F2;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.ps-discord-btn:hover {
    background: #4752C4;
}

.ps-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.83rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.ps-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.ps-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
}

.ps-danger {
    color: rgba(248, 113, 113, 0.6);
}

.ps-danger:hover {
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
}

.ps-divider {
    height: 1px;
    background: var(--border);
    margin: 0.6rem 0;
}

/* Content */
.ps-content {
    flex: 1;
    padding: 2rem 0;
    min-width: 0;
}

.ps-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

/* Boş durum */
.ps-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 3.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-align: center;
}

.ps-empty svg {
    color: var(--muted);
    opacity: 0.35;
    margin-bottom: 0.25rem;
}

.ps-empty strong {
    font-size: 0.95rem;
    color: #fff;
}

.ps-empty p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

.ps-empty-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    padding: 7px 20px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.ps-empty-btn:hover {
    background: rgba(255, 255, 255, 0.82);
}

/* Lisans liste */
.lic-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    backdrop-filter: blur(5px) saturate(180%) brightness(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
}

/* Accordion item */
.lic-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lic-item:last-child {
    border-bottom: none;
}

.lic-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
}

.lic-favicon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

.lic-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.lic-name {
    font-size: 0.84rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lic-url {
    font-size: 0.72rem;
    color: var(--muted);
}

.lic-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.lic-item.open .lic-details {
    max-height: 200px;
}

.lic-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 16px 6px 44px;
    font-size: 0.75rem;
}

.lic-detail-label {
    color: var(--muted);
}

.lic-detail-value {
    color: #fff;
}

.lic-detail-value.text-red {
    color: #f87171;
}

.lic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lic-dot.on {
    background: #4ade80;
}

.lic-dot.off {
    background: #f87171;
}

.lic-dot.warning {
    background: #fbbf24;
}

.lic-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

.lic-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.lic-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.lic-expand svg {
    transition: transform 0.25s ease;
}

.lic-item.open .lic-expand svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .ps-sidebar {
        display: none;
    }

    .ps-content {
        padding: 1.25rem 0;
    }

    .ps-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   LOGIN PAGE
───────────────────────────────────────────────────────────────── */
body.page-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://resmim.net/cdn/2026/06/06/C63vT8.png') center/cover no-repeat fixed;
}

body.page-login::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.85) 50%,
        rgba(10,10,10,0.95) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.login-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    padding: 0 1.5rem;
}

.login-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    text-decoration: none;
}
.login-logo span { color: #ef4444; }

.login-card {
    width: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.login-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.login-icon svg {
    width: 26px;
    height: 26px;
    color: #ef4444;
}

.login-card h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.login-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 0;
    border-radius: 12px;
    background: #5865F2;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
}
.discord-btn svg {
    width: 20px;
    height: 20px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
}
.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

.login-info {
    font-size: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.login-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.75rem;
    font-size: 0.82rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.login-back:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────
   DASHBOARD PAGE
───────────────────────────────────────────────────────────────── */
.dash-welcome {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    margin-bottom: 1.5rem;
}
.dash-welcome-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(239,68,68,0.3);
    flex-shrink: 0;
}
.dash-welcome h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}
.dash-welcome p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Stats grid */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}
.dash-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
}
.dash-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dash-stat-info {
    display: flex;
    flex-direction: column;
}
.dash-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.dash-stat-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

/* Sections */
.dash-section {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.dash-section h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.dash-section-header h3 { margin-bottom: 0; }

/* ─── Dökümantasyon adımları ─── */
.doc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
}
.doc-step {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    scroll-margin-top: 90px;
}
.doc-step:first-child { padding-top: 0; }
.doc-step-body a {
    color: #fbbf24;
    text-decoration: underline;
    text-decoration-color: rgba(251,191,36,0.4);
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.15s, text-decoration-color 0.15s;
}
.doc-step-body a:hover {
    color: #fcd34d;
    text-decoration-color: #fcd34d;
}
.doc-step:last-child { border-bottom: none; }
.doc-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}
.doc-step-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.doc-step-body p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0 0 10px;
}
.doc-step-body p:last-child { margin-bottom: 0; }
.doc-list {
    margin: 0 0 10px;
    padding-left: 18px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}
.doc-list strong { color: #e2e8f0; }
.doc-step-body code {
    background: rgba(255,255,255,0.08);
    color: #fbbf24;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
}
.doc-callout {
    font-size: 0.78rem;
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: 10px;
    margin-top: 10px;
}
.doc-callout-warn {
    background: rgba(251,191,36,0.08);
    border: 1px solid rgba(251,191,36,0.25);
    color: #fbbf24;
}
.doc-callout-info {
    background: rgba(96,165,250,0.08);
    border: 1px solid rgba(96,165,250,0.25);
    color: #93c5fd;
    max-width: 720px;
    margin-top: 1.75rem;
}

.doc-subguide {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 14px 0;
}

.doc-subitem {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
}

.doc-subitem-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 0 0 8px;
}

.doc-subitem p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0 0 10px;
}

.doc-img {
    display: block;
    width: 100%;
    max-width: 560px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
    cursor: zoom-in;
    transition: border-color 0.15s;
}

.doc-img:hover {
    border-color: rgba(255,255,255,0.3);
}

.img-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}

.img-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.img-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.15s;
}

.img-lightbox-close:hover {
    opacity: 1;
}
.dash-view-all {
    font-size: 0.78rem;
    color: #ef4444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.dash-view-all:hover { color: #f97316; }

/* License list */
.dash-license-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dash-lic-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-lic-item:last-child { border-bottom: none; }
.dash-lic-info {
    flex: 1;
    min-width: 0;
}
.dash-lic-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-lic-domain {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
}
.dash-lic-type {
    font-size: 0.72rem;
    color: #a1a1aa;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    white-space: nowrap;
}
.dash-empty {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.82rem;
    color: #64748b;
}

/* Quick links */
.dash-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.dash-quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.dash-quick-link:hover {
    border-color: rgba(239,68,68,0.25);
    color: #fff;
    background: rgba(255,255,255,0.04);
}
.dash-quick-link svg { flex-shrink: 0; }

@media (max-width: 768px) {
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .dash-quick-links { grid-template-columns: 1fr; }
    .dash-welcome { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────
   SIDEBAR CREDIT BOX
───────────────────────────────────────────────────────────────── */
.ps-credit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    margin-bottom: 0.75rem;
}
.ps-credit-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}
.ps-credit-amount {
    font-size: 0.88rem;
    font-weight: 700;
    color: #4ade80;
}
.ps-credit-inline {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}
.ps-credit-inline span {
    color: #4ade80;
    font-weight: 700;
}

/* ─── NAV DROPDOWN CREDIT ─── */
.nav-dropdown-credit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
}
.nav-credit-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}
.nav-credit-amount {
    font-size: 0.82rem;
    font-weight: 700;
    color: #4ade80;
}

/* ─────────────────────────────────────────────────────────────
   PAYMENTS PAGE
───────────────────────────────────────────────────────────────── */
.pay-credit-section {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.pay-credit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.pay-credit-balance {
    display: flex;
    flex-direction: column;
}
.pay-credit-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2px;
}
.pay-credit-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: -0.02em;
}
.pay-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--accent);
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.pay-load-btn:hover {
    background: var(--accent2);
    transform: translateY(-1px);
}

.pay-credit-amounts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.pay-amount-chip {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pay-amount-chip:hover {
    border-color: rgba(239,68,68,0.3);
    color: #fff;
    background: rgba(239,68,68,0.08);
}
.pay-amount-chip.active {
    border-color: #ef4444;
    color: #fff;
    background: rgba(239,68,68,0.16);
}
.pay-credit-info {
    font-size: 0.75rem;
    color: #475569;
    margin: 0;
}

/* Sections */
.pay-section {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.pay-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.pay-section-title svg { color: var(--muted); }
.pay-empty {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.82rem;
    color: #64748b;
}

/* Upcoming */
.pay-upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pay-upcoming-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pay-upcoming-item:last-child { border-bottom: none; }
.pay-upcoming-item.urgent {
    background: rgba(239,68,68,0.03);
    margin: 0 -1.25rem;
    padding: 12px 1.25rem;
    border-radius: 8px;
}
.pay-upcoming-info { flex: 1; min-width: 0; }
.pay-upcoming-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}
.pay-upcoming-domain {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
}
.pay-upcoming-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.pay-upcoming-time {
    font-size: 0.75rem;
    color: #a1a1aa;
    font-weight: 500;
}
.pay-upcoming-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

/* History */
.pay-history-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pay-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pay-history-item:last-child { border-bottom: none; }
.pay-history-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pay-icon-green  { background: rgba(34,197,94,0.1); color: #4ade80; }
.pay-icon-red    { background: rgba(248,113,113,0.1); color: #f87171; }
.pay-icon-orange { background: rgba(251,191,36,0.1); color: #fbbf24; }
.pay-history-info {
    flex: 1;
    min-width: 0;
}
.pay-history-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}
.pay-history-desc {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pay-history-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.pay-history-amount {
    font-size: 0.88rem;
    font-weight: 700;
}
.pay-history-date {
    font-size: 0.68rem;
    color: #475569;
}
.text-green { color: #4ade80; }
.text-red   { color: #f87171; }

@media (max-width: 640px) {
    .pay-credit-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .pay-credit-amounts { gap: 6px; }
}

/* ─────────────────────────────────────────────────────────────
   SETTINGS PAGE
───────────────────────────────────────────────────────────────── */
.settings-card {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
}
.settings-avatar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
}
.settings-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.settings-displayname {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}
.settings-username {
    font-size: 0.78rem;
    color: #64748b;
}
.settings-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 1.25rem 0;
}
.settings-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.settings-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}
.settings-value {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}
.settings-mono {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: #a1a1aa;
}
.settings-email-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.settings-verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fbbf24;
    background: rgba(251,191,36,0.08);
    border: 1px solid rgba(251,191,36,0.2);
    padding: 3px 10px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s;
}
.settings-verify-badge:hover {
    background: rgba(251,191,36,0.15);
}

/* ─────────────────────────────────────────────────────────────
   ADMIN PANEL
───────────────────────────────────────────────────────────────── */
.admin-badge-text {
    color: #ef4444 !important;
    font-weight: 600 !important;
}
.ps-title-count {
    font-size: 0.7em;
    color: #64748b;
    font-weight: 500;
}

/* Admin Table */
.admin-table-wrap {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}
.admin-table thead {
    background: rgba(255,255,255,0.03);
}
.admin-table th {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.admin-table td {
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: #e2e8f0;
    white-space: nowrap;
}
.admin-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.admin-user-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-user-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}
.admin-mono {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #a1a1aa;
}
.admin-muted { color: #64748b; }
.admin-bold { font-weight: 600; }

/* Badges */
.admin-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    color: #a1a1aa;
}
.admin-badge-red {
    background: rgba(239,68,68,0.1);
    color: #f87171;
}
.admin-badge-green {
    background: rgba(34,197,94,0.1);
    color: #4ade80;
}
.admin-badge-orange {
    background: rgba(251,191,36,0.1);
    color: #fbbf24;
}

@media (max-width: 768px) {
    .admin-table { font-size: 0.75rem; }
    .admin-table th, .admin-table td { padding: 8px 10px; }
}

/* ─── ADMIN USER EXPANDABLE ROWS ─── */
.admin-user-list { display: flex; flex-direction: column; gap: 6px; }
.admin-user-row {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}
.admin-user-row:hover { border-color: rgba(255,255,255,0.12); }
.admin-user-main {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}
.admin-user-av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; }
.admin-user-info { flex: 1; min-width: 0; }
.admin-user-name { display: block; font-size: 0.85rem; font-weight: 600; color: #fff; }
.admin-user-sub { display: block; font-size: 0.72rem; color: #64748b; }
.admin-user-credit { font-size: 0.82rem; font-weight: 700; white-space: nowrap; }
.admin-user-chevron {
    color: #64748b;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.admin-user-row.open .admin-user-chevron { transform: rotate(180deg); }

/* Detail panel */
.admin-user-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    cursor: default;
}
.admin-user-row.open .admin-user-detail {
    max-height: 2000px;
}
.admin-user-detail > * {
    padding-left: 16px;
    padding-right: 16px;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.admin-detail-item { display: flex; flex-direction: column; }
.admin-detail-label { font-size: 0.68rem; color: #64748b; font-weight: 500; margin-bottom: 1px; }
.admin-detail-value { font-size: 0.8rem; color: #e2e8f0; font-weight: 500; }

.admin-detail-section {
    padding-top: 10px;
    padding-bottom: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.admin-detail-section h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

/* Mini license list */
.admin-detail-licenses { display: flex; flex-direction: column; gap: 4px; }
.admin-mini-lic {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    font-size: 0.78rem;
}
.admin-mini-lic-name { font-weight: 600; color: #fff; }

/* Ürün satın alım geçmişi (admin kullanıcı detayı) */
.admin-mini-product {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    font-size: 0.78rem;
}
.admin-mini-product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.admin-mini-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 0.72rem;
    color: #64748b;
}

/* Guild accordion — admin-detail-section'dan bağımsız */
.admin-guild-accordion {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.admin-guild-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 9px;
    padding: 10px 14px;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
    text-align: left;
}
.admin-guild-toggle:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.16);
}
.admin-guild-chevron { color: #94a3b8; transition: transform 0.25s; flex-shrink: 0; margin-left: 8px; }
.admin-guild-accordion.open .admin-guild-chevron { transform: rotate(180deg); }

.admin-guild-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.admin-guild-accordion.open .admin-guild-list {
    max-height: 280px;
    overflow-y: auto;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9px;
    padding: 4px 12px 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.admin-guild-accordion.open .admin-guild-list::-webkit-scrollbar { width: 4px; }
.admin-guild-accordion.open .admin-guild-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

/* Guild search input */
.admin-guild-search {
    width: 100%;
    margin: 8px 0 4px;
    padding: 6px 10px;
    font-size: 0.75rem;
    height: 30px;
    border-radius: 6px;
    box-sizing: border-box;
}
.admin-guild-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.78rem;
    color: #e2e8f0;
}
.admin-guild-row:first-child { margin-top: 8px; }
.admin-guild-row:last-child { border-bottom: none; }
.admin-guild-icon-sm {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.admin-guild-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #64748b;
    font-size: 0.65rem;
    font-weight: 700;
}
.admin-guild-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .admin-detail-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   ADMIN FORMS & INPUTS
───────────────────────────────────────────────────────────────── */
.admin-form-card {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.25rem;
}
.admin-form-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.admin-form-grid { display: flex; flex-direction: column; gap: 10px; }
.admin-form-row { display: flex; gap: 10px; align-items: flex-start; }
.admin-form-field { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-form-field label { font-size: 0.72rem; color: #64748b; font-weight: 500; }
.admin-field-hint { font-size: 0.68rem; color: #64748b; line-height: 1.4; }
.admin-input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s;
}
.admin-input:focus { border-color: rgba(239,68,68,0.4); }
.admin-input::placeholder { color: #475569; }
select.admin-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    cursor: pointer;
}
select.admin-input option {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 8px;
}
.admin-input-row { display: flex; gap: 6px; }
.admin-input-row .admin-input { flex: 1; }
.admin-btn {
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.admin-btn:hover { background: var(--accent2); }
.admin-btn-sm {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.admin-btn-sm:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.admin-btn-sm.admin-btn-danger { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.35); color: #f87171; }
.admin-btn-sm.admin-btn-danger:hover { background: rgba(239,68,68,0.22); border-color: rgba(239,68,68,0.6); }
.admin-btn-sm.admin-btn-warn { background: rgba(251,191,36,0.12); border-color: rgba(251,191,36,0.35); color: #fbbf24; }
.admin-btn-sm.admin-btn-warn:hover { background: rgba(251,191,36,0.22); border-color: rgba(251,191,36,0.6); }
.admin-btn-sm.admin-btn-green { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.35); color: #4ade80; }
.admin-btn-sm.admin-btn-green:hover { background: rgba(34,197,94,0.22); border-color: rgba(34,197,94,0.6); }

/* Kupon icon butonları */
.coup-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #94a3b8;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
    vertical-align: middle;
    margin-left: 4px;
}
.coup-icon-btn:first-child { margin-left: 0; }
.coup-icon-btn:hover { background: rgba(255,255,255,0.09); color: #fff; }
.coup-btn-pause { color: #fbbf24; border-color: rgba(251,191,36,0.25); }
.coup-btn-pause:hover { background: rgba(251,191,36,0.15); border-color: rgba(251,191,36,0.5); }
.coup-btn-play  { color: #4ade80; border-color: rgba(34,197,94,0.25); }
.coup-btn-play:hover  { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.5); }
.coup-btn-del   { color: #f87171; border-color: rgba(239,68,68,0.25); }
.coup-btn-del:hover   { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.5); }
.admin-msg {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
}
.admin-msg-ok  { background: rgba(34,197,94,0.1); color: #4ade80; }
.admin-msg-err { background: rgba(239,68,68,0.1); color: #f87171; }
.admin-assign-row { display: flex; gap: 6px; align-items: center; }
.admin-assign-row .admin-input { flex: 1; }

/* ─── COUPON CARDS (USER PAGE) ─── */
.coupon-list { display: flex; flex-direction: column; gap: 10px; }
.coupon-card {
    display: flex;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.coupon-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(239,68,68,0.06);
    border-right: 2px dashed rgba(255,255,255,0.08);
    min-width: 90px;
}
.coupon-discount, .coupon-credit {
    font-size: 1.4rem;
    font-weight: 800;
    color: #4ade80;
}
.coupon-label {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
}
.coupon-right {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.coupon-code {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.08em;
}
.coupon-status { display: flex; gap: 6px; align-items: center; }
.coupon-date { font-size: 0.68rem; color: #475569; }
.coupon-used {
    opacity: 0.5;
    filter: grayscale(0.4);
}
.coupon-action {
    display: flex;
    align-items: center;
    padding: 0 1.25rem 0 0;
}
.coupon-use-btn {
    padding: 8px 22px;
    border-radius: 8px;
    border: none;
    background: #4ade80;
    color: #0a0a0a;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.coupon-use-btn:hover {
    background: #22c55e;
    transform: translateY(-1px);
}
.coupon-use-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 640px) {
    .admin-form-row { flex-direction: column; }
    .coupon-card { flex-direction: column; }
    .coupon-left { border-right: none; border-bottom: 2px dashed rgba(255,255,255,0.08); padding: 0.75rem; }
}

/* ─── ÜRÜN KATALOĞU (kullanıcı vitrini) ─── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
}
.prod-card {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.025);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.prod-card:hover {
    border-color: rgba(239,68,68,0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.prod-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.prod-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.prod-duration {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: 9999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.prod-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.prod-card-foot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.prod-price-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.prod-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.prod-buy-btn {
    display: block;
    width: 100%;
    padding: 11px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg,#ef4444,#dc2626);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
}
.prod-buy-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239,68,68,0.3);
}

/* ─── ADMIN: ÜRÜN VARYASYONLARI ─── */
.prod-variant-box {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.prod-variant-title {
    display: block;
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 6px;
}
.prod-variant-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}
.prod-variant-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 5px 8px;
}
.prod-variant-row span:first-child { flex: 1; color: #cbd5e1; }
.prod-variant-del {
    background: none;
    border: none;
    color: #f87171;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}
.prod-variant-del:hover { color: #ef4444; }
.prod-variant-add {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 6px;
}
.prod-variant-add .admin-input { font-size: 0.78rem; padding: 6px 8px; min-width: 0; }
.prod-variant-add .admin-btn-sm { white-space: nowrap; }

/* ─── SATIN ALMA / YÖNETİM MODALLARI ─── */
.pm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}
.pm-box {
    background: rgba(16, 16, 16, 0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.pm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.pm-head h3 { margin: 0; font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.pm-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s;
}
.pm-close:hover { color: #fff; }
.pm-balance {
    font-size: 0.85rem;
    color: #94a3b8;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 1rem;
}
.pm-balance strong { color: #4ade80; }
.pm-label {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 8px;
}
.pm-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 240px;
    overflow-y: auto;
}
.pm-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.pm-option:hover { background: rgba(255,255,255,0.03); }
.pm-option:has(input:checked) {
    border-color: #ef4444;
    background: rgba(239,68,68,0.06);
}
.pm-option input { accent-color: #ef4444; }
.pm-option span { flex: 1; font-size: 0.85rem; color: #e2e8f0; }
.pm-option strong { font-size: 0.85rem; color: #4ade80; }

/* ─── LOG CHANNEL CARDS ─── */
.log-channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.log-channel-card {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.log-channel-head { display: flex; align-items: center; gap: 10px; }
.log-channel-icon { font-size: 1.5rem; }
.log-channel-name { font-size: 0.85rem; font-weight: 700; color: #fff; }
.log-channel-desc { font-size: 0.72rem; color: #64748b; }
.log-channel-meta { display: flex; align-items: center; gap: 8px; }

@media (max-width: 640px) {
    .log-channel-grid { grid-template-columns: 1fr; }
}

/* ─── LOG TIMELINE ─── */
.ps-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.log-timeline { display: flex; flex-direction: column; gap: 2px; }
.log-timeline-item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
}
.log-timeline-item:hover { background: rgba(255,255,255,0.04); }
.log-timeline-icon {
    font-size: 1.1rem;
    min-width: 28px;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}
.log-timeline-body { flex: 1; min-width: 0; }
.log-timeline-head { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.log-timeline-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
}
.log-timeline-badge {
    font-size: 0.58rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(239,68,68,0.12);
    color: #f87171;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.log-timeline-desc {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.4;
    word-break: break-word;
}
.log-timeline-time {
    font-size: 0.62rem;
    color: #475569;
    margin-top: 3px;
}

/* ─── TITLE ROW + SEARCH ─── */
.ps-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}
.ps-title-row .ps-title { margin-bottom: 0; }
.ps-title-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ps-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #64748b;
    min-width: 260px;
}
.ps-search-box .admin-input {
    border: none;
    background: none;
    padding: 0;
    font-size: 0.78rem;
    flex: 1;
    min-width: 0;
}
.ps-search-box .admin-input:focus { border-color: transparent; }

@media (max-width: 640px) {
    .ps-title-row { flex-direction: column; align-items: flex-start; }
    .ps-search-box { min-width: 100%; }
    .ps-title-actions { flex-direction: column; align-items: stretch; width: 100%; }
}

/* ─── ADMIN PRICING CARDS ─── */
.pricing-admin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pricing-admin-card {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.pricing-admin-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.pricing-admin-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.pricing-admin-form { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pricing-admin-form .admin-form-row { gap: 6px; margin-bottom: 0; }
.pricing-admin-form .admin-form-field { flex: 1; }
.pricing-admin-form .admin-form-field label { font-size: 0.68rem; }
.pricing-admin-form .admin-input { font-size: 0.78rem; padding: 6px 8px; }
.pricing-admin-calc {
    font-size: 0.68rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pricing-admin-form .admin-btn-sm { align-self: flex-start; margin-top: auto; }

@media (max-width: 1100px) { .pricing-admin-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .pricing-admin-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── LOG BOX ─── */
.log-box {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    padding: 1rem 1.25rem;
}
.log-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.log-box-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
}
.log-box-link {
    font-size: 0.7rem;
    color: #ef4444;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.15s;
}
.log-box-link:hover { opacity: 0.8; }
.log-timeline-scroll {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}

/* ─── EMAIL VERIFICATION ─── */
.settings-verify-badge.verified {
    background: rgba(74,222,128,0.12);
    color: #4ade80;
    border: 1px solid rgba(74,222,128,0.25);
    cursor: default;
}
.settings-verify-badge.unverified {
    background: rgba(251,191,36,0.12);
    color: #fbbf24;
    border: 1px solid rgba(251,191,36,0.25);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    font-size: inherit;
}
.settings-verify-badge.unverified:hover {
    background: rgba(251,191,36,0.2);
}
.settings-verify-panel {
    animation: fadeIn 0.3s ease;
}
.settings-verify-info {
    color: #94a3b8;
    font-size: 0.78rem;
    margin: 0.75rem 0;
    line-height: 1.5;
}
.settings-code-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
}
.settings-code-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #e2e8f0;
    font-size: 1.1rem;
    font-family: monospace;
    letter-spacing: 6px;
    text-align: center;
    width: 160px;
    outline: none;
    transition: border-color 0.15s;
}
.settings-code-input:focus {
    border-color: #ef4444;
}
.settings-code-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
    font-family: inherit;
}
.settings-code-btn:hover { opacity: 0.9; }
.settings-code-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.settings-verify-msg {
    font-size: 0.78rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }

/* ─── SIDEBAR EMAIL STATUS ─── */
.ps-email {
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: 100%;
    overflow: hidden;
}
.ps-email-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.ps-email-icon {
    flex-shrink: 0;
    margin-left: 2px;
}
.ps-email-unverified {
    color: #fbbf24 !important;
}
.ps-email-verified {
    color: #94a3b8 !important;
}
.ps-item.ps-locked {
    opacity: 0.45;
    pointer-events: auto;
    position: relative;
}
.ps-item.ps-locked:hover {
    opacity: 0.6;
}
.ps-lock-icon {
    margin-left: auto;
    flex-shrink: 0;
}

/* ─── TESTIMONIALS SLIDER ─── */
.testi-slider-wrap {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0 3rem;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-slider {
    display: flex;
    gap: 1.25rem;
    will-change: transform;
    width: max-content;
}
.testi-card-slide {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.2s, background 0.2s;
}
.testi-card-slide:hover {
    border-color: rgba(239,68,68,0.25);
    background: rgba(255,255,255,0.05);
}
.testi-card-slide .testi-stars {
    margin-bottom: 0.75rem;
}
.testi-card-slide .star {
    color: #fbbf24;
    font-size: 0.85rem;
}
.testi-card-slide blockquote {
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.2em;
}
.testi-card-slide .testi-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.testi-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.08);
}
.testi-avatar-fallback {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-card-slide .testi-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
}
.testi-card-slide .testi-role {
    font-size: 0.7rem;
    color: #64748b;
}
.testi-loading {
    color: #64748b;
    font-size: 0.85rem;
    padding: 2rem;
    text-align: center;
    width: 100%;
}
@media (max-width: 768px) {
    .testi-card-slide { width: 280px; padding: 1.25rem; }
}

/* Discord emoji & markdown */
.discord-emoji {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.2em;
    margin: 0 1px;
    object-fit: contain;
}
.testi-card-slide blockquote strong { color: #e2e8f0; }
.testi-card-slide blockquote code {
    background: rgba(255,255,255,0.06);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.78rem;
}
.testi-card-slide blockquote del { opacity: 0.5; }

/* ─── DISCORD WIDGET (SIDEBAR) ─── */
.ps-discord-widget {
    display: block;
    background: none;
    border: none;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
    margin: 0;
    padding: 0;
}
.ps-discord-widget:hover {
    opacity: 0.92;
}
.ps-dw-banner {
    height: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    background-size: cover;
    background-position: center;
    transition: height 0.3s ease;
}
.ps-dw-banner-loaded {
    height: 48px;
}
.ps-dw-body {
    padding: 0.7rem 0.75rem 0.5rem;
}
.ps-dw-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.ps-dw-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    flex-shrink: 0;
}
.ps-dw-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ps-dw-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: #64748b;
}
.ps-dw-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ps-dw-dot-green {
    background: #43b581;
    box-shadow: 0 0 6px rgba(67,181,129,0.5);
}
.ps-dw-stats {
    display: flex;
    gap: 0.6rem;
}
.ps-dw-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: #94a3b8;
}
.ps-dw-boost {
    color: #f47fff;
}
.ps-dw-join {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.55rem;
    margin: 0.25rem 0 0;
    background: rgba(239,68,68,0.08);
    color: #ef4444;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: background 0.15s;
}
.ps-discord-widget:hover .ps-dw-join {
    background: rgba(239,68,68,0.14);
}

/* ─── ÜRÜNLERİM (kullanıcı — satın alım listesi) ─── */
.uprod-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uprod-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.15s, background 0.15s;
}
.uprod-row:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.035);
}
.uprod-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #94a3b8;
}
.uprod-icon-web_panel { background: rgba(239,68,68,0.1); color: #ef4444; }
.uprod-icon-vds       { background: rgba(99,102,241,0.1); color: #818cf8; }
.uprod-icon-other     { background: rgba(148,163,184,0.1); color: #94a3b8; }
.uprod-icon-pending   { background: rgba(239,68,68,0.1); color: #ef4444; }
.uprod-icon-installed { background: rgba(74,222,128,0.1); color: #4ade80; }
.uprod-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.uprod-title-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.uprod-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}
.uprod-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    font-size: 0.75rem;
    color: #64748b;
}
.uprod-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.uprod-badge-pending {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    background: rgba(251,191,36,0.1);
    color: #fbbf24;
}
.uprod-spinner {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(251,191,36,0.3);
    border-top-color: #fbbf24;
    border-radius: 50%;
    display: inline-block;
    animation: uprod-spin 0.7s linear infinite;
}
@keyframes uprod-spin { to { transform: rotate(360deg); } }
.uprod-btn-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 700px) {
    .uprod-row { flex-wrap: wrap; }
    .uprod-actions { width: 100%; justify-content: space-between; margin-left: 52px; }
}

/* ─── TOAST / NOTIFY (sağ üst bildirim) ─── */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(16,16,16,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    font-size: 0.85rem;
    color: #e2e8f0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
}
.toast-show { opacity: 1; transform: translateX(0); }
.toast-hide { opacity: 0; transform: translateX(30px); }
.toast-icon { flex-shrink: 0; display: flex; align-items: center; margin-top: 1px; }
.toast-msg { flex: 1; line-height: 1.45; word-break: break-word; }
.toast-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.15s;
}
.toast-close:hover { color: #fff; }
.toast-success { border-left-color: #4ade80; }
.toast-success .toast-icon { color: #4ade80; }
.toast-error { border-left-color: #ef4444; }
.toast-error .toast-icon { color: #f87171; }
.toast-info { border-left-color: #60a5fa; }
.toast-info .toast-icon { color: #60a5fa; }

@media (max-width: 480px) {
    .toast-container { left: 12px; right: 12px; top: 12px; max-width: none; }
}

/* ─── KURULUM SİHİRBAZI (stepper) ─── */
.wiz-steps {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.wiz-step {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wiz-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}
.wiz-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    transition: color 0.2s;
}
.wiz-step.active .wiz-step-num {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}
.wiz-step.active .wiz-step-label { color: #fff; }
.wiz-step.done .wiz-step-num {
    background: rgba(74,222,128,0.15);
    border-color: #4ade80;
    color: #4ade80;
}
.wiz-step.done .wiz-step-label { color: #4ade80; }
.wiz-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 10px;
}
@media (max-width: 480px) {
    .wiz-step-label { display: none; }
}

/* ─── KURULUM SİHİRBAZI: BAŞARI EKRANI ─── */
.wiz-success {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.5rem 0.5rem;
    overflow: hidden;
    animation: fadeIn 0.35s ease;
}
.wiz-success-icon {
    margin-bottom: 0.75rem;
    animation: wiz-pop 0.4s ease;
}
@keyframes wiz-pop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); }
}
.wiz-success h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 6px;
    width: 100%;
    text-align: center;
    letter-spacing: -0.01em;
}
.wiz-success p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0 auto 4px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.wiz-help-link {
    display: block;
    margin-top: 8px;
    color: #fbbf24 !important;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s;
}
.wiz-help-link:hover {
    color: #fcd34d !important;
    text-decoration: underline;
}
.wiz-doc-btn {
    display: inline-block;
    margin-top: 1.1rem;
    text-decoration: none;
    padding: 10px 28px;
}
.wiz-confetti-zone {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.wiz-confetti-piece {
    position: absolute;
    top: -12px;
    width: 7px;
    height: 12px;
    border-radius: 2px;
    opacity: 0.9;
    animation-name: wiz-confetti-fall;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}
@keyframes wiz-confetti-fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(260px) rotate(340deg); opacity: 0; }
}

/* ─── NAMESERVER KUTUSU (kurulum başarı ekranı) ─── */
.wiz-ns-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: 14px auto 0;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(251,191,36,0.3);
    background: rgba(251,191,36,0.06);
    text-align: left;
}
.wiz-ns-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}
.wiz-ns-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wiz-ns-row {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: #e2e8f0;
    background: rgba(0,0,0,0.25);
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.wiz-ns-warning {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 10px 0 0;
    text-align: left;
}

/* ─── ŞİFRE GÖSTER/GİZLE VE NS KOPYALAMA BUTONLARI ─── */
.pw-eye-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}
.pw-eye-btn:hover {
    color: #e2e8f0;
}
.ns-copy-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ns-copy-btn:hover {
    color: #4ade80;
}