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

body {
    font-family: Arial, system-ui, sans-serif;
    background: #141414;
    color: #fff;
}


.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #e50914;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    cursor: pointer;
    font-size: 14px;
    color: #e5e5e5;
    text-decoration: none;
    transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.badge-role {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(229,9,20,0.25);
    border: 1px solid #e50914;
    font-size: 12px;
}

.btn-small {
    padding: 5px 12px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    transition: background .2s, transform .1s;
}

.btn-small:hover {
    background: #f6121d;
    transform: scale(1.03);
}


.main {
    padding: 20px 40px 60px;
}


.hero {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 20% 20%, #e50914 0, #141414 55%, #000 100%);
    min-height: 180px;
    padding: 20px 20px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 14px;
    color: #e5e5e5;
    max-width: 320px;
}

.hero-tag {
    margin-top: 8px;
    font-size: 12px;
    color: #ffd700;
}

.hero-blob {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #fff 0, #e50914 40%, #000 70%);
    opacity: .35;
    filter: blur(1px);
}


.section {
    display: none;
}

.section.active {
    display: block;
}


.row-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.disk-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}


.disk-row::-webkit-scrollbar {
    height: 8px;
}
.disk-row::-webkit-scrollbar-track {
    background: #141414;
}
.disk-row::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}


.disk-card {
    position: relative;
    min-width: 150px;
    max-width: 150px;
    border-radius: 6px;
    overflow: hidden;
    background: #181818;
    cursor: pointer;
    transform-origin: center;
    transition: transform .2s, box-shadow .2s;
}

.disk-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

.disk-poster {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.disk-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    font-size: 11px;
}

.disk-title {
    font-weight: 600;
    margin-bottom: 4px;
}

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

.disk-score {
    font-size: 11px;
    opacity: 0.9;
}

