/* =========================================================
   ZANATIM
   Ana Stil Dosyası
   ========================================================= */

/* =========================================================
   ZNT / ZANATIM
   MARKA RENK SİSTEMİ
   ========================================================= */

:root {

    /* Ana marka */
    --znt-navy: #0b1f33;
    --znt-navy-dark: #071725;
    --znt-navy-light: #15334d;

    /* Baykuş / vurgu renkleri */
    --znt-blue: #2589bd;
    --znt-teal: #28a7a1;
    --znt-teal-light: #59c5bd;

    /* Açık marka tonları */
    --znt-cream: #f3eee2;
    --znt-cream-light: #faf8f2;

    /* Nötr renkler */
    --znt-white: #ffffff;
    --znt-text: #17222d;
    --znt-text-soft: #66727d;
    --znt-border: #dce3e7;

    /* Durum renkleri */
    --znt-success: #2f8f68;
    --znt-warning: #c68a32;
    --znt-danger: #b94b4b;

    /* Ortak gölgeler */
    --znt-shadow:
        0 18px 50px
        rgba(7, 23, 37, 0.12);

    /* Ortak köşeler */
    --znt-radius: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            135deg,
            #f6f1e8 0%,
            #eee5d6 100%
        );

    color: #292724;
}


/* =========================================================
   SAYFA
   ========================================================= */

.page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 70px 20px 40px;
}

.content {
    width: 100%;
    max-width: 900px;

    text-align: center;
}


/* =========================================================
   DİL SEÇİMİ
   ========================================================= */

.language-switcher {
    position: absolute;

    top: 28px;
    right: 35px;

    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.language-switcher a {
    color: #77716a;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.language-switcher a:hover {
    color: #8b5c32;
}

.language-switcher a.active {
    color: #8b5c32;
}

.language-separator {
    color: #b9b2aa;
}


/* =========================================================
   MARKA
   ========================================================= */

.brand {
    margin-bottom: 28px;

    font-size:
        clamp(
            48px,
            9vw,
            92px
        );

    font-weight: 800;

    letter-spacing: 8px;

    color: #252321;
}

.brand-line {
    width: 70px;
    height: 3px;

    margin:
        0 auto
        32px auto;

    background: #a76f3b;
}


/* =========================================================
   İÇERİK
   ========================================================= */

h1 {
    margin:
        0 0
        20px 0;

    font-size:
        clamp(
            30px,
            5vw,
            52px
        );

    font-weight: 600;

    line-height: 1.15;
}

.description {
    max-width: 680px;

    margin:
        0 auto
        40px auto;

    font-size: 19px;

    line-height: 1.7;

    color: #615d57;
}

.coming-soon {
    display: inline-block;

    padding:
        12px 24px;

    border:
        1px solid
        rgba(
            167,
            111,
            59,
            0.45
        );

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #8b5c32;

    background:
        rgba(
            255,
            255,
            255,
            0.35
        );
}

.message {
    margin-top: 55px;

    font-size: 16px;

    line-height: 1.7;

    color: #77716a;
}

.footer {
    margin-top: 80px;

    font-size: 12px;

    letter-spacing: 1px;

    color: #969089;
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 600px) {

    .page {
        padding:
            80px 20px
            30px;
    }

    .language-switcher {
        top: 24px;
        right: 22px;
    }

    .brand {
        letter-spacing: 4px;
    }

    .description {
        font-size: 17px;
    }

    .message {
        margin-top: 45px;
    }

    .footer {
        margin-top: 55px;
    }
}

/* =========================================================
   ZANATIM - ÜYELİK / KAYIT SAYFASI
   ========================================================= */

.register-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            135deg,
            #f7f3ec 0%,
            #eee5d7 100%
        );
}


/* =========================================================
   ÜST ALAN
   ========================================================= */

.register-header {
    width: 100%;
    min-height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 45px;

    border-bottom:
        1px solid
        rgba(60, 50, 40, 0.08);
}

.register-logo {
    color: #252321;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: 5px;

    text-decoration: none;
}

.register-language {
    position: static;
}


/* =========================================================
   ANA ALAN
   ========================================================= */

.register-container {
    width: 100%;
    max-width: 1180px;

    margin: auto;

    padding: 60px 35px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 470px);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   SOL TANITIM ALANI
   ========================================================= */

.register-intro {
    max-width: 580px;
}

.small-brand-line {
    width: 60px;
    height: 3px;

    margin-bottom: 30px;

    background: #a76f3b;
}

