:root {
    --cs-orange: #FF6B35;
    --cs-orange-light: #FF9A6C;
    --cs-orange-dark: #E55A2B;
    --cs-dark: #0F0F13;
    --cs-darker: #08080A;
    --cs-light: #F0F2F5;
    --cs-light-gray: #A0A4AB;
    --cs-red: #FF4757;
    --cs-green: #2ED573;
    --cs-blue: #1E90FF;
    --cs-purple: #8A2BE2;
    /* Variabile moderne */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(15, 15, 19, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--cs-dark);
    color: var(--cs-light);
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    line-height: 1.6;
    min-height: 100vh;
}

html, body {
  overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(1rem, 5vw, 2rem);
}

/* Header modern */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo img {
    height: 65px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform var(--transition);
}

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

.logo h1 {
    color: transparent;
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.admins_total{
    background:#2d3748;
    padding:15px;
    border-radius:8px;
    margin-bottom:15px;
    display:block;
	margin-left:auto;
	margin-right:auto;
	width:130px;
}

/* Navigation modernă */
nav {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    gap: 0.5rem;
}

.nav-menu li {
    position: relative;
}

.cf-turnstile {
    padding: 0.75rem;
    position: relative;
    top: 0;
    left: 0;
	display:flex;
	margin: 0 auto;
	justify-content:center;
}

.suspended-hover {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ff9800;
    font-weight: bold;
    cursor: pointer;
    transition: .3s ease;
}

.suspended-hover:hover {
    color: #ffc107;
    transform: translateY(-1px);
}


/* Tooltip */
.suspended-hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    max-width: 320px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    border: 1px solid rgba(255,152,0,.6);
    box-shadow:
        0 10px 30px rgba(0,0,0,.45),
        0 0 15px rgba(255,152,0,.25);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .25s ease,
        transform .25s ease;
    z-index: 9999;
}


/* sageata */
.suspended-hover::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: calc(100% + 4px);

    transform: translateX(-50%);

    border-width: 7px;
    border-style: solid;

    border-color:
        rgba(15,23,42,.95)
        transparent
        transparent
        transparent;

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;

    z-index: 10000;
}


.suspended-hover:hover::after,
.suspended-hover:hover::before {

    opacity: 1;
    visibility: visible;

}


.suspended-hover:hover::after {

    transform:
        translateX(-50%)
        translateY(0);

}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--cs-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.05);
    height: 50px;
}

.nav-menu li a:hover {
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.nav-menu li a.active {
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
    color: white;
    box-shadow: var(--shadow-orange);
}

.nav-menu li a i {
    font-size: 1.1rem;
}

/* Main content modern */
.main-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    width: 100;
}

/* Login form modern */
.login-form {
    max-width: 420px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--cs-light);
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.login-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cs-light);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 92%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--cs-light);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cs-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

/* Butoane moderne */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-danger {
    background: linear-gradient(135deg, var(--cs-red) 0%, #ff2e43 100%);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #ff2e43 0%, var(--cs-red) 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--cs-green) 0%, #25c05a 100%);
}

.btn-success:hover {
    background: linear-gradient(135deg, #25c05a 0%, var(--cs-green) 100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cs-blue) 0%, #3071a9 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3071a9 0%, var(--cs-blue) 100%);
}

/* News items moderne */
.news-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--cs-orange);
    position: relative;
    transition: all var(--transition);
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.08);
}

.news-item h3 {
    color: var(--cs-orange);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.news-item p {
    line-height: 1.7;
    color: var(--cs-light-gray);
}

.news-actions {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.news-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cs-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.news-actions a:hover {
    background: var(--cs-orange);
    color: white;
    transform: scale(1.1);
}

.add-news-form {
    margin-top: 2rem;
}

.add-news-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Table modern */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

table th {
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
    color: white;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--cs-light);
}

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

table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.table-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cs-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    gap: 0.5rem;
}

.table-actions a:hover {
    background: var(--cs-orange);
    color: white;
    transform: scale(1.1);
}

/* Pagination modern */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    font-family: 'Inter', sans-serif;
    list-style: none;
}

.pagination .page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cs-light);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
}

.pagination .page-link:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--cs-orange);
    color: var(--cs-orange);
    transform: translateY(-2px);
}

.pagination .page-link.current,
.pagination .active .page-link {
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-orange);
}

.pagination .disabled .page-link,
.pagination .page-link.disabled {
    background: rgba(255, 255, 255, 0.02);
    color: var(--cs-light-gray);
    border-color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* Footer modern */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
    width: 95% !important;
}

footer p {
    color: var(--cs-light-gray);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal modern */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 10, 0.9);
    backdrop-filter: blur(10px);
    overflow: auto;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    margin: 10vh auto;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--cs-light);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.close-modal:hover {
    background: var(--cs-red);
    color: white;
    transform: rotate(90deg);
}