.disk-actions {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.btn-link,
.btn-vote {
    border: none;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.btn-link {
    background: #e50914;
    color: #fff;
    text-decoration: none;
}

.btn-link.disabled {
    background: #444;
    cursor: default;
}

.btn-vote {
    background: rgba(0,0,0,0.7);
    color: #fff;
}


.discord-chat-layout {
    display: grid;
    grid-template-columns: 2.1fr 1.1fr;
    gap: 20px;
    align-items: flex-start;
}

.discord-chat-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chat-box {
    background: #18191c;
    border-radius: 8px;
    padding: 0;
}


.discord-channel-header {
    padding: 10px 12px;
    border-bottom: 1px solid #202225;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #202225;
}

.discord-hash {
    color: #6a7480;
    font-weight: 700;
}

.discord-pill {
    background: #5865f2;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
}


.discord-messages {
    max-height: 280px;
    overflow-y: auto;
    padding: 10px 12px;
    font-size: 13px;
}

.discord-messages::-webkit-scrollbar {
    width: 8px;
}
.discord-messages::-webkit-scrollbar-thumb {
    background: #2f3136;
    border-radius: 4px;
}

.discord-msg-empty {
    color: #a0a0a0;
    font-size: 13px;
}


.discord-message {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.discord-avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.discord-message-body {
    flex: 1;
}

.discord-message-header {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.discord-username {
    font-weight: 600;
    font-size: 13px;
}

.discord-username-user {
    color: #e5e5e5;
}

.discord-username-vip {
    color: #f1c40f;
}

.discord-username-admin {
    color: #eb4034;
}

.discord-timestamp {
    font-size: 11px;
    color: #777;
}

.discord-message-content {
    font-size: 13px;
    color: #dcddde;
}


.discord-input-bar {
    display: flex;
    gap: 8px;
    padding: 8px 10px 10px;
    border-top: 1px solid #202225;
}

.discord-input-bar input[type="text"] {
    flex: 1;
    border-radius: 4px;
    border: none;
    padding: 8px 10px;
    background: #40444b;
    color: #fff;
    font-size: 13px;
}

.discord-input-bar input[type="text"]::placeholder {
    color: #b9bbbe;
}

.discord-input-bar button {
    border-radius: 4px;
    border: none;
    padding: 0 14px;
    background: #5865f2;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}


.discord-support {
    background: #18191c;
    padding: 0;
}

.discord-support-info {
    padding: 6px 12px;
    font-size: 12px;
    color: #b9bbbe;
    border-bottom: 1px solid #202225;
}

.discord-ticket-form {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #202225;
}

.discord-ticket-form input[type="text"] {
    flex: 1;
    border-radius: 4px;
    border: none;
    padding: 8px 10px;
    background: #40444b;
    color: #fff;
    font-size: 13px;
}

.discord-ticket-form button {
    border-radius: 4px;
    border: none;
    padding: 0 12px;
    background: #3ba55d;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}


.ticket-list {
    list-style: none;
    font-size: 13px;
    padding: 10px 12px 12px;
    max-height: 260px;
    overflow-y: auto;
}

.ticket-list li {
    padding: 6px 0;
    border-bottom: 1px solid #2f3136;
}


.ticket-list {
    list-style: none;
    font-size: 13px;
}

.ticket-list li {
    padding: 6px 0;
    border-bottom: 1px solid #333;
}

.ticket-status-open {
    color: #46d369;
}

.ticket-status-closed {
    color: #999;
}


.login-page {
    height: 100vh;
    background: url('https://images.pexels.com/photos/7991370/pexels-photo-7991370.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat #000;
    position: relative;
}

.login-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: rgba(0,0,0,0.8);
    padding: 30px 40px;
    border-radius: 8px;
    width: 320px;
    color: #fff;
}

.login-card h1 {
    margin-bottom: 20px;
    font-size: 26px;
}

.login-card input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: none;
    background: #333;
    color: #fff;
}

.login-card button {
    width: 100%;
    padding: 10px;
    background: #e50914;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
}

.login-error {
    background: #e87c03;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
}


.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.admin-tab {
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    background: #181818;
    color: #e5e5e5;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s, color .2s, transform .1s;
}

.admin-tab.active,
.admin-tab:hover {
    background: #e50914;
    color: #fff;
    transform: scale(1.03);
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-card {
    background: #181818;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.admin-card h3 {
    margin-bottom: 5px;
}

.admin-subtitle {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 12px;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th,
.admin-table td {
    padding: 8px 6px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.admin-table th {
    font-weight: 600;
    color: #e5e5e5;
    background: #111;
    position: sticky;
    top: 0;
}

.admin-table tr:hover {
    background: #202020;
}

.admin-select {
    background: #222;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #444;
    padding: 3px 6px;
    font-size: 12px;
}


.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
}

.badge-ok {
    background: rgba(70,211,105,0.15);
    color: #46d369;
}

.badge-blocked {
    background: rgba(229,9,20,0.15);
    color: #e50914;
}


.admin-settings-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
}

.admin-settings-group label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.admin-settings-group input[type="number"],
.admin-settings-group input[type="text"] {
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 13px;
}

.admin-settings-group small {
    font-size: 11px;
    color: #aaa;
}


.chat-full-container {
    background: #18191c;
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}


.chat-channel-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.chat-channel-tab {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 999px;
    border: none;
    background: #2b2d31;
    color: #dcddde;
    cursor: pointer;
    transition: background .15s, color .15s, transform .1s;
}

.chat-channel-tab .hash {
    color: #80848e;
    font-weight: 700;
}

.chat-channel-tab.active {
    background: #5865f2;
    color: #fff;
    transform: translateY(-1px);
}

.chat-channel-tab:hover:not(.active):not(.disabled) {
    background: #32353b;
}

.chat-channel-tab.disabled {
    opacity: 0.4;
    cursor: default;
}

.chat-channel-tab .tab-lock {
    font-size: 10px;
    color: #f1c40f;
    margin-left: 4px;
}


.chat-panel {
    display: none;
    border-radius: 8px;
    background: #313338;
    padding: 8px;
    min-height: 260px;
}

.chat-panel.active {
    display: flex;
    flex-direction: column;
}


.chat-messages-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 8px;
}

.chat-messages-list::-webkit-scrollbar {
    width: 8px;
}
.chat-messages-list::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
}

.chat-empty {
    font-size: 13px;
    color: #a0a0a0;
}


.chat-message {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.chat-avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.chat-avatar-vip {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
}

.chat-message-main {
    flex: 1;
}

.chat-message-header {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 2px;
}

.chat-username {
    font-size: 13px;
    font-weight: 600;
}

.chat-timestamp {
    font-size: 11px;
    color: #777;
}


.role-user {
    color: #e5e5e5;
}

.role-vip {
    color: #f1c40f;
}

.role-admin {
    color: #ff6464;
}


.chat-message-bubble {
    display: inline-block;
    background: #1e1f22;
    color: #e3e5e8;
    font-size: 13px;
    padding: 6px 9px;
    border-radius: 10px;
    border-top-left-radius: 3px;
    max-width: 100%;
}

.chat-message-bubble-vip {
    background: #2c2440;
}


.chat-input-bar {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.chat-input-bar input[type="text"] {
    flex: 1;
    border-radius: 5px;
    border: none;
    padding: 8px 10px;
    background: #383a40;
    color: #fff;
    font-size: 13px;
}

.chat-input-bar input[type="text"]::placeholder {
    color: #a8a8a8;
}

.chat-input-bar button {
    border-radius: 5px;
    border: none;
    padding: 0 14px;
    background: #5865f2;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}


.chat-locked-info {
    font-size: 13px;
    color: #f1c40f;
}


.chat-support-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-form-inline {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.ticket-form-inline input[type="text"] {
    flex: 1;
    border-radius: 5px;
    border: none;
    padding: 7px 9px;
    background: #383a40;
    color: #fff;
    font-size: 13px;
}

.ticket-form-inline button {
    border-radius: 5px;
    border: none;
    padding: 0 12px;
    background: #3ba55d;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.ticket-item {
    padding: 6px 8px;
    border-radius: 6px;
    background: #2b2d31;
    font-size: 13px;
}

.ticket-item .ticket-meta {
    font-size: 11px;
    color: #b5bac1;
}

.ticket-item .ticket-link a {
    font-size: 12px;
    color: #46d369;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.chat-role-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #fff;
    padding: 0 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.profile-avatar-preview {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}


.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.dash-box {
    background: #18191c;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #2f3136;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.dash-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.dash-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-detail {
    font-size: 12px;
    color: #c7c7c7;
}


.badge-muted {
    display:inline-block;
    padding:2px 6px;
    border-radius:999px;
    background:#3f2b3f;
    color:#f1c40f;
    font-size:10px;
}


.chat-delete-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    padding: 0 4px;
    color: #888;
}
.chat-delete-btn:hover {
    color: #ff6666;
}

.chat-error {
    margin: 4px 0 6px;
    font-size: 12px;
    color: #ff6961;
}


.chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}


.chat-role-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #fff;
    padding: 0 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 4px;
}


.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.dash-box {
    background: #18191c;
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #2f3136;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.dash-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.dash-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-detail {
    font-size: 12px;
    color: #c7c7c7;
}


.badge-muted {
    display:inline-block;
    padding:2px 6px;
    border-radius:999px;
    background:#3f2b3f;
    color:#f1c40f;
    font-size:10px;
}


.admin-search {
    display:flex;
    gap:8px;
    margin:8px 0 12px;
}
.admin-search input[type="text"] {
    flex:1;
    padding:6px 8px;
    border-radius:6px;
    border:none;
    background:#202225;
    color:#fff;
    font-size:13px;
}
.admin-search button {
    padding:0 12px;
    border:none;
    border-radius:6px;
    background:#5865f2;
    color:#fff;
    font-size:13px;
    cursor:pointer;
}


.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.modal-backdrop.show {
    display: flex;
}
.modal-window {
    background: #18191c;
    border-radius: 10px;
    width: 360px;
    max-width: 90%;
    border: 1px solid #2f3136;
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}
.modal-header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 12px;
    border-bottom:1px solid #2f3136;
    font-size:14px;
}
.modal-header .modal-close {
    border:none;
    background:transparent;
    color:#ccc;
    font-size:18px;
    cursor:pointer;
}
.modal-body {
    padding:10px 12px 12px;
    display:flex;
    flex-direction:column;
    gap:6px;
}
.modal-body label {
    font-size:12px;
    color:#ccc;
}
.modal-body select,
.modal-body textarea {
    border-radius:6px;
    border:none;
    background:#202225;
    color:#fff;
    font-size:13px;
    padding:6px 8px;
}
.modal-body textarea {
    resize:vertical;
}
.modal-footer {
    display:flex;
    justify-content:flex-end;
    gap:8px;
    margin-top:8px;
}


body.modal-open {
    overflow:hidden;
}


.btn-mute {
    background:#5c5cff;
}
.btn-block {
    background:#b20710;
}
.btn-reset {
    background:#264653;
}

.ticket-message .ticket-id-badge {
    margin-left: 6px;
    padding: 0 6px;
    border-radius: 999px;
    background: #202225;
    font-size: 10px;
    color: #ccc;
}
.ticket-status-open {
    margin-left: 6px;
    padding: 0 6px;
    border-radius: 999px;
    background:#264653;
    color:#2ecc71;
    font-size:10px;
}
.ticket-status-closed {
    margin-left: 6px;
    padding: 0 6px;
    border-radius: 999px;
    background:#2f3136;
    color:#f4a261;
    font-size:10px;
}
.ticket-link-inline {
    display:inline-block;
    margin-top:4px;
    font-size:12px;
    color:#46d369;
}


.chat-messages-list {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 6px;
}


.chat-messages-list::-webkit-scrollbar {
    width: 6px;
}
.chat-messages-list::-webkit-scrollbar-thumb {
    background:#555;
    border-radius: 4px;
}
.chat-messages-list::-webkit-scrollbar-track {
    background:#202225;
}


.nf-login-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000;
    color: #fff;
    position: relative;
}


.nf-login-bg {
    position: fixed;
    inset: 0;
    background:
        url('https://assets.nflxext.com/ffe/siteui/vlv3/8943c1f4-hero.jpg') center center / cover no-repeat;
    filter: brightness(0.35);
    z-index: 0;
}

.nf-login-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(0,0,0,0.3), transparent 60%),
        linear-gradient(to bottom, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0.9) 70%, #000 100%);
    z-index: 1;
}


.nf-login-header {
    position: relative;
    z-index: 2;
    padding: 18px 40px;
}

.nf-login-logo .nf-logo-n {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #e50914;
    text-shadow: 0 0 18px rgba(229,9,20,0.8);
}


.nf-login-main {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    padding: 40px;
    box-sizing: border-box;
    max-width: 1100px;
    margin: 0 auto;
}

.nf-login-left {
    flex: 1 1 50%;
    max-width: 520px;
}

.nf-login-left h1 {
    font-size: 45px;
    line-height: 1.1;
    margin: 0 0 12px;
    font-weight: 900;
}

.nf-login-left h2 {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 500;
}

.nf-login-left p {
    font-size: 15px;
    color: #e5e5e5;
    max-width: 460px;
}


.nf-login-card {
    flex: 0 0 360px;
    background: rgba(0,0,0,0.78);
    padding: 26px 26px 20px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.75);
    border: 1px solid rgba(128,128,128,0.35);
}

.nf-login-card h3 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 700;
}


