/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

/* Hide scrollbar for IE/Edge legacy */
body {
    -ms-overflow-style: none;
}

body {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
    display: none; /* Chrome */
}
* {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
}
 body {
     font-family: Poppins, sans-serif;
     min-height: 100vh;
     background: rgb(15, 15, 15);
     color: rgb(255, 255, 255);
}
 :root {
     --primary: #4CAF50;
     --secondary: #2196F3;
     --warning: #FFC107;
     --danger: #F44336;
     --neutral: #9E9E9E;
}
 .auth-wrapper {
     min-height: 100vh;
     background: linear-gradient(135deg, rgb(106, 17, 203), rgb(37, 117, 252));
     display: flex;
     align-items: center;
     justify-content: center;
}
 .auth-container {
     width: 100%;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
}
.auth-container {
    min-height: 100vh;
    padding: 20px;
}
 .auth-card, .login-box {
     width: 100%;
     max-width: 520px;
     padding: 40px;
     border-radius: 24px;
     backdrop-filter: blur(25px);
     background: rgba(255, 255, 255, 0.12);
     box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 60px;
     color: white;
}
 .input-group {
     margin-bottom: 15px;
}
 .input-group input {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     border: none;
     outline: none;
}
 button {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     border: none;
     background: rgb(255, 255, 255);
     color: rgb(51, 51, 51);
     font-weight: 600;
     cursor: pointer;
     margin-top: 10px;
     transition: 0.25s;
}
 button:hover {
     transform: translateY(-2px);
}
 .primary-btn {
     background: rgb(255, 255, 255);
     color: rgb(51, 51, 51);
}
 .secondary-btn {
     background: transparent;
     color: white;
     border: 1px solid rgba(255, 255, 255, 0.4);
}
 .secondary-btn:hover {
     background: rgba(255, 255, 255, 0.1);
}
 .sub-text, .bottom-text {
     text-align: center;
     font-size: 14px;
     opacity: 0.8;
}
 .bottom-text {
     margin-top: 20px;
}
 .bottom-text a {
     color: rgb(255, 255, 255);
     font-weight: 600;
     text-decoration: underline;
}
 .divider {
     text-align: center;
     margin: 18px 0px;
     font-size: 13px;
     opacity: 0.6;
}
 .error {
     color: rgb(255, 179, 179);
     text-align: center;
}
 .success {
     color: rgb(182, 255, 179);
     text-align: center;
}
 .progress-bar {
     width: 100%;
     height: 6px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     overflow: hidden;
     margin-bottom: 20px;
}
 .progress {
     height: 100%;
     background: rgb(255, 255, 255);
}
 .step-indicator {
     text-align: center;
     font-size: 13px;
     opacity: 0.7;
     margin-bottom: 10px;
}
 .verify-step {
     display: flex;
     gap: 12px;
     margin-bottom: 20px;
}
 .step-badge {
     background: rgb(255, 255, 255);
     color: rgb(106, 17, 203);
     border-radius: 50%;
     width: 28px;
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .code-box {
     background: rgba(255, 255, 255, 0.15);
     padding: 10px;
     border-radius: 8px;
     display: flex;
     justify-content: space-between;
}
 .layout {
     display: flex;
     min-height: 100vh;
}
 .user-menu {
     position: relative;
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
}
 .avatar {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     object-fit: cover;
}
 .user-name {
     font-size: 14px;
     font-weight: 500;
}
 .dropdown {
     position: absolute;
     top: 45px;
     right: 0px;
     background: rgba(20, 20, 20, 0.95);
     backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     padding: 8px;
     min-width: 160px;
     display: none;
     flex-direction: column;
     z-index: 1000;
}
 .dropdown.active {
     display: flex;
}
 .dropdown a {
     padding: 10px 12px;
     border-radius: 8px;
     text-decoration: none;
     color: rgb(221, 221, 221);
     font-size: 14px;
     transition: 0.2s;
}
 .dropdown a:hover {
     background: rgba(255, 255, 255, 0.08);
     color: white;
}
 .dropdown .logout {
     color: rgb(255, 107, 107);
}
 .app-layout .sidebar {
     width: 260px;
     background: rgb(15, 15, 15);
     border-right: 1px solid rgba(255, 255, 255, 0.05);
     padding: 20px 14px;
     position: fixed;
     top: 60px;
     left: 0px;
     height: calc(-60px + 100vh);
     display: flex;
     flex-direction: column;
     transform: translateX(-100%);
     transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
     will-change: transform;
}
 .sidebar.active {
     transform: translateX(0px);
}
 .sidebar-overlay {
     position: fixed;
     inset: 0px;
     background: rgba(0, 0, 0, 0.4);
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s;
}
 .sidebar-overlay.active {
     opacity: 1;
     pointer-events: auto;
}
 .sidebar .logo {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 25px;
     padding-left: 10px;
     letter-spacing: 0.5px;
}
 .sidebar nav {
     display: flex;
     flex-direction: column;
     gap: 6px;
}
 .sidebar a {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 14px;
     border-radius: 12px;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     transition: 0.2s;
}
 .sidebar a:hover {
     background: rgba(255, 255, 255, 0.06);
     color: rgb(255, 255, 255);
}
 .sidebar a.active {
     background: rgb(143, 245, 255);
     color: rgb(0, 63, 67);
     font-weight: 600;
}
 .sidebar a span {
     font-size: 18px;
     opacity: 0.8;
}
 .main {
     transition: transform 0.35s, filter 0.35s;
}
 .main.shifted {
     transform: scale(0.98);
     filter: brightness(0.85);
}
 .brand {
     display: flex;
     align-items: center;
     gap: 10px;
}
 .brand-logo {
     width: 32px;
     height: 32px;
     object-fit: contain;
}
 .brand-name {
     font-size: 18px;
     font-weight: 600;
     letter-spacing: 0.3px;
}
 .mobile-only {
     display: none;
}
 .desktop-only {
     display: flex;
}
 .sidebar-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     margin-bottom: 20px;
}
 .sidebar-brand {
     display: none !important;
}
 @media (max-width: 900px) {
     .sidebar-brand {
         display: flex !important;
    }
}
 @media (max-width: 900px) {
     .sidebar {
         transform: translateX(-100%);
    }
     .sidebar.active {
         transform: translateX(0px);
    }
     .sidebar-overlay {
         display: block;
    }
     .desktop-only {
         display: none;
    }
     .mobile-only {
         display: flex;
    }
}
 @media (min-width: 901px) {
     .app-layout .sidebar {
         transform: translateX(0px);
    }
     .app-layout .sidebar-overlay {
         display: none;
    }
     .app-layout .main {
         margin-left: 260px;
    }
}
 @media (max-width: 900px) {
     .main.shifted {
         transform: scale(0.98);
         filter: brightness(0.85);
    }
}
 .main {
     flex: 1 1 0%;
     display: flex;
     flex-direction: column;
     height: calc(-60px + 100vh);
     overflow: hidden;
}
 .topbar {
     position: sticky;
     top: 0px;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 20px;
     background: rgb(15, 15, 15);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .layout {
     display: flex;
}
 .sidebar {
     display: flex;
     flex-direction: column;
}
 .nav-top {
     display: flex;
     flex-direction: column;
     gap: 6px;
}
 .nav-bottom {
     margin-top: auto;
     display: flex;
     flex-direction: column;
     gap: 6px;
     padding-top: 20px;
}
 .menu-btn {
     display: none;
     font-size: 22px;
     background: none;
     border: none;
     color: white;
     cursor: pointer;
}
 .sidebar-overlay {
     display: none;
}
 @media (max-width: 900px) {
     .menu-btn {
         display: block;
    }
     .layout {
         display: block;
    }
     .sidebar {
         position: fixed;
         top: 0px;
         height: 100vh;
         z-index: 1001;
         transform: translateX(-100%);
    }
     .sidebar.active {
         transform: translateX(0px);
    }
     .sidebar-overlay {
         position: fixed;
         inset: 0px;
         background: rgba(0, 0, 0, 0.5);
         display: none;
         z-index: 1000;
    }
     .sidebar-overlay.active {
         display: block;
    }
}
 .content {
     flex: 1 1 0%;
     max-width: 1300px;
     margin: auto;
}
 .global-performance {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 20px;
     margin-bottom: 30px;
}
 .gp-card {
     background: rgb(22, 22, 22);
     padding: 20px;
     border-radius: 18px;
}
 .gp-card.large {
     padding: 25px;
}
 .gp-header {
     font-size: 12px;
     opacity: 0.6;
     margin-bottom: 10px;
}
 .gp-value {
     font-size: 36px;
     font-weight: 700;
}
 .gp-value.small {
     font-size: 28px;
}
 .gp-growth {
     font-size: 14px;
     color: rgb(34, 197, 94);
     margin-left: 10px;
}
 .gp-bar {
     height: 6px;
     background: rgb(42, 42, 42);
     border-radius: 10px;
     margin-top: 15px;
}
 .gp-bar-fill {
     width: 80%;
     height: 100%;
     background: rgb(79, 124, 255);
     border-radius: 10px;
}
 .gp-status.good {
     color: rgb(34, 197, 94);
     font-size: 22px;
     font-weight: 600;
}
 .gp-health-bars {
     display: flex;
     gap: 6px;
     margin-top: 10px;
}
 .gp-health-bars div {
     width: 30px;
     height: 12px;
     background: rgb(42, 42, 42);
     border-radius: 6px;
}
 .gp-health-bars .active {
     background: rgba(34, 197, 94, 0.4);
}
 .gp-health-bars .strong {
     background: rgb(34, 197, 94);
}
 .panel-header-pro {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
}
 .panel-header-pro h1 {
     font-size: 22px;
     font-weight: 600;
}
 .panel-header-pro p {
     font-size: 13px;
     opacity: 0.6;
}
 .header-actions {
     display: flex;
     gap: 10px;
}
 .header-actions input {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 10px 14px;
     border-radius: 999px;
     color: white;
     outline: none;
     width: 220px;
}
 .header-actions input:focus {
     border-color: rgb(79, 124, 255);
}
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 14px;
     margin-bottom: 20px;
}
 .stat-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     padding: 14px 16px;
     transition: 0.2s;
}
 .stat-card:hover {
     background: rgba(255, 255, 255, 0.06);
}
 .stat-card span {
     font-size: 12px;
     opacity: 0.6;
}
 .stat-card h2 {
     margin-top: 5px;
     font-size: 22px;
}
 .filter-bar {
     display: flex;
     gap: 8px;
     margin-bottom: 15px;
}
 .filter-bar button {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 6px 14px;
     border-radius: 999px;
     font-size: 13px;
     cursor: pointer;
     color: white;
}
 .filter-bar button:hover {
     background: rgba(255, 255, 255, 0.1);
}
 .panel-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 16px;
}
 .panel-card {
     background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 16px;
     padding: 16px;
     transition: 0.25s;
     position: relative;
}
 .panel-card:hover {
     transform: translateY(-3px);
     border-color: rgba(255, 255, 255, 0.15);
}
 .panel-card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .panel-left {
     display: flex;
     gap: 12px;
     align-items: center;
}
 .panel-left img {
     width: 42px;
     height: 42px;
     border-radius: 12px;
}
 .panel-left h3 {
     font-size: 15px;
     margin: 0px;
}
 .panel-left span {
     font-size: 12px;
     opacity: 0.6;
}
 .status-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
}
 .status-dot.online {
     background: rgb(34, 197, 94);
     box-shadow: rgba(34, 197, 94, 0.533) 0px 0px 10px;
}
 .status-dot.offline {
     background: rgb(244, 67, 54);
}
 .panel-card-body {
     margin-top: 12px;
     font-size: 13px;
}
 .panel-meta {
     display: flex;
     justify-content: space-between;
     margin-bottom: 6px;
     opacity: 0.85;
}
 .panel-notes {
     margin-top: 10px;
     font-size: 12px;
     opacity: 0.6;
     background: rgba(255, 255, 255, 0.04);
     padding: 8px;
     border-radius: 10px;
}
 .panel-card-footer {
     margin-top: 14px;
     display: flex;
     gap: 8px;
}
 .panel-card-footer button, .panel-card-footer a {
     flex: 1 1 0%;
     text-align: center;
     padding: 8px;
     border-radius: 10px;
     font-size: 13px;
     cursor: pointer;
     border: none;
     text-decoration: none;
}
 .panel-card-footer .open-btn {
     background: rgb(79, 124, 255);
}
 .panel-card-footer button {
     background: rgba(255, 255, 255, 0.08);
}
 .panel-card-footer .danger {
     background: rgb(244, 67, 54);
}
 @media (max-width: 900px) {
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .header-actions input {
         width: 140px;
    }
}
 .panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
}
 .panel-header h2 {
     margin: 0px;
}
 .panel-header p {
     opacity: 0.6;
     font-size: 14px;
}
 .create-btn {
     background: linear-gradient(90deg, rgb(95, 109, 255), rgb(108, 123, 255));
     color: white;
     border: none;
     padding: 12px 22px;
     border-radius: 999px;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     width: auto;
     min-width: unset;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     white-space: nowrap;
     transition: 0.25s;
}
 .create-btn:hover {
     transform: translateY(-2px);
}
 .create-btn:hover {
     transform: translateY(-2px);
     opacity: 0.95;
}
 .panel-list {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
}
 .modern-card {
     background: rgb(22, 22, 22);
     padding: 20px;
     border-radius: 18px;
     transition: 0.2s;
}
 .modern-card:hover {
     transform: translateY(-4px);
}
 .card-top {
     display: flex;
     justify-content: space-between;
     margin-bottom: 10px;
}
 .icon {
     width: 40px;
     height: 40px;
     background: rgb(34, 34, 34);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
}
 .status {
     font-size: 12px;
     padding: 4px 10px;
     border-radius: 999px;
}
 .status.active {
     background: rgba(34, 197, 94, 0.133);
     color: rgb(34, 197, 94);
}
 .status.idle {
     background: rgba(153, 153, 153, 0.133);
     color: rgb(170, 170, 170);
}
 .desc {
     opacity: 0.6;
     font-size: 14px;
     margin-bottom: 15px;
}
 .card-actions {
     display: flex;
     gap: 10px;
}
 .btn {
     flex: 1 1 0%;
     padding: 10px;
     border-radius: 10px;
     text-align: center;
     text-decoration: none;
}
 .btn.primary {
     background: rgb(79, 124, 255);
     color: white;
}
 .btn.secondary {
     background: rgb(34, 34, 34);
     color: white;
}
 .panel-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .panel-item {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 16px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: 0.2s;
     position: relative;
}
 .panel-item:hover {
     background: rgba(255, 255, 255, 0.1);
     z-index: 10;
}
 .panel-avatar {
     width: 42px;
     height: 42px;
     border-radius: 50%;
}
 .panel-info {
     flex: 1 1 0%;
}
 .panel-name {
     font-weight: 600;
}
 .panel-domain {
     font-size: 13px;
     opacity: 0.7;
}
 .panel-badges {
     display: flex;
     gap: 6px;
}
 .badge {
     padding: 5px 10px;
     border-radius: 999px;
     font-size: 12px;
}
 .badge.free {
     color: var(--secondary);
}
 .badge.paid {
     color: var(--warning);
}
 .badge.active {
     color: var(--primary);
}
 .badge.inactive {
     color: var(--danger);
}
 .add-btn {
     width: auto;
     background: var(--secondary);
     color: rgb(255, 255, 255);
     padding: 10px 18px;
     border-radius: 999px;
     cursor: pointer;
}
 .open-btn {
     background: var(--primary);
     color: rgb(255, 255, 255);
     padding: 6px 14px;
     border-radius: 999px;
     cursor: pointer;
}
 .modal-overlay {
     position: fixed;
     inset: 0px;
     background: rgba(0, 0, 0, 0.4);
     backdrop-filter: blur(8px);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 999;
}
 .modal-overlay.active {
     display: flex;
}
 .modal-box {
     width: 100%;
     max-width: 420px;
     padding: 25px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.15);
     color: white;
     text-align: center;
     animation: 0.3s ease 0s 1 normal none running fadeIn;
}
 .modal-sub {
     font-size: 13px;
     opacity: 0.7;
     margin-bottom: 20px;
}
 .modal-options {
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .modal-card {
     padding: 15px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     cursor: pointer;
     transition: 0.2s;
}
 .modal-card:hover {
     background: rgba(255, 255, 255, 0.12);
     transform: translateY(-2px);
}
 .modal-close {
     margin-top: 15px;
     padding: 8px 14px;
     border-radius: 999px;
     border: none;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     cursor: pointer;
}
 @keyframes fadeIn {
     0% {
         opacity: 0;
         transform: scale(0.95);
    }
     100% {
         opacity: 1;
         transform: scale(1);
    }
}
 .action-menu {
     position: absolute;
     right: 0px;
     top: 45px;
     display: none;
     flex-direction: column;
     background: rgba(30, 30, 30, 0.95);
     border-radius: 12px;
     padding: 8px;
}
 .action-menu.active {
     display: flex;
}
 .panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
}
 .panel-header h3 {
     font-size: 20px;
     font-weight: 600;
}
 .panel-header small {
     opacity: 0.6;
     font-size: 13px;
}
 .content {
     flex: 1 1 0%;
     overflow-y: auto;
     padding: 30px;
}
 .panel-item {
     padding: 18px 20px;
     border-radius: 14px;
     background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
     border: 1px solid rgba(255, 255, 255, 0.08);
     transition: 0.25s;
}
 .panel-item:hover {
     transform: translateY(-2px);
     border-color: rgba(255, 255, 255, 0.15);
}
 .panel-right {
     display: flex;
     align-items: center;
     gap: 10px;
}
 .open-btn {
     padding: 6px 16px;
     border-radius: 999px;
     font-size: 13px;
     font-weight: 600;
}
 .action-btn {
     width: 36px;
     height: 36px;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
}
 .action-btn:hover {
     background: rgba(255, 255, 255, 0.15);
}
 .panel-badges {
     min-width: 140px;
     justify-content: flex-end;
}
 .panel-list p {
     text-align: center;
     margin-top: 40px;
     opacity: 0.5;
}
 .content {
     width: 100%;
     max-width: 1200px;
     margin: 0px auto;
     padding: 20px 24px;
}
 @media (max-width: 900px) {
     .panel-header-pro {
         flex-direction: column;
         align-items: flex-start;
         gap: 12px;
    }
     .header-actions {
         width: 100%;
         display: flex;
         gap: 8px;
    }
     .header-actions input {
         flex: 1 1 0%;
         width: 100%;
    }
     .create-btn {
         flex-shrink: 0;
    }
}
 @media (max-width: 900px) {
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
    }
}
 @media (max-width: 500px) {
     .stats-grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 900px) {
     .filter-bar {
         flex-wrap: wrap;
         gap: 6px;
    }
     .filter-bar button {
         flex: 1 1 0%;
         text-align: center;
    }
}
 .panel-grid {
     width: 100%;
}
 @media (max-width: 1100px) {
     .panel-grid {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width: 600px) {
     .panel-grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 600px) {
     .panel-card {
         padding: 14px;
    }
     .panel-card-footer {
         flex-direction: column;
    }
     .panel-card-footer button, .panel-card-footer a {
         width: 100%;
    }
}
 @media (max-width: 900px) {
     .main {
         margin-left: 0px !important;
    }
}
 @media (max-width: 600px) {
     .content {
         padding: 16px;
    }
}
 .app-layout html, .app-layout body {
     overflow: hidden;
}
 * {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
}
 body {
     font-family: Poppins, sans-serif;
     min-height: 100vh;
     background: rgb(15, 15, 15);
     color: rgb(255, 255, 255);
}
 :root {
     --primary: #4CAF50;
     --secondary: #2196F3;
     --warning: #FFC107;
     --danger: #F44336;
     --neutral: #9E9E9E;
}
 .auth-wrapper {
     min-height: 100vh;
     background: linear-gradient(135deg, rgb(106, 17, 203), rgb(37, 117, 252));
     display: flex;
     align-items: center;
     justify-content: center;
}
 .auth-container {
     width: 100%;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .auth-card, .login-box {
     width: 100%;
     max-width: 520px;
     padding: 40px;
     border-radius: 24px;
     backdrop-filter: blur(25px);
     background: rgba(255, 255, 255, 0.12);
     box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 60px;
     color: white;
}
 .input-group {
     margin-bottom: 15px;
}
 .input-group input {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     border: none;
     outline: none;
}
 button {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     border: none;
     background: rgb(255, 255, 255);
     color: rgb(51, 51, 51);
     font-weight: 600;
     cursor: pointer;
     margin-top: 10px;
     transition: 0.25s;
}
 button:hover {
     transform: translateY(-2px);
}
 .primary-btn {
     background: rgb(255, 255, 255);
     color: rgb(51, 51, 51);
}
 .secondary-btn {
     background: transparent;
     color: white;
     border: 1px solid rgba(255, 255, 255, 0.4);
}
 .secondary-btn:hover {
     background: rgba(255, 255, 255, 0.1);
}
 .sub-text, .bottom-text {
     text-align: center;
     font-size: 14px;
     opacity: 0.8;
}
 .bottom-text {
     margin-top: 20px;
}
 .bottom-text a {
     color: rgb(255, 255, 255);
     font-weight: 600;
     text-decoration: underline;
}
 .divider {
     text-align: center;
     margin: 18px 0px;
     font-size: 13px;
     opacity: 0.6;
}
 .error {
     color: rgb(255, 179, 179);
     text-align: center;
}
 .success {
     color: rgb(182, 255, 179);
     text-align: center;
}
 .progress-bar {
     width: 100%;
     height: 6px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     overflow: hidden;
     margin-bottom: 20px;
}
 .progress {
     height: 100%;
     background: rgb(255, 255, 255);
}
 .step-indicator {
     text-align: center;
     font-size: 13px;
     opacity: 0.7;
     margin-bottom: 10px;
}
 .verify-step {
     display: flex;
     gap: 12px;
     margin-bottom: 20px;
}
 .step-badge {
     background: rgb(255, 255, 255);
     color: rgb(106, 17, 203);
     border-radius: 50%;
     width: 28px;
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .code-box {
     background: rgba(255, 255, 255, 0.15);
     padding: 10px;
     border-radius: 8px;
     display: flex;
     justify-content: space-between;
}
 .layout {
     display: flex;
     min-height: 100vh;
}
 .user-menu {
     position: relative;
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
}
 .avatar {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     object-fit: cover;
}
 .user-name {
     font-size: 14px;
     font-weight: 500;
}
 .dropdown {
     position: absolute;
     top: 45px;
     right: 0px;
     background: rgba(20, 20, 20, 0.95);
     backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     padding: 8px;
     min-width: 160px;
     display: none;
     flex-direction: column;
     z-index: 1000;
}
 .dropdown.active {
     display: flex;
}
 .dropdown a {
     padding: 10px 12px;
     border-radius: 8px;
     text-decoration: none;
     color: rgb(221, 221, 221);
     font-size: 14px;
     transition: 0.2s;
}
 .dropdown a:hover {
     background: rgba(255, 255, 255, 0.08);
     color: white;
}
 .dropdown .logout {
     color: rgb(255, 107, 107);
}
 .app-layout .sidebar {
     width: 260px;
     background: rgb(15, 15, 15);
     border-right: 1px solid rgba(255, 255, 255, 0.05);
     padding: 20px 14px;
     position: fixed;
     top: 60px;
     left: 0px;
     height: calc(-60px + 100vh);
     display: flex;
     flex-direction: column;
     transform: translateX(-100%);
     transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
     will-change: transform;
}
 .sidebar.active {
     transform: translateX(0px);
}
 .sidebar-overlay {
     position: fixed;
     inset: 0px;
     background: rgba(0, 0, 0, 0.4);
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s;
}
 .sidebar-overlay.active {
     opacity: 1;
     pointer-events: auto;
}
 .sidebar .logo {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 25px;
     padding-left: 10px;
     letter-spacing: 0.5px;
}
 .sidebar nav {
     display: flex;
     flex-direction: column;
     gap: 6px;
}
 .sidebar a {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 14px;
     border-radius: 12px;
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     transition: 0.2s;
}
 .sidebar a:hover {
     background: rgba(255, 255, 255, 0.06);
     color: rgb(255, 255, 255);
}
 .sidebar a.active {
     background: rgb(143, 245, 255);
     color: rgb(0, 63, 67);
     font-weight: 600;
}
 .sidebar a span {
     font-size: 18px;
     opacity: 0.8;
}
 .main {
     transition: transform 0.35s, filter 0.35s;
}
 .main.shifted {
     transform: scale(0.98);
     filter: brightness(0.85);
}
 .brand {
     display: flex;
     align-items: center;
     gap: 10px;
}
 .brand-logo {
     width: 32px;
     height: 32px;
     object-fit: contain;
}
 .brand-name {
     font-size: 18px;
     font-weight: 600;
     letter-spacing: 0.3px;
}
 .mobile-only {
     display: none;
}
 .desktop-only {
     display: flex;
}
 .sidebar-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 14px;
     margin-bottom: 20px;
}
 .sidebar-brand {
     display: none !important;
}
 @media (max-width: 900px) {
     .sidebar-brand {
         display: flex !important;
    }
}
 @media (max-width: 900px) {
     .sidebar {
         transform: translateX(-100%);
    }
     .sidebar.active {
         transform: translateX(0px);
    }
     .sidebar-overlay {
         display: block;
    }
     .desktop-only {
         display: none;
    }
     .mobile-only {
         display: flex;
    }
}
 @media (min-width: 901px) {
     .app-layout .sidebar {
         transform: translateX(0px);
    }
     .app-layout .sidebar-overlay {
         display: none;
    }
     .app-layout .main {
         margin-left: 260px;
    }
}
 @media (max-width: 900px) {
     .main.shifted {
         transform: scale(0.98);
         filter: brightness(0.85);
    }
}
 .main {
     flex: 1 1 0%;
     display: flex;
     flex-direction: column;
     height: calc(-60px + 100vh);
     overflow: hidden;
}

.main {
    min-height: calc(100vh - 60px);
    overflow-y: auto;
}
 .topbar {
     position: sticky;
     top: 0px;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 20px;
     background: rgb(15, 15, 15);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
 .layout {
     display: flex;
}
 .sidebar {
     display: flex;
     flex-direction: column;
}
 .nav-top {
     display: flex;
     flex-direction: column;
     gap: 6px;
}
 .nav-bottom {
     margin-top: auto;
     display: flex;
     flex-direction: column;
     gap: 6px;
     padding-top: 20px;
}
 .menu-btn {
     display: none;
     font-size: 22px;
     background: none;
     border: none;
     color: white;
     cursor: pointer;
}
 .sidebar-overlay {
     display: none;
}
 @media (max-width: 900px) {
     .menu-btn {
         display: block;
    }
     .layout {
         display: block;
    }
     .sidebar {
         position: fixed;
         top: 0px;
         height: 100vh;
         z-index: 1001;
         transform: translateX(-100%);
    }
     .sidebar.active {
         transform: translateX(0px);
    }
     .sidebar-overlay {
         position: fixed;
         inset: 0px;
         background: rgba(0, 0, 0, 0.5);
         display: none;
         z-index: 1000;
    }
     .sidebar-overlay.active {
         display: block;
    }
}
 .content {
     flex: 1 1 0%;
     max-width: 1300px;
     margin: auto;
}
 .global-performance {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 20px;
     margin-bottom: 30px;
}
 .gp-card {
     background: rgb(22, 22, 22);
     padding: 20px;
     border-radius: 18px;
}
 .gp-card.large {
     padding: 25px;
}
 .gp-header {
     font-size: 12px;
     opacity: 0.6;
     margin-bottom: 10px;
}
 .gp-value {
     font-size: 36px;
     font-weight: 700;
}
 .gp-value.small {
     font-size: 28px;
}
 .gp-growth {
     font-size: 14px;
     color: rgb(34, 197, 94);
     margin-left: 10px;
}
 .gp-bar {
     height: 6px;
     background: rgb(42, 42, 42);
     border-radius: 10px;
     margin-top: 15px;
}
 .gp-bar-fill {
     width: 80%;
     height: 100%;
     background: rgb(79, 124, 255);
     border-radius: 10px;
}
 .gp-status.good {
     color: rgb(34, 197, 94);
     font-size: 22px;
     font-weight: 600;
}
 .gp-health-bars {
     display: flex;
     gap: 6px;
     margin-top: 10px;
}
 .gp-health-bars div {
     width: 30px;
     height: 12px;
     background: rgb(42, 42, 42);
     border-radius: 6px;
}
 .gp-health-bars .active {
     background: rgba(34, 197, 94, 0.4);
}
 .gp-health-bars .strong {
     background: rgb(34, 197, 94);
}
 .panel-header-pro {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
}
 .panel-header-pro h1 {
     font-size: 22px;
     font-weight: 600;
}
 .panel-header-pro p {
     font-size: 13px;
     opacity: 0.6;
}
 .header-actions {
     display: flex;
     gap: 10px;
}
 .header-actions input {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 10px 14px;
     border-radius: 999px;
     color: white;
     outline: none;
     width: 220px;
}
 .header-actions input:focus {
     border-color: rgb(79, 124, 255);
}
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 14px;
     margin-bottom: 20px;
}
 .stat-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     padding: 14px 16px;
     transition: 0.2s;
}
 .stat-card:hover {
     background: rgba(255, 255, 255, 0.06);
}
 .stat-card span {
     font-size: 12px;
     opacity: 0.6;
}
 .stat-card h2 {
     margin-top: 5px;
     font-size: 22px;
}
 .filter-bar {
     display: flex;
     gap: 8px;
     margin-bottom: 15px;
}
 .filter-bar button {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 6px 14px;
     border-radius: 999px;
     font-size: 13px;
     cursor: pointer;
     color: white;
}
 .filter-bar button:hover {
     background: rgba(255, 255, 255, 0.1);
}
 .panel-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 16px;
}
 .panel-card {
     background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 16px;
     padding: 16px;
     transition: 0.25s;
     position: relative;
}
 .panel-card:hover {
     transform: translateY(-3px);
     border-color: rgba(255, 255, 255, 0.15);
}
 .panel-card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .panel-left {
     display: flex;
     gap: 12px;
     align-items: center;
}
 .panel-left img {
     width: 42px;
     height: 42px;
     border-radius: 12px;
}
 .panel-left h3 {
     font-size: 15px;
     margin: 0px;
}
 .panel-left span {
     font-size: 12px;
     opacity: 0.6;
}
 .status-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
}
 .status-dot.online {
     background: rgb(34, 197, 94);
     box-shadow: rgba(34, 197, 94, 0.533) 0px 0px 10px;
}
 .status-dot.offline {
     background: rgb(244, 67, 54);
}
 .panel-card-body {
     margin-top: 12px;
     font-size: 13px;
}
 .panel-meta {
     display: flex;
     justify-content: space-between;
     margin-bottom: 6px;
     opacity: 0.85;
}
 .panel-notes {
     margin-top: 10px;
     font-size: 12px;
     opacity: 0.6;
     background: rgba(255, 255, 255, 0.04);
     padding: 8px;
     border-radius: 10px;
}
 .panel-card-footer {
     margin-top: 14px;
     display: flex;
     gap: 8px;
}
 .panel-card-footer button, .panel-card-footer a {
     flex: 1 1 0%;
     text-align: center;
     padding: 8px;
     border-radius: 10px;
     font-size: 13px;
     cursor: pointer;
     border: none;
     text-decoration: none;
}
 .panel-card-footer .open-btn {
     background: rgb(79, 124, 255);
}
 .panel-card-footer button {
     background: rgba(255, 255, 255, 0.08);
}
 .panel-card-footer .danger {
     background: rgb(244, 67, 54);
}
 @media (max-width: 900px) {
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .header-actions input {
         width: 140px;
    }
}
 .panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
}
 .panel-header h2 {
     margin: 0px;
}
 .panel-header p {
     opacity: 0.6;
     font-size: 14px;
}
 .create-btn {
     background: linear-gradient(90deg, rgb(95, 109, 255), rgb(108, 123, 255));
     color: white;
     border: none;
     padding: 12px 22px;
     border-radius: 999px;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     width: auto;
     min-width: unset;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     white-space: nowrap;
     transition: 0.25s;
}
 .create-btn:hover {
     transform: translateY(-2px);
}
 .create-btn:hover {
     transform: translateY(-2px);
     opacity: 0.95;
}
 .panel-list {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
}
 .modern-card {
     background: rgb(22, 22, 22);
     padding: 20px;
     border-radius: 18px;
     transition: 0.2s;
}
 .modern-card:hover {
     transform: translateY(-4px);
}
 .card-top {
     display: flex;
     justify-content: space-between;
     margin-bottom: 10px;
}
 .icon {
     width: 40px;
     height: 40px;
     background: rgb(34, 34, 34);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
}
 .status {
     font-size: 12px;
     padding: 4px 10px;
     border-radius: 999px;
}
 .status.active {
     background: rgba(34, 197, 94, 0.133);
     color: rgb(34, 197, 94);
}
 .status.idle {
     background: rgba(153, 153, 153, 0.133);
     color: rgb(170, 170, 170);
}
 .desc {
     opacity: 0.6;
     font-size: 14px;
     margin-bottom: 15px;
}
 .card-actions {
     display: flex;
     gap: 10px;
}
 .btn {
     flex: 1 1 0%;
     padding: 10px;
     border-radius: 10px;
     text-align: center;
     text-decoration: none;
}
 .btn.primary {
     background: rgb(79, 124, 255);
     color: white;
}
 .btn.secondary {
     background: rgb(34, 34, 34);
     color: white;
}
 .panel-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .panel-item {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 16px;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: 0.2s;
     position: relative;
}
 .panel-item:hover {
     background: rgba(255, 255, 255, 0.1);
     z-index: 10;
}
 .panel-avatar {
     width: 42px;
     height: 42px;
     border-radius: 50%;
}
 .panel-info {
     flex: 1 1 0%;
}
 .panel-name {
     font-weight: 600;
}
 .panel-domain {
     font-size: 13px;
     opacity: 0.7;
}
 .panel-badges {
     display: flex;
     gap: 6px;
}
 .badge {
     padding: 5px 10px;
     border-radius: 999px;
     font-size: 12px;
}
 .badge.free {
     color: var(--secondary);
}
 .badge.paid {
     color: var(--warning);
}
 .badge.active {
     color: var(--primary);
}
 .badge.inactive {
     color: var(--danger);
}
 .add-btn {
     width: auto;
     background: var(--secondary);
     color: rgb(255, 255, 255);
     padding: 10px 18px;
     border-radius: 999px;
     cursor: pointer;
}
 .open-btn {
     background: var(--primary);
     color: rgb(255, 255, 255);
     padding: 6px 14px;
     border-radius: 999px;
     cursor: pointer;
}
 .modal-overlay {
     position: fixed;
     inset: 0px;
     background: rgba(0, 0, 0, 0.4);
     backdrop-filter: blur(8px);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 999;
}
 .modal-overlay.active {
     display: flex;
}
 .modal-box {
     width: 100%;
     max-width: 420px;
     padding: 25px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(255, 255, 255, 0.15);
     color: white;
     text-align: center;
     animation: 0.3s ease 0s 1 normal none running fadeIn;
}
 .modal-sub {
     font-size: 13px;
     opacity: 0.7;
     margin-bottom: 20px;
}
 .modal-options {
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .modal-card {
     padding: 15px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.1);
     cursor: pointer;
     transition: 0.2s;
}
 .modal-card:hover {
     background: rgba(255, 255, 255, 0.12);
     transform: translateY(-2px);
}
 .modal-close {
     margin-top: 15px;
     padding: 8px 14px;
     border-radius: 999px;
     border: none;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     cursor: pointer;
}
 @keyframes fadeIn {
     0% {
         opacity: 0;
         transform: scale(0.95);
    }
     100% {
         opacity: 1;
         transform: scale(1);
    }
}
 .action-menu {
     position: absolute;
     right: 0px;
     top: 45px;
     display: none;
     flex-direction: column;
     background: rgba(30, 30, 30, 0.95);
     border-radius: 12px;
     padding: 8px;
}
 .action-menu.active {
     display: flex;
}
 .panel-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
}
 .panel-header h3 {
     font-size: 20px;
     font-weight: 600;
}
 .panel-header small {
     opacity: 0.6;
     font-size: 13px;
}
 .content {
     flex: 1 1 0%;
     overflow-y: auto;
     padding: 30px;
}
 .panel-item {
     padding: 18px 20px;
     border-radius: 14px;
     background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
     border: 1px solid rgba(255, 255, 255, 0.08);
     transition: 0.25s;
}
 .panel-item:hover {
     transform: translateY(-2px);
     border-color: rgba(255, 255, 255, 0.15);
}
 .panel-right {
     display: flex;
     align-items: center;
     gap: 10px;
}
 .open-btn {
     padding: 6px 16px;
     border-radius: 999px;
     font-size: 13px;
     font-weight: 600;
}
 .action-btn {
     width: 36px;
     height: 36px;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
}
 .action-btn:hover {
     background: rgba(255, 255, 255, 0.15);
}
 .panel-badges {
     min-width: 140px;
     justify-content: flex-end;
}
 .panel-list p {
     text-align: center;
     margin-top: 40px;
     opacity: 0.5;
}
 .content {
     width: 100%;
     max-width: 1200px;
     margin: 0px auto;
     padding: 20px 24px;
}
 @media (max-width: 900px) {
     .panel-header-pro {
         flex-direction: column;
         align-items: flex-start;
         gap: 12px;
    }
     .header-actions {
         width: 100%;
         display: flex;
         gap: 8px;
    }
     .header-actions input {
         flex: 1 1 0%;
         width: 100%;
    }
     .create-btn {
         flex-shrink: 0;
    }
}
 @media (max-width: 900px) {
     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
    }
}
 @media (max-width: 500px) {
     .stats-grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 900px) {
     .filter-bar {
         flex-wrap: wrap;
         gap: 6px;
    }
     .filter-bar button {
         flex: 1 1 0%;
         text-align: center;
    }
}
 .panel-grid {
     width: 100%;
}
 @media (max-width: 1100px) {
     .panel-grid {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width: 600px) {
     .panel-grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 600px) {
     .panel-card {
         padding: 14px;
    }
     .panel-card-footer {
         flex-direction: column;
    }
     .panel-card-footer button, .panel-card-footer a {
         width: 100%;
    }
}
 @media (max-width: 900px) {
     .main {
         margin-left: 0px !important;
    }
}
 @media (max-width: 600px) {
     .content {
         padding: 16px;
    }
}
