:root {
    --header-bg: rgba(18, 18, 18, 0.95);
    --accent-color: #0EB2F1; /* Neon yashil */
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
}

.main-header {
    background: var(--header-bg);
    backdrop-filter: blur(10px); /* Orqa fonni xiralashtirish */
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 55px;
}

.brand-area .logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-area .logo-text span {
    color: var(--accent-color);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.nav-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Bildirishnoma nuqtasi (Sysdc uslubida) */
.counter-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff3b30;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 50px;
    border: 2px solid var(--header-bg);
    min-width: 18px;
    text-align: center;
}

.admin-mode {
    border: 1px dashed var(--accent-color) !important;
}

/* Mobil uchun moslashuv */
@media (max-width: 480px) {
    .main-header { padding: 8px 10px; }
    .nav-link { width: 34px; height: 34px; }
}

:root {
    --accent-color: #0EB2F1;
    --bg-dark: #05070a;
    --card-bg: rgba(13, 17, 23, 0.85);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #e6edf3;
    --text-dim: #8b949e;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0; padding: 0;
}

/* Kengaytirilgan Header */
.hero-header {
    background: linear-gradient(rgba(5, 7, 10, 0.4), rgba(5, 7, 10, 1)), 
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
}

/* Tezkor animatsiya (0.7s) */
.fade-in-fast {
    opacity: 0;
    animation: fadeInFast 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInFast {
    from { opacity: 0; transform: translateY(15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Neon Glass Tugmalar */
.auth-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeInFast 0.5s ease-out 0.3s forwards;
}

.btn-neon {
    padding: 12px 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-reg-neon {
    background: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 13, 255, 0.4);
}

.btn-reg-neon:hover {
    background: #fff;
    box-shadow: 0 0 30px #0EB2F1;
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-login-glass {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-login-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Boshqaruv Kartalari */
.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin: 12px;
    padding: 20px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px 10px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    
 
}

.service-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 255, 163, 0.05);
    transform: translateY(-4px);
    text-decoration: none;
}

.service-item img {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px var(--accent-color));
}

.title {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    margin: 15px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    border-left: 4px solid var(--accent-color);
}

/* Footer Asosiy Uslubi */
.main-footer {
    background: linear-gradient(to bottom, transparent, #0a0e14);
    padding: 50px 20px 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    text-align: center;
}

/* To'lov tizimlari bloki */
.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
    opacity: 0.6;
    filter: grayscale(1);
    transition: 0.4s;
}

.payment-methods:hover {
    opacity: 1;
    filter: grayscale(0);
    text-decoration: none;
}

.payment-methods img {
    height: 18px;
    width: auto;
}

/* Footer Navigatsiyasi */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin: 30px auto;
    text-align: left;
}

.footer-nav-col h4 {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-nav-col a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-nav-col a:hover {
    color: #fff;
    transform: translateX(5px);
    text-decoration: none;
}

/* Pastki qism va Ijtimoiy tarmoqlar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-links a img {
    width: 22px;
    height: 22px;
    filter: invert(1);
    opacity: 0.5;
    transition: 0.3s;
}

.social-links a:hover img {
    opacity: 1;
    filter: invert(1) drop-shadow(0 0 5px var(--accent-color));
    text-decoration: none;
}

.gen-info {
    display: inline-block;
    background: rgba(0, 255, 163, 0.05);
    border: 1px solid rgba(0, 255, 163, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--accent-color);
    margin-top: 20px;
    font-family: monospace;
}

.back-btn-container {
    padding: 20px 15px;
    text-align: left;
}

.back-btn {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 255, 163, 0.2);
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.back-btn:hover {
    background: rgba(0, 255, 163, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 163, 0.2);
    text-decoration: none;
}


/* Registratsiya sahifasi uchun maxsus */
.reg-container {
    padding: 40px 15px;
    display: flex;
    justify-content: center;
}

.reg-card {
    width: 100%;
    max-width: 400px;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.input-group {
    margin-bottom: 22px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 255, 163, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 255, 163, 0.1);
}

.captcha-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.captcha-box img {
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}

.error-msg {
    background: rgba(255, 69, 58, 0.15);
    border-left: 4px solid #ff453a;
    color: #ffb4ab;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 25px;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--accent-color);
    color: #010409;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 163, 0.3);
    text-decoration: none;
}


/* Asosiy ranglar va font */
:root {
    --accent-color: #0EB2F1;
    --bg-dark: #05070a;
    --card-bg: rgba(13, 17, 23, 0.9);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #e6edf3;
    --text-dim: #8b949e;
}

/* Dashboard Ro'yxati */
.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Tugmalar orasidagi masofa */
    padding: 20px 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Har bir tugma (List item) */
.dash-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Padding ichkarida qolishi uchun */
}