.nf-login-alert {
    font-size: 13px;
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.nf-login-alert-error {
    background: #e87c6f;
    color: #fff;
}

.nf-login-alert-blocked {
    background: #fcbf49;
    color: #111;
}


.nf-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nf-login-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nf-login-field label {
    font-size: 13px;
    color: #e5e5e5;
}

.nf-login-field input {
    border-radius: 4px;
    border: none;
    background: #333;
    color: #fff;
    padding: 10px 10px;
    font-size: 14px;
    outline: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.nf-login-field input::placeholder {
    color: #b3b3b3;
}

.nf-login-field input:focus {
    background: #454545;
    box-shadow: 0 0 0 1px #e50914;
}


.nf-login-button {
    margin-top: 4px;
    width: 100%;
    border-radius: 4px;
    border: none;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    background: #e50914;
    color: #fff;
    cursor: pointer;
    transition: background 0.12s ease, transform 0.12s ease;
}

.nf-login-button:hover {
    background: #f6121d;
    transform: translateY(-1px);
}

.nf-login-button:active {
    background: #c11119;
    transform: translateY(0);
}


.nf-login-meta {
    margin-top: 14px;
    font-size: 12px;
    color: #b3b3b3;
}

.nf-login-meta code {
    background: #111;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 11px;
}


.nf-login-footer {
    position: relative;
    z-index: 2;
    padding: 18px 40px 24px;
    font-size: 11px;
    color: #757575;
    text-align: center;
}


@media (max-width: 900px) {
    .nf-login-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        padding: 20px;
    }

    .nf-login-left {
        max-width: 100%;
    }

    .nf-login-left h1 {
        font-size: 32px;
    }

    .nf-login-left h2 {
        font-size: 18px;
    }

    .nf-login-card {
        width: 100%;
        max-width: 380px;
    }

    .nf-login-header {
        padding-inline: 20px;
    }
}

@media (max-width: 480px) {
    .nf-login-main {
        padding: 10px;
    }

    .nf-login-card {
        padding: 22px 18px 18px;
    }

    .nf-login-logo .nf-logo-n {
        font-size: 26px;
    }
}

.admin-info-banner {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
}

.admin-info-success {
    background: #0c5132;
    color: #d1f7e4;
    border: 1px solid #137a4a;
}

.admin-info-error {
    background: #5c2c2c;
    color: #ffecec;
    border: 1px solid #e74c3c;
}


.hero-banner {
    position: relative;
    margin: 16px 0 24px;
    border-radius: 14px;
    overflow: hidden;
    background: #05070b;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 190px;
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(229,9,20,0.6), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(76,201,240,0.26), transparent 55%),
        linear-gradient(120deg, #05070b, #05070b 55%, #02030a);
    opacity: 0.95;
    pointer-events: none;
}

.hero-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
    gap: 24px;
    padding: 22px 26px;
}