.register-intro h1 {
    margin: 0 0 25px 0;

    font-size:
        clamp(
            38px,
            5vw,
            64px
        );

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1px;

    color: #252321;
}

.register-intro p {
    max-width: 530px;

    margin: 0;

    font-size: 19px;

    line-height: 1.75;

    color: #6c665f;
}


/* =========================================================
   KAYIT KARTI
   ========================================================= */

.register-card {
    width: 100%;

    padding: 42px;

    background:
        rgba(
            255,
            255,
            255,
            0.72
        );

    border:
        1px solid
        rgba(
            70,
            60,
            50,
            0.10
        );

    border-radius: 18px;

    box-shadow:
        0 18px 50px
        rgba(
            45,
            35,
            25,
            0.08
        );

    backdrop-filter:
        blur(8px);
}

.register-card h2 {
    margin: 0 0 8px 0;

    font-size: 28px;

    color: #292724;
}

.register-subtitle {
    margin:
        0 0
        30px 0;

    color: #77716a;

    font-size: 15px;
}


/* =========================================================
   FORM
   ========================================================= */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;

    color: #4c4843;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;

    padding:
        0 14px;

    border:
        1px solid
        #d8d1c8;

    border-radius: 8px;

    outline: none;

    background: #ffffff;

    color: #292724;

    font-size: 15px;

    font-family: inherit;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #a76f3b;

    box-shadow:
        0 0 0 3px
        rgba(
            167,
            111,
            59,
            0.10
        );
}

.field-help {
    margin-top: 7px;

    color: #8a847d;

    font-size: 12px;
}


/* =========================================================
   ONAY KUTUSU
   ========================================================= */

.checkbox-row {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin:
        5px 0
        25px 0;

    cursor: pointer;
}

.checkbox-row input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    flex: 0 0 auto;

    accent-color: #8b5c32;
}

.checkbox-row span {
    font-size: 12px;

    line-height: 1.55;

    color: #6e6861;
}


/* =========================================================
   ANA BUTON
   ========================================================= */

.primary-button {
    width: 100%;
    min-height: 50px;

    border: 0;

    border-radius: 8px;

    background: #292724;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.4px;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}

.primary-button:hover {
    opacity: 0.92;

    transform:
        translateY(-1px);
}

.primary-button:active {
    transform:
        translateY(0);
}


/* =========================================================
   GİRİŞ BAĞLANTISI
   ========================================================= */

.login-link {
    margin-top: 25px;

    text-align: center;

    font-size: 13px;

    color: #77716a;
}

.login-link a {
    margin-left: 5px;

    color: #8b5c32;

    font-weight: 700;

    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}


/* =========================================================
   ALT ALAN
   ========================================================= */

.register-footer {
    width: 100%;

    padding:
        25px 20px
        30px;

    text-align: center;

    color: #99928a;

    font-size: 11px;

    letter-spacing: 0.5px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .register-container {
        max-width: 650px;

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            45px 25px;
    }

    .register-intro {
        text-align: center;

        margin: 0 auto;
    }

    .small-brand-line {
        margin:
            0 auto
            25px auto;
    }

    .register-intro p {
        margin: 0 auto;
    }
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 600px) {

    .register-header {
        min-height: 70px;

        padding:
            18px 20px;
    }

    .register-logo {
        font-size: 20px;

        letter-spacing: 3px;
    }

    .register-container {
        padding:
            35px 16px;
    }

    .register-intro h1 {
        font-size: 36px;
    }

    .register-intro p {
        font-size: 16px;
    }

    .register-card {
        padding:
            30px 20px;

        border-radius: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .register-language {
        font-size: 12px;
    }
}

/* =========================================================
   ZNT MARKA UYGULAMASI
   ========================================================= */

body {
    background: var(--znt-cream-light);
    color: var(--znt-text);
}


/* Ana açılış sayfası */

.page {
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(37, 137, 189, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 80% 75%,
            rgba(40, 167, 161, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--znt-navy-dark),
            var(--znt-navy)
        );
}

.page .brand,
.page h1 {
    color: var(--znt-cream);
}

.page .description,
.page .message {
    color:
        rgba(
            243,
            238,
            226,
            0.72
        );
}

.page .brand-line {
    background:
        linear-gradient(
            90deg,
            var(--znt-blue),
            var(--znt-teal)
        );
}

.page .coming-soon {
    color: var(--znt-teal-light);

    border-color:
        rgba(
            89,
            197,
            189,
            0.45
        );

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );
}

.page .footer {
    color:
        rgba(
            243,
            238,
            226,
            0.45
        );
}

.page .language-switcher a {
    color:
        rgba(
            243,
            238,
            226,
            0.55
        );
}

.page .language-switcher a:hover,
.page .language-switcher a.active {
    color: var(--znt-teal-light);
}


/* =========================================================
   KAYIT SAYFASI
   ========================================================= */

.register-page {
    background:
        linear-gradient(
            135deg,
            var(--znt-cream-light) 0%,
            #edf4f4 100%
        );
}

.register-header {
    background: var(--znt-navy);

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}

.register-logo {
    color: var(--znt-cream);
}

.register-header .language-switcher a {
    color:
        rgba(
            243,
            238,
            226,
            0.60
        );
}

.register-header .language-switcher a:hover,
.register-header .language-switcher a.active {
    color: var(--znt-teal-light);
}

.small-brand-line {
    background:
        linear-gradient(
            90deg,
            var(--znt-blue),
            var(--znt-teal)
        );
}

.register-intro h1 {
    color: var(--znt-navy);
}

.register-intro p {
    color: var(--znt-text-soft);
}

.register-card {
    background:
        rgba(
            255,
            255,
            255,
            0.90
        );

    border:
        1px solid
        rgba(
            11,
            31,
            51,
            0.08
        );

    box-shadow: var(--znt-shadow);
}

.register-card h2 {
    color: var(--znt-navy);
}

.register-subtitle {
    color: var(--znt-text-soft);
}

.form-group label {
    color: var(--znt-navy);
}

.form-group input,
.form-group select {
    border-color: var(--znt-border);

    color: var(--znt-text);

    background: var(--znt-white);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--znt-teal);

    box-shadow:
        0 0 0 3px
        rgba(
            40,
            167,
            161,
            0.12
        );
}