/* Alerts moderne */
.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    color: var(--cs-green);
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: var(--cs-red);
}

/* Ban form modern */
.ban-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ban-form-grid {
    display: block;
	width:98%;
}

.ban-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cs-light);
    font-size: 0.95rem;
}

.ban-form input,
.search-input {
    width: 98%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--cs-light);
    transition: all var(--transition);
}

.ban-form input:focus,
.search-input:focus {
    outline: none;
    border-color: var(--cs-red);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}

.form-actions {
    grid-column: 1 / -1;
    text-align: right;
}

.search-btn,
.ban-btn {
    background: linear-gradient(135deg, var(--cs-red) 0%, #ff2e43 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    top: 15px;
}

.search-btn:hover,
.ban-btn:hover {
    background: linear-gradient(135deg, #ff2e43 0%, var(--cs-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

/* Table styling modern */
.ban-table {
    padding: 2rem;
}

.ban-table table {
    background: transparent;
    border: none;
}

.ban-table th {
    background: linear-gradient(135deg, var(--cs-orange) 0%, var(--cs-orange-dark) 100%);
}

.ban-table td {
    color: var(--cs-light);
}

.table-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.table-actions a:hover {
    background: var(--cs-green);
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.3);
    transform: translateY(-2px);
}

/* Animations moderne */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-in {
    animation: slideIn 0.4s ease-out;
}

/* Responsive modern */
@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 1.25rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .nav-menu li a {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .main-content {
        width: 100%;
        padding: 1.5rem;
    }

    table th,
    table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   Responsive: Table, Nav, Forms, Footer
   ======================================== */

/* Tablet & small screens */
@media (max-width: 768px) {

    /* Navigation -> vertical */
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

	.ban-form input,
.search-input {
    width: 90%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--cs-light);
    transition: all var(--transition);
}

    .nav-menu li a {
        justify-content: center;
    }

    /* Main content padding */
    .main-content {
        padding: 1.25rem;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    /* Ban form grid -> single column */
    .ban-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile small screens */
@media (max-width: 576px) {

    /* ========================================
       GENERAL
    ======================================== */

    body {
        font-size: 15px;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
    }


    /* ========================================
       LOGO
    ======================================== */

    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .logo img {
        height: 50px;
    }

    .logo h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }


    /* ========================================
       HEADINGS
    ======================================== */

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }


    /* ========================================
       MAIN CONTENT
    ======================================== */

    .main-content {
        width: 100%;
        box-sizing: border-box;
        padding: 1rem;
        margin-bottom: 1rem;
    }


    /* ========================================
       NEWS
    ======================================== */

    .news-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .news-item h3 {
        padding-right: 70px;
        font-size: 1.15rem;
    }

    .news-actions {
        position: absolute;
        top: 10px;
        right: 10px;

        display: flex;
        gap: 5px;
    }

    .news-actions a {
        position: static;
        left: auto;

        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
    }


    /* ========================================
       TABLE - MOBILE CARD MODE
    ======================================== */

    table {
        display: block;
        width: 100%;
        box-sizing: border-box;

        background: transparent;
        border: none;

        overflow: visible;
    }

    thead {
        display: none;
    }

    tbody {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }


    /* ========================================
       TABLE ROW / CARD
    ======================================== */

    tr {
        display: block;

        width: 100%;
        box-sizing: border-box;

        margin: 0;
        padding: 10px 12px;

        background: rgba(255, 255, 255, 0.035);

        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 12px;

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);

        overflow: hidden;
    }

    tr:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }


    /* ========================================
       TABLE CELLS
    ======================================== */

    td {
        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-width: 0;

        box-sizing: border-box;

        padding: 8px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

        color: var(--cs-light);

        font-size: 13px;
        line-height: 1.4;

        text-align: right;

        overflow-wrap: anywhere;
        word-break: break-word;
    }

    td:last-child {
        border-bottom: none;
        padding-bottom: 3px;
    }


    /* ========================================
       TABLE LABEL
    ======================================== */

    td::before {
        content: attr(data-label);

        display: block;

        flex-shrink: 0;

        margin-right: 12px;

        color: var(--cs-orange);

        font-size: 10px;
        font-weight: 700;

        text-align: left;

        text-transform: uppercase;
        letter-spacing: 0.4px;
    }


    /* ========================================
       CELL CONTENT
    ======================================== */

    td > span,
    td > a,
    td > strong {
        max-width: 65%;

        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /* ========================================
       TABLE ACTIONS
    ======================================== */

    .table-actions {
        display: flex;

        align-items: center;
        justify-content: flex-end;

        gap: 5px;

        width: auto;
    }

    .table-actions a {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        width: auto;
        min-width: 34px;
        height: 34px;

        padding: 0 8px;

        border-radius: 8px;

        font-size: 12px;
    }


    /* ========================================
       BAN TABLE
    ======================================== */

    .ban-table {
        padding: 0;
    }

    .ban-table table {
        margin-bottom: 0;
    }


    /* ========================================
       FOOTER
    ======================================== */

    footer {
        width: 100% !important;
        box-sizing: border-box;

        padding: 1.25rem 0.75rem;
    }

    footer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }


    /* ========================================
       PAGINATION
    ======================================== */

    .pagination {
        display: flex;
        flex-wrap: wrap;

        justify-content: center;

        gap: 0.35rem;

        margin: 1.5rem 0;
    }

    .pagination li:not(.active):not(:first-child):not(:last-child):not(.prev):not(.next) {
        display: none;
    }

    .pagination .page-link {
        min-width: 44px;
        height: 44px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 0.95rem;

        border-radius: var(--radius-md);
    }

    .pagination .page-link i {
        font-size: 1.1rem;
    }

}

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }

    .main-content {
        padding: 2.5rem;
    }

    .logo h1 {
        font-size: 2.75rem;
    }
}