.hero-banner-left h1 {
    margin: 4px 0 8px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-lead {
    margin: 0 0 10px;
    color: #f1f1f1;
    font-size: 13px;
    max-width: 360px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffb703;
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hero-perk {
    background: rgba(0,0,0,0.55);
    border-radius: 10px;
    padding: 6px 9px;
    font-size: 11px;
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 180px;
}

.hero-perk-label {
    display: inline-block;
    font-weight: 600;
    color: #ffd166;
    margin-right: 4px;
}

.hero-perk-label.hero-perk-vip {
    color: #46d369;
}

.hero-perk-desc {
    color: #e0e0e0;
}

.hero-cta-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: #e50914;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(229,9,20,0.6);
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.hero-cta-main:hover {
    background: #f6121d;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(229,9,20,0.8);
}

.hero-cta-note {
    font-size: 11px;
    color: #d0d0d0;
}


.hero-banner-right {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 2fr) minmax(0, 1fr);
    gap: 10px;
}

.hero-poster {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


.hero-poster-big {
    background-image: linear-gradient(135deg, #111, #300);
}

.hero-poster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
}

.hero-poster.small:nth-child(1) { background-image: linear-gradient(135deg,#111,#222); }
.hero-poster.small:nth-child(2) { background-image: linear-gradient(135deg,#111,#113366); }
.hero-poster.small:nth-child(3) { background-image: linear-gradient(135deg,#111,#331133); }

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), transparent 55%);
}

.hero-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 65%);
}

.hero-poster-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffb703;
}

.hero-poster-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}


@media (max-width: 900px) {
    .hero-banner-inner {
        grid-template-columns: minmax(0,1fr);
        padding: 18px 16px;
    }

    .hero-banner-right {
        display: none;
    }

    .hero-banner-left h1 {
        font-size: 22px;
    }

    .hero-lead {
        font-size: 12px;
    }
}


.hero-banner {
    position: relative;
    margin: 16px 0 24px;
    border-radius: 14px;
    overflow: hidden;
    background: #05070b;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 190px;
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(229,9,20,0.6), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(76,201,240,0.26), transparent 55%),
        linear-gradient(120deg, #05070b, #05070b 55%, #02030a);
    opacity: 0.95;
    pointer-events: none;
}

.hero-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
    gap: 24px;
    padding: 22px 26px;
}