.checkbox-row input {
    accent-color: var(--znt-teal);
}

.primary-button {
    background:
        linear-gradient(
            135deg,
            var(--znt-blue),
            var(--znt-teal)
        );

    color: var(--znt-white);
}

.primary-button:hover {
    opacity: 1;

    box-shadow:
        0 8px 22px
        rgba(
            40,
            167,
            161,
            0.22
        );
}

.login-link a {
    color: var(--znt-teal);
}

/* =========================================================
   ZNT LOGO
   ========================================================= */

.brand-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.brand-logo {
    display: block;

    width: min(420px, 82vw);
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 14px 28px
            rgba(0, 0, 0, 0.22)
        );
}


/* Üst menü küçük logo */

.register-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.register-logo-image {
    display: block;

    width: 115px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   MOBİL LOGO
   ========================================================= */

@media (max-width: 600px) {

    .brand-logo {
        width: min(330px, 88vw);
    }

    .register-logo-image {
        width: 92px;
    }

}

/* =========================================================
   ZNT ADMIN PANEL
   ========================================================= */

.admin-body {
    margin: 0;
    background: #f4f6f7;
    color: var(--znt-text);
    font-family: Arial, Helvetica, sans-serif;
}

.admin-layout {
    min-height: 100vh;
    display: flex;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            var(--znt-navy-dark) 0%,
            var(--znt-navy) 55%,
            #0c2940 100%
        );

    color: var(--znt-cream);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.admin-brand {
    padding: 28px 24px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-brand a {
    display: block;
    text-decoration: none;
}

.admin-logo {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
}

.admin-brand-text {
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 2.2px;
    color: var(--znt-teal-light);
    font-weight: 700;
}


/* =========================================================
   ADMIN MENU
   ========================================================= */

.admin-menu {
    padding: 18px 12px;
    flex: 1;
}

.admin-menu-label {
    padding: 22px 14px 8px;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(243, 238, 226, 0.45);
}

.admin-menu-item {
    min-height: 44px;
    padding: 0 13px;
    margin-bottom: 4px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-radius: 9px;

    text-decoration: none;
    color: rgba(243, 238, 226, 0.78);

    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.admin-menu-item:hover {
    background: rgba(40, 167, 161, 0.12);
    color: var(--znt-white);
    transform: translateX(2px);
}

.admin-menu-item.active {
    background:
        linear-gradient(
            90deg,
            rgba(37, 137, 189, 0.25),
            rgba(40, 167, 161, 0.16)
        );

    color: var(--znt-white);

    border-left: 3px solid var(--znt-teal);
}

.admin-menu-icon {
    width: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    color: var(--znt-teal-light);
    font-size: 17px;
}

.admin-menu-badge {
    margin-left: auto;

    min-width: 21px;
    height: 21px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 0 6px;

    border-radius: 20px;

    background: var(--znt-danger);
    color: white;

    font-size: 10px;
    font-weight: 700;
}

.admin-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-footer a {
    color: rgba(243, 238, 226, 0.65);
    text-decoration: none;
    font-size: 13px;
}

.admin-sidebar-footer a:hover {
    color: var(--znt-teal-light);
}


/* =========================================================
   MAIN
   ========================================================= */

.admin-main {
    flex: 1;
    min-width: 0;
    margin-left: 260px;
    padding: 0 34px 30px;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.admin-topbar {
    min-height: 105px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid var(--znt-border);
}

.admin-topbar h1 {
    margin: 0 0 5px;
    color: var(--znt-navy);
    font-size: 26px;
}

.admin-topbar p {
    margin: 0;
    color: var(--znt-text-soft);
    font-size: 13px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 11px;
}

.admin-user-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--znt-blue),
            var(--znt-teal)
        );

    color: white;
    font-weight: 700;
}

.admin-user strong,
.admin-user span {
    display: block;
}

.admin-user strong {
    color: var(--znt-navy);
    font-size: 13px;
}

.admin-user span {
    margin-top: 3px;
    color: var(--znt-text-soft);
    font-size: 11px;
}


/* =========================================================
   STAT CARDS
   ========================================================= */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;

    margin: 28px 0 22px;
}