/* =========================
   CHANGE PASSWORD FIX (MATCH PANEL)
========================= */

.page-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.header-title i {
    color: var(--cs-orange);
}

.section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.section-header i {
    color: var(--cs-orange);
}

.section-header h3 {
    color: var(--cs-light);
}

/* form wrapper */
.command-form-container {
    margin-top: 1rem;
}

/* labels compatibile cu designul tău */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cs-light);
}

/* input compatibil cu command-textarea */
.command-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--cs-light);
    transition: all var(--transition);
    font-family: inherit;
}

.command-textarea:focus {
    outline: none;
    border-color: var(--cs-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

/* alerts align cu theme */
.alert {
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.25);
    color: var(--cs-green);
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.25);
    color: var(--cs-red);
}

/* buton alignment fix */
.btn-primary {
    margin-top: 10px;
}

/* =========================================================
   PREMIUM PANEL LOADER
   ========================================================= */

#panel-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 107, 53, 0.08),
            transparent 35%
        ),
        #07090d;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

#panel-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: min(320px, 90vw);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    animation: loaderAppear 0.7s ease both;
}

.loader-logo {
    position: relative;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.loader-ring {
    position: absolute;
    inset: 0;

    border-radius: 50%;

    border: 3px solid rgba(255, 255, 255, 0.06);
    border-top-color: var(--primary);
    border-right-color: var(--primary);

    animation:
        loaderRotate 1s linear infinite;

    box-shadow:
        0 0 25px rgba(255, 107, 53, 0.2);
}

.loader-dot {
    width: 20px;
    height: 20px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    box-shadow:
        0 0 25px rgba(255, 107, 53, 0.5);

    animation:
        loaderPulse 1.2s ease-in-out infinite;
}

.loader-title {
    color: #fff;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.5px;

    margin-bottom: 4px;
}

.loader-subtitle {
    color: var(--text-muted);

    font-size: 13px;

    margin-bottom: 22px;
}

.loader-progress {
    position: relative;

    width: 220px;
    height: 4px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.06);

    border-radius: 999px;
}

.loader-progress span {
    position: absolute;

    left: 0;
    top: 0;

    width: 40%;
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(
        90deg,
        var(--cs-orange-dark),
        var(--cs-orange),
        var(--cs-orange-light)
    );

    box-shadow:
        0 0 15px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.25);

    animation: loaderProgress 1.3s ease-in-out infinite;
}

@keyframes loaderRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes loaderProgress {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

@keyframes loaderAppear {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   JS RIPPLE
   ========================================================= */

.btn,
.search-btn,
.ban-btn {
    isolation: isolate;
}

.js-ripple {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    background:
        rgba(255, 255, 255, 0.22);

    transform: scale(0);

    animation:
        rippleEffect 0.6s ease-out;

    z-index: 0;
}

.btn > *,
.search-btn > *,
.ban-btn > * {
    position: relative;
    z-index: 1;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}


/* =========================================================
   INPUT FOCUS
   ========================================================= */

.input-focused {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}


/* =========================================================
   NAV CLICK
   ========================================================= */

.nav-clicked {
    animation:
        navClick 0.3s ease;
}

@keyframes navClick {
    0% {
        transform: scale(0.96);
    }

    60% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}


/* =========================================================
   CARD TRANSFORM
   ========================================================= */

.section,
.login-form,
.news-item {
    transform-style: preserve-3d;
    will-change: transform;
}