.hero-banner-left h1 {
    margin: 4px 0 8px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hero-lead {
    margin: 0 0 10px;
    color: #f1f1f1;
    font-size: 13px;
    max-width: 360px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffb703;
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hero-perk {
    background: rgba(0,0,0,0.55);
    border-radius: 10px;
    padding: 6px 9px;
    font-size: 11px;
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 180px;
}

.hero-perk-label {
    display: inline-block;
    font-weight: 600;
    color: #ffd166;
    margin-right: 4px;
}

.hero-perk-label.hero-perk-vip {
    color: #46d369;
}

.hero-perk-desc {
    color: #e0e0e0;
}

.hero-cta-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: #e50914;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(229,9,20,0.6);
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.hero-cta-main:hover {
    background: #f6121d;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(229,9,20,0.8);
}

.hero-cta-note {
    font-size: 11px;
    color: #d0d0d0;
}


.hero-banner-right {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 2fr) minmax(0, 1fr);
    gap: 10px;
}

.hero-poster {
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-poster-big {
    background-image: linear-gradient(135deg, #111, #300);
}

.hero-poster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
}

.hero-poster.small:nth-child(1) { background-image: linear-gradient(135deg,#111,#222); }
.hero-poster.small:nth-child(2) { background-image: linear-gradient(135deg,#111,#113366); }
.hero-poster.small:nth-child(3) { background-image: linear-gradient(135deg,#111,#331133); }

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.05), transparent 55%);
}

.hero-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 65%);
}

.hero-poster-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffb703;
}

.hero-poster-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 900px) {
    .hero-banner-inner {
        grid-template-columns: minmax(0,1fr);
        padding: 18px 16px;
    }

    .hero-banner-right {
        display: none;
    }

    .hero-banner-left h1 {
        font-size: 22px;
    }

    .hero-lead {
        font-size: 12px;
    }
}


.vip-posts-container{
    margin-top:24px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}


.vip-composer-card{
    background:#151822;
    border-radius:16px;
    padding:16px 18px 14px;
    border:1px solid rgba(255,255,255,0.04);
    box-shadow:0 18px 40px rgba(0,0,0,0.65);
}

.vip-composer-header{
    display:flex;
    align-items:center;
    gap:12px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,0.06);
    margin-bottom:10px;
}

.vip-composer-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0b0f19;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    color:#fff;
    overflow:hidden;
}
.vip-composer-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.vip-composer-title{
    flex:1;
    font-size:15px;
    font-weight:600;
}
.vip-composer-emoji{
    font-size:22px;
}

.vip-composer-body{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:4px;
}

.vip-composer-input-title,
.vip-composer-input-content{
    width:100%;
    border-radius:12px;
    border:1px solid #252b3a;
    background:#101421;
    color:#fff;
    padding:8px 11px;
    font-size:13px;
}
.vip-composer-input-title::placeholder,
.vip-composer-input-content::placeholder{
    color:#717a93;
}
.vip-composer-input-content{
    resize:vertical;
    min-height:70px;
}


.vip-composer-type-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:12px;
}
.vip-type-label{
    color:#9aa4c3;
    white-space:nowrap;
}
.vip-type-chips{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}
.vip-type-chip{
    border:none;
    background:#101421;
    color:#cfd5ff;
    padding:4px 10px;
    border-radius:999px;
    font-size:11px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:4px;
}
.vip-type-chip.active{
    background:#5865f2;
    color:#fff;
}


.vip-composer-actions-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}