.admin-stat-card {
    position: relative;
    overflow: hidden;

    background: white;

    border: 1px solid var(--znt-border);
    border-radius: 14px;

    padding: 22px;

    box-shadow:
        0 5px 18px rgba(11, 31, 51, 0.045);
}

.admin-stat-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            var(--znt-blue),
            var(--znt-teal)
        );
}

.admin-stat-title {
    color: var(--znt-text-soft);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-number {
    margin: 9px 0 5px;

    color: var(--znt-navy);
    font-size: 31px;
    font-weight: 700;
}

.admin-stat-detail {
    color: var(--znt-text-soft);
    font-size: 12px;
}


/* =========================================================
   DASHBOARD PANELS
   ========================================================= */

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admin-panel {
    background: white;

    border: 1px solid var(--znt-border);
    border-radius: 14px;

    padding: 22px;

    box-shadow:
        0 5px 18px rgba(11, 31, 51, 0.04);
}

.admin-panel-wide {
    grid-column: 1 / -1;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    padding-bottom: 17px;

    border-bottom: 1px solid #edf0f2;
}

.admin-panel-header h2 {
    margin: 0 0 4px;

    color: var(--znt-navy);
    font-size: 17px;
}

.admin-panel-header p {
    margin: 0;

    color: var(--znt-text-soft);
    font-size: 12px;
}

.admin-panel-header a {
    color: var(--znt-blue);
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

.admin-panel-header a:hover {
    color: var(--znt-teal);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.admin-empty-state {
    min-height: 180px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.admin-empty-icon {
    margin-bottom: 10px;

    color: var(--znt-teal);
    font-size: 30px;
}

.admin-empty-state strong {
    color: var(--znt-navy);
    font-size: 14px;
}

.admin-empty-state span {
    margin-top: 5px;

    color: var(--znt-text-soft);
    font-size: 12px;
}


/* =========================================================
   MODERATION LIST
   ========================================================= */

.admin-action-list {
    padding-top: 8px;
}

.admin-action-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 4px;

    border-bottom: 1px solid #edf0f2;

    color: var(--znt-text);
    text-decoration: none;

    font-size: 13px;
}

.admin-action-list a:last-child {
    border-bottom: none;
}

.admin-action-list a:hover span {
    color: var(--znt-blue);
}

.admin-action-list strong {
    min-width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: var(--znt-cream-light);
    color: var(--znt-navy);

    font-size: 12px;
}


/* =========================================================
   COMMUNICATION CENTER
   ========================================================= */

.admin-communication-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;

    padding-top: 20px;
}

.admin-communication-card {
    min-height: 125px;

    padding: 18px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--znt-border);
    border-radius: 12px;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--znt-cream-light)
        );

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.admin-communication-card:hover {
    transform: translateY(-3px);

    border-color: rgba(40, 167, 161, 0.55);

    box-shadow:
        0 10px 24px rgba(11, 31, 51, 0.08);
}

.communication-symbol {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--znt-blue),
            var(--znt-teal)
        );

    color: white;
    font-size: 17px;
}