.dash-item:hover {
    border-color: var(--accent-color);
    background: rgba(14, 178, 241, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Kichik Buttonlar (Form ichidagilar) */
.btn-submit-sm {
    width: 100%;
    height: 45px; /* Balandlik aniq berildi */
    border: none;
    border-radius: 12px;
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit-sm:hover {
    box-shadow: 0 5px 15px rgba(14, 178, 241, 0.3);
}

.btn-exit-sm {
    background: #ff453a !important;
    color: #fff !important;
}

/* Badge uslublari */
.badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 5px;
}
.badge-success { background: rgba(0, 255, 163, 0.1); color: #00ffa3; }
.badge-danger { background: rgba(255, 69, 58, 0.1); color: #ff453a; }

/* Form elementlari */
.reg-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --grad-blue: linear-gradient(135deg, #0eb2f1 0%, #066085 100%);
}

.ticket-wrapper {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Karta uslubidagi tiketlar */
.ticket-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.ticket-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-color);
    transform: scale(1.02);
    text-decoration: none;
}

.ticket-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(14, 178, 241, 0.2);
}

.ticket-content { flex: 1; }
.ticket-content h4 { color: #fff; margin: 0 0 5px 0; font-size: 16px; font-weight: 600; }
.ticket-details { color: var(--text-dim); font-size: 12px; display: flex; gap: 15px; }

/* Chat UI */
.chat-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
}

.chat-messages {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.bubble {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.bubble.me {
    align-self: flex-end;
    background: var(--grad-blue);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.bubble.support {
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    color: #eee;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--glass-border);
}

.bubble-time {
    display: block;
    font-size: 10px;
    margin-top: 8px;
    opacity: 0.6;
    text-align: right;
}

/* Input qismi */
.chat-input-area {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--glass-border);
}

.custom-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px;
    color: #fff;
    resize: none;
    outline: none;
    transition: 0.3s;
}

.custom-textarea:focus { border-color: var(--accent-color); background: rgba(255,255,255,0.08); }

.status-tag {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
}
.tag-open { background: rgba(0, 255, 163, 0.15); color: #00ffa3; }
.tag-closed { background: rgba(255, 69, 58, 0.15); color: #ff453a; }



/* --- PREMIUM HOSTING CARDS SECTION --- */

/* Konteyner tartibi */
.hosting-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 40px 15px;
    max-width: 1250px;
    margin: 0 auto;
}

/* Asosiy Karta */
.h-card {
    position: relative;
    background: #0d0d10; /* To'q fon */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.h-action-btn {
    display: block;             /* Blok ko'rinishiga keltiramiz */
    width: 220px;               /* Tugmaning aniq kengligi (xohishingizga qarab o'zgartiring) */
    margin: 25px auto 0;        /* 25px tepadan bo'shliq, yonlardan AUTO (bu markazga oladi) */
    padding: 16px 20px;
    border-radius: 14px;
    text-align: center;         /* Ichidagi matnni markazga olish */
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s all;
    box-sizing: border-box;     /* Kenglikni hisoblashda xatolik bo'lmasligi uchun */
}
/* Hover effekti: Ko'tarilish va Neon soya */
.h-card:hover {
    transform: translateY(-15px);
    border-color: #0eb2f1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(14, 178, 241, 0.15);
}

/* Rasm konteyneri */
.h-img-container {
    position: relative;
    width: 100%;
    height: 170px;
    margin-bottom: 25px;
    border-radius: 22px;
    overflow: hidden;
}

.h-server-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.6s ease;
}

.h-card:hover .h-server-img {
    transform: scale(1.15);
    filter: brightness(1);
}

/* Sarlavha: Gradient effektli */
.h-name {
    font-size: 26px;
    font-weight: 800;
    margin: 10px 0;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Xususiyatlar listi */
.h-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.h-features li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    color: #a1a1a6;
    font-size: 14.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.h-features li b {
    color: #ffffff;
    font-weight: 600;
}

/* Narx bloki */
.h-price-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 22px;
    margin-top: auto;
    text-align: center;
}

.h-amount {
    font-size: 34px;
    font-weight: 900;
    color: #0eb2f1;
}

.h-amount span {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

/* Tugma: Premium Gradient */
.h-action-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-top: 25px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0eb2f1 0%, #066085 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(14, 178, 241, 0.2);
}

.h-action-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(14, 178, 241, 0.4);
    filter: brightness(1.2);
        text-decoration: none;
}

/* Amaldagi tarif uchun maxsus klass */
.btn-current {
    background: rgba(0, 255, 163, 0.08);
    border: 1px solid rgba(0, 255, 163, 0.3);
    color: #00ffa3;
    box-shadow: none;
}

.btn-current:hover {
    box-shadow: 0 0 15px rgba(0, 255, 163, 0.2);
}


.logs-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

/* Har bir log kartochkasi */
.log-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.log-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* Chap tomon: Ma'lumotlar */
.log-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.log-action {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.log-time {
    color: #64748b;
    font-size: 12px;
}

/* O'ng tomon: Summa */
.log-amount {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.plus {
    color: #00ffa3;
    text-shadow: 0 0 10px rgba(0, 255, 163, 0.2);
}

.minus {
    color: #ff453a;
    text-shadow: 0 0 10px rgba(255, 69, 58, 0.2);
}

/* Bo'sh holat */
.empty-logs {
    text-align: center;
    padding: 50px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

/* Asosiy konteyner */
.payment-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Miqdor kiritish bo'limi */
.amount-box {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.amount-box h2 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}

.input-wrapper {
    position: relative;
    display: inline-block;
}

.input-wrapper input {
    background: transparent;
    border: none;
    border-bottom: 3px solid #00d2ff;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    width: 250px;
    outline: none;
    padding: 10px;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-bottom-color: #00ffa3;
    text-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.currency-label {
    font-size: 24px;
    color: #00d2ff;
    margin-left: 10px;
    font-weight: 700;
}

/* To'lov usullari Gridi */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.method-card {
    background: #111218;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-10px);
    background: #161822;
    border-color: #00d2ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.method-card:hover .method-icon {
    background: #00d2ff;
    color: #000;
    transform: rotate(-10deg);
}

.method-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-descr {
    color: #64748b;
    font-size: 13px;
}

/* Submit tugmachasini karta ichida yashirish yoki ko'rsatish */
.method-card button {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

/* Auth Logs Container */
.auth-container {
    max-width: 850px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
}

/* Yuqori boshqaruv paneli */
.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-header a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.exit-all { color: #ff453a; border: 1px solid rgba(255, 69, 58, 0.2); }
.exit-all:hover { background: rgba(255, 69, 58, 0.1); }

/* Xavfsizlik kartochkasi */
.auth-card {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.auth-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: #141621;
}

.auth-card.current {
    border-left: 4px solid #34c759;
    background: rgba(52, 199, 89, 0.02);
}

/* Chap tomon: Qurilma ma'lumotlari */
.auth-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-ua {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-meta {
    color: #64748b;
    font-size: 12px;
    display: flex;
    gap: 15px;
}

.auth-ip { color: #00d2ff; font-family: monospace; }

/* O'ng tomon: Holat va Tugmalar */
.auth-status {
    text-align: right;
}

.badge {
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    text-transform: uppercase;
}

.badge-active { background: rgba(52, 199, 89, 0.1); color: #34c759; }
.badge-expired { background: rgba(255, 69, 58, 0.1); color: #ff453a; }

.reset-link {
    display: inline-block;
    margin-top: 8px;
    color: #ff453a;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(255, 69, 58, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
}

.reset-link:hover { background: #ff453a; color: #fff; }

/* Ogohlantirish (Hack attempt) */
.hack-alert {
    background: rgba(255, 159, 10, 0.1);
    border: 1px solid #ff9f0a;
    color: #ff9f0a;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 13px;
}