.vip-composer-action{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
    background:#111829;
    border-radius:14px;
    padding:9px 11px;
    border:1px solid #252b3a;
    font-size:13px;
    transition:background .15s, border-color .15s, transform .1s;
}
.vip-composer-action:hover{
    background:#171f33;
    transform:translateY(-1px);
}
.vip-composer-action.active{
    border-color:#5865f2;
    box-shadow:0 0 0 1px rgba(88,101,242,0.3);
}

.vip-composer-icon{
    font-size:18px;
}
.vip-composer-text{
    font-weight:500;
}
.vip-composer-sub{
    font-size:11px;
    color:#9aa4c3;
}


.vip-composer-media-input{
    width:100%;
    border-radius:8px;
    border:1px solid #252b3a;
    background:#0d1220;
    color:#fff;
    padding:6px 8px;
    font-size:12px;
    margin-top:4px;
}
.vip-poll-input{
    min-height:64px;
    resize:vertical;
}


.vip-composer-footer{
    margin-top:8px;
    display:flex;
    align-items:center;
    gap:10px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,0.06);
}

.vip-composer-schedule{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:#9aa4c3;
    cursor:pointer;
}
.vip-composer-schedule input[type="checkbox"]{
    margin-right:4px;
}
.vip-composer-schedule-icon{
    font-size:18px;
}
.vip-composer-schedule-title{
    font-weight:600;
}
.vip-composer-schedule-sub{
    font-size:11px;
    opacity:0.8;
}

.vip-schedule-datetime{
    border-radius:10px;
    border:1px solid #252b3a;
    background:#101421;
    color:#fff;
    padding:4px 8px;
    font-size:12px;
}

.vip-composer-submit{
    border:none;
    background:#5865f2;
    color:#fff;
    font-weight:600;
    font-size:14px;
    padding:8px 22px;
    border-radius:999px;
    cursor:pointer;
    margin-left:auto;
}
.vip-composer-submit:hover{
    background:#4752c4;
}


.vip-posts-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.vip-posts-empty{
    background:#151822;
    border-radius:12px;
    padding:16px;
    text-align:center;
    color:#cfd5ec;
    font-size:13px;
}

.vip-post-card{
    background:#151822;
    border-radius:14px;
    padding:10px 12px 12px;
    border:1px solid rgba(255,255,255,0.05);
}

.vip-post-header{
    display:flex;
    align-items:center;
    gap:8px;
}
.vip-post-avatar{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#0b0f19;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:15px;
    color:#fff;
    overflow:hidden;
}
.vip-post-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.vip-post-user-name{
    font-weight:600;
    font-size:13px;
}
.vip-post-user-meta{
    font-size:11px;
    color:#9aa4c3;
}

.vip-post-content{
    margin-top:6px;
}
.vip-post-title{
    font-size:14px;
    margin:0 0 3px;
    font-weight:600;
}
.vip-post-text{
    font-size:13px;
    margin:0;
    color:#d5dbf5;
}


.vip-post-media{
    margin-top:6px;
    border-radius:10px;
    overflow:hidden;
}
.vip-post-media img,
.vip-post-media video{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    background:#000;
}
.vip-post-media audio{
    width:100%;
}


.vip-post-footer{
    margin-top:6px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:11px;
    color:#9aa4c3;
}

.vip-post-footer-left{
    display:flex;
    align-items:center;
    gap:6px;
}
.vip-like-form{
    margin:0;
}
.vip-like-btn{
    border:none;
    background:transparent;
    color:#cfd5ec;
    display:inline-flex;
    align-items:center;
    gap:4px;
    cursor:pointer;
    padding:2px 6px;
    border-radius:999px;
    font-size:12px;
}
.vip-like-btn:hover{
    background:rgba(255,255,255,0.06);
}
.vip-like-btn.liked{
    color:#ff5c8a;
}
.vip-post-footer-right{
    display:flex;
    align-items:center;
    gap:4px;
}
.vip-post-footer-item{
    display:inline-flex;
    align-items:center;
    gap:3px;
}
.vip-post-footer-dot{
    margin:0 3px;
}


.vip-comments-block{
    margin-top:6px;
    border-top:1px solid rgba(255,255,255,0.06);
    padding-top:6px;
}
.vip-comments-list{
    display:flex;
    flex-direction:column;
    gap:4px;
    max-height:180px;
    overflow-y:auto;
    padding-right:4px;
}
.vip-comment-item{
    display:flex;
    align-items:flex-start;
    gap:6px;
    font-size:12px;
}
.vip-comment-avatar{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#0b0f19;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:11px;
    color:#fff;
    overflow:hidden;
}
.vip-comment-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.vip-comment-body{
    flex:1;
}
.vip-comment-header{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:11px;
}
.vip-comment-name{
    font-weight:600;
}
.vip-comment-time{
    color:#7c849c;
}
.vip-comment-text{
    font-size:12px;
    color:#d5dbf5;
}