.admin-communication-card strong {
    color: var(--znt-navy);
    font-size: 13px;
}

.admin-communication-card span {
    margin-top: 6px;

    color: var(--znt-text-soft);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   FOOTER
   ========================================================= */

.admin-footer {
    padding: 28px 0 4px;

    color: #8a959e;
    font-size: 10px;

    text-align: center;
    letter-spacing: 0.8px;
}

.admin-footer span {
    padding: 0 7px;
    color: var(--znt-teal);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-communication-actions {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .admin-sidebar {
        width: 72px;
    }

    .admin-main {
        margin-left: 72px;
        padding: 0 16px 25px;
    }

    .admin-brand {
        padding: 20px 10px;
    }

    .admin-logo {
        width: 52px;
    }

    .admin-brand-text,
    .admin-menu-label,
    .admin-menu-item:not(.active) {
        /* Menü bağlantıları kaybolmasın */
    }

    .admin-brand-text {
        display: none;
    }

    .admin-menu {
        padding: 14px 8px;
    }

    .admin-menu-item {
        justify-content: center;
        padding: 0;
        font-size: 0;
    }

    .admin-menu-icon {
        font-size: 19px;
    }

    .admin-menu-badge {
        position: absolute;
        margin-left: 32px;
        margin-top: -22px;
    }

    .admin-menu-label {
        display: none;
    }

    .admin-sidebar-footer {
        padding: 15px 5px;
        text-align: center;
    }

    .admin-sidebar-footer a {
        font-size: 0;
    }

    .admin-sidebar-footer a::after {
        content: "←";
        font-size: 20px;
    }

    .admin-topbar {
        min-height: 90px;
    }

    .admin-topbar h1 {
        font-size: 21px;
    }

    .admin-topbar p {
        display: none;
    }

    .admin-user div:last-child {
        display: none;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel-wide {
        grid-column: auto;
    }

    .admin-communication-actions {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   ZNT - ÜYELİK KARŞILAMA POPUP
   ========================================================= */

.znt-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(4, 15, 26, 0.78);
    backdrop-filter: blur(6px);
}

.znt-popup {
    position: relative;

    width: min(540px, 92vw);
    padding: 48px 42px 38px;

    text-align: center;

    border: 1px solid rgba(89, 197, 189, 0.35);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at top,
            rgba(37, 137, 189, 0.20),
            transparent 42%
        ),
        linear-gradient(
            160deg,
            var(--znt-navy-light),
            var(--znt-navy-dark)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}


/* KAPAT */

.znt-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: var(--znt-cream);

    font-size: 25px;
    line-height: 30px;

    cursor: pointer;
}

.znt-popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
}


/* ZNT */

.znt-popup-brand {
    margin-bottom: 25px;

    color: var(--znt-cream);

    font-size: 38px;
    font-weight: 800;
    letter-spacing: 7px;
}


/* KENDİN İÇİN */

.znt-popup-small {
    margin-bottom: 13px;

    color: var(--znt-teal-light);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* ANA MESAJ */

.znt-popup h2 {
    margin: 0 auto;

    max-width: 450px;

    color: var(--znt-cream);

    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}


/* ALT MESAJ */

.znt-popup p {
    margin: 17px 0 28px;

    color: var(--znt-teal-light);

    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}


/* ÜYE OL */

.znt-popup-register {
    display: block;

    width: 100%;
    max-width: 330px;

    margin: 0 auto;
    padding: 15px 20px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--znt-blue),
            var(--znt-teal)
        );

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.8px;

    box-shadow:
        0 8px 24px rgba(40, 167, 161, 0.20);
}

.znt-popup-register:hover {
    transform: translateY(-1px);
}


/* GİRİŞ */

.znt-popup-login {
    display: inline-block;

    margin-top: 18px;

    color: rgba(243, 238, 226, 0.72);

    text-decoration: none;

    font-size: 12px;
}

.znt-popup-login:hover {
    color: var(--znt-cream);
}


/* MOBİL */

@media (max-width: 600px) {

    .znt-popup {
        padding: 42px 24px 30px;
        border-radius: 18px;
    }

    .znt-popup-brand {
        font-size: 30px;
    }

    .znt-popup-small {
        font-size: 12px;
    }

    .znt-popup h2 {
        font-size: 23px;
    }

    .znt-popup p {
        font-size: 16px;
    }

}

.znt-popup-logo {
    width: 150px;
    max-width: 55%;
    height: auto;
    display: block;
    margin: 0 auto;
}