.vip-comment-form{
    margin-top:5px;
    display:flex;
    align-items:center;
    gap:6px;
}
.vip-comment-form input[type="text"]{
    flex:1;
    border-radius:999px;
    border:1px solid #252b3a;
    background:#101421;
    color:#fff;
    padding:4px 9px;
    font-size:12px;
}
.vip-comment-form button{
    border:none;
    background:#2f3548;
    color:#fff;
    font-size:12px;
    padding:4px 12px;
    border-radius:999px;
    cursor:pointer;
}
.vip-comment-form button:hover{
    background:#3e4560;
}

@media (max-width: 900px){
    .vip-posts-container{
        padding:0 8px;
    }
}
@media (max-width: 768px){
    .vip-composer-actions-grid{
        grid-template-columns:1fr;
    }
}


.vip-comments-btn{
    border:none;
    background:transparent;
    color:#cfd5ec;
    font-size:11px;
    padding:2px 6px;
    border-radius:999px;
    cursor:pointer;
}
.vip-comments-btn:hover{
    background:rgba(255,255,255,0.06);
}


.vip-comments-modal{
    position:fixed;
    inset:0;
    display:none;
    z-index:9999;
}
.vip-comments-modal.open{
    display:block;
}

.vip-comments-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.vip-comments-window{
    position:relative;
    max-width:520px;
    width:100%;
    max-height:70vh;
    margin:60px auto;
    background:#151822;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 60px rgba(0,0,0,0.8);
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.vip-comments-window-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    font-weight:600;
}
.vip-comments-close{
    border:none;
    background:transparent;
    color:#cfd5ec;
    cursor:pointer;
    font-size:14px;
}

.vip-comments-window-body{
    padding:8px 10px 10px;
    display:flex;
    flex-direction:column;
    gap:6px;
    max-height:calc(70vh - 42px);
    overflow-y:auto;
}


.vip-comments-list{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.vip-comments-empty{
    font-size:12px;
    color:#cfd5ec;
    opacity:0.8;
}

.vip-comment-item{
    display:flex;
    align-items:flex-start;
    gap:6px;
    font-size:12px;
}
.vip-comment-avatar{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#0b0f19;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:11px;
    color:#fff;
    overflow:hidden;
}
.vip-comment-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.vip-comment-body{
    flex:1;
}
.vip-comment-header{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:11px;
}
.vip-comment-name{
    font-weight:600;
}
.vip-comment-time{
    color:#7c849c;
    font-size:11px;
}
.vip-comment-text{
    font-size:12px;
    color:#d5dbf5;
}

.vip-comment-form{
    margin-top:6px;
    display:flex;
    align-items:center;
    gap:6px;
}
.vip-comment-form input[type="text"]{
    flex:1;
    border-radius:999px;
    border:1px solid #252b3a;
    background:#101421;
    color:#fff;
    padding:5px 9px;
    font-size:12px;
}
.vip-comment-form button{
    border:none;
    background:#2f3548;
    color:#fff;
    font-size:12px;
    padding:5px 12px;
    border-radius:999px;
    cursor:pointer;
}
.vip-comment-form button:hover{
    background:#3e4560;
}


.vip-type-block{
    display:none;
}
.vip-type-block.active{
    display:flex;
}


.vip-post-delete-form{
    margin-left:auto;
}
.vip-post-delete-btn{
    border:none;
    background:transparent;
    color:#888;
    cursor:pointer;
    font-size:14px;
}
.vip-post-delete-btn:hover{
    color:#ff5c5c;
}


.vip-scheduled-box{
    margin-top:10px;
    background:#101421;
    border-radius:10px;
    padding:8px 10px;
    font-size:11px;
    color:#cfd5ec;
}
.vip-scheduled-title{
    font-weight:600;
    margin-bottom:4px;
}
.vip-scheduled-list{
    list-style:none;
    padding:0;
    margin:0;
}
.vip-scheduled-list li{
    display:flex;
    justify-content:space-between;
    gap:6px;
    padding:2px 0;
}
.vip-scheduled-type{
    font-weight:600;
    color:#9aa4ff;
    min-width:40px;
}
.vip-scheduled-name{
    flex:1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.vip-scheduled-date{
    opacity:0.8;
}


.vip-post-media img,
.vip-post-media video{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    background:#000;
}
.vip-post-media audio{
    width:100%;
}


.vip-poll-block{
    margin-bottom:6px;
}
.vip-poll-title{
    font-size:13px;
    font-weight:600;
    margin-bottom:4px;
}
.vip-poll-form{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.vip-poll-option{
    border:1px solid #252b3a;
    background:#101421;
    border-radius:999px;
    padding:4px 8px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:12px;
    color:#d5dbf5;
    cursor:pointer;
}
.vip-poll-option:hover{
    background:#171f33;
}
.vip-poll-option.selected{
    border-color:#5865f2;
    background:#20274a;
}
.vip-poll-count{
    font-weight:600;
}


.vip-comments-modal{
    position:fixed;
    inset:0;
    display:none;
    z-index:9999;
}
.vip-comments-modal.open{
    display:block;
}
.vip-comments-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}
.vip-comments-window{
    position:relative;
    max-width:520px;
    width:100%;
    max-height:70vh;
    margin:60px auto;
    background:#151822;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 60px rgba(0,0,0,0.8);
    display:flex;
    flex-direction:column;
    overflow:hidden;
}
.vip-comments-window-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    font-weight:600;
}
.vip-comments-close{
    border:none;
    background:transparent;
    color:#cfd5ec;
    cursor:pointer;
    font-size:14px;
}
.vip-comments-window-body{
    padding:8px 10px 10px;
    display:flex;
    flex-direction:column;
    gap:6px;
    max-height:calc(70vh - 42px);
    overflow-y:auto;
}


.vip-type-block{
    display:none;
}
.vip-type-block.active{
    display:flex;
}


.vip-post-delete-form{
    margin-left:auto;
}
.vip-post-delete-btn{
    border:none;
    background:transparent;
    color:#888;
    cursor:pointer;
    font-size:14px;
}
.vip-post-delete-btn:hover{
    color:#ff5c5c;
}


.vip-scheduled-box{
    margin-top:10px;
    background:#101421;
    border-radius:10px;
    padding:8px 10px;
    font-size:11px;
    color:#cfd5ec;
}
.vip-scheduled-title{
    font-weight:600;
    margin-bottom:4px;
}
.vip-scheduled-list{
    list-style:none;
    padding:0;
    margin:0;
}
.vip-scheduled-list li{
    display:flex;
    align-items:center;
    gap:6px;
    padding:2px 0;
}
.vip-scheduled-type{
    font-weight:600;
    color:#9aa4ff;
    min-width:40px;
}
.vip-scheduled-name{
    flex:1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.vip-scheduled-date{
    opacity:0.8;
    font-size:10px;
}
.vip-scheduled-delete-form{
    margin:0;
}
.vip-scheduled-delete-btn{
    border:none;
    background:transparent;
    color:#888;
    cursor:pointer;
    font-size:12px;
}
.vip-scheduled-delete-btn:hover{
    color:#ff5c5c;
}


.vip-comment-footer{
    margin-top:4px;
    display:flex;
    align-items:center;
    gap:6px;
}
.vip-comment-like-form{
    margin:0;
}
.vip-comment-like-btn{
    border:none;
    background:transparent;
    color:#cfd5ec;
    font-size:11px;
    padding:2px 6px;
    border-radius:999px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:3px;
}
.vip-comment-like-btn:hover{
    background:rgba(255,255,255,0.06);
}
.vip-comment-like-btn.liked{
    color:#ff5c8a;
}
.vip-comment-delete-form{
    margin:0;
}
.vip-comment-delete-btn{
    border:none;
    background:transparent;
    color:#888;
    cursor:pointer;
    font-size:12px;
}
.vip-comment-delete-btn:hover{
    color:#ff5c5c;
}


.vip-comments-btn{
    border:none;
    background:transparent;
    color:#cfd5ec;
    font-size:11px;
    padding:2px 6px;
    border-radius:999px;
    cursor:pointer;
}
.vip-comments-btn:hover{
    background:rgba(255,255,255,0.06);
}


.vip-post-media img,
.vip-post-media video{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    background:#000;
}
.vip-post-media audio{
    width:100%;
}


.vip-poll-block{
    margin-bottom:6px;
}
.vip-poll-title{
    font-size:13px;
    font-weight:600;
    margin-bottom:4px;
}
.vip-poll-form{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.vip-poll-option{
    border:1px solid #252b3a;
    background:#101421;
    border-radius:999px;
    padding:4px 8px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:12px;
    color:#d5dbf5;
    cursor:pointer;
}
.vip-poll-option:hover{
    background:#171f33;
}
.vip-poll-option.selected{
    border-color:#5865f2;
    background:#20274a;
}
.vip-poll-count{
    font-weight:600;
}


.vip-poll-form-inline{
    margin-top:6px;
}

.btn-discord {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    width:100%;
    margin-top:12px;
    padding:10px 14px;
    border-radius:4px;
    background:#5865F2;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    border:none;
    cursor:pointer;
    transition:background .2s, transform .1s;
}
.btn-discord:hover {
    background:#4752c4;
    transform:translateY(-1px);
}

.admin-settings-form input[type="password"] {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    outline: none;
}

.admin-settings-form input[type="password"]:focus {
    border-color: #e50914;
}

/* pola hasła w profilu / adminie */
.admin-settings-form input[type="password"],
.profile-card input[type="password"],
input[type="password"] {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    outline: none;
}

.admin-settings-form input[type="password"]:focus,
.profile-card input[type="password"]:focus,
input[type="password"]:focus {
    border-color: #e50914;
}
