:root{--bg:#031018;--card:#0b1216;--neon:#00d5d5;--accent:#ffcc00;--muted:#9aa7ad}
*{box-sizing:border-box;font-family:Inter,Arial, sans-serif}
html,body{height:100%;margin:0;background:linear-gradient(180deg,#071018 0%, #03060a 80%);color:#e9f6f6}
.container{max-width:1180px;margin:0 auto;padding:28px}
.site-header{background:linear-gradient(90deg, rgba(1,14,20,0.95), rgba(6,18,24,0.95));border-bottom:2px solid rgba(0,213,213,0.06)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding:18px 28px}
.logo{font-weight:800;color:var(--neon);font-size:28px}
.logo span{color:#8df0ff}
.main-nav a{color:#dbeff0;text-decoration:none;margin-left:22px;opacity:0.95}
.main-nav a.admin-link{color:#ff4b8b}
h1{font-size:48px;margin:20px 0 24px;color:#cfeff0;text-shadow:0 6px 40px rgba(0,0,0,0.7)}
.card{background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border-radius:14px;padding:36px;border:2px solid rgba(0,213,213,0.07);box-shadow: 0 18px 40px rgba(0,0,0,0.7), 0 0 40px rgba(0,213,213,0.035) inset;margin-bottom:36px}
.stats-row{display:flex;gap:20px;margin-bottom:28px;flex-wrap:wrap}
.stat{flex:1 1 240px;background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));padding:26px;border-radius:12px;border-left:6px solid var(--neon);position:relative;box-shadow:0 14px 30px rgba(0,0,0,0.6)}
.stat h3{margin:0;color:#cfeef0;font-size:16px}
.stat .num{font-size:40px;font-weight:700;margin-top:10px;color:#fff}
.btn{display:inline-block;padding:12px 18px;border-radius:8px;background:var(--accent);color:#111;font-weight:700;text-decoration:none;border:none;cursor:pointer;box-shadow:0 8px 20px rgba(0,0,0,0.5)}
.site-footer{padding:48px 0;color:#9fb0b5;text-align:center}
input[type=text], input[type=password], input[type=number], textarea {background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04);color:#dfeff0;padding:10px;border-radius:8px;width:100%}
table{border-collapse:collapse}
table th, table td{padding:8px;border-bottom:1px solid rgba(255,255,255,0.03)}
.pawn-table {
    width: 100%;
    background: #1b1b1b;
    border-collapse: collapse;
    color: white;
    margin-top: 20px;
}

.pawn-table th, .pawn-table td {
    border: 1px solid #333;
    padding: 12px;
    text-align: center;
}

.btn-admin {
    display: inline-block;
    padding: 8px 14px;
    background: #FFD700;
    color: black;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255,215,0,0.4);
    transition: 0.2s;
}
.btn-admin:hover {
    background: #ffea3c;
    box-shadow: 0 0 16px rgba(255,215,0,0.6);
}

.admin-label {
    color: #00ff88;
    font-weight: bold;
}
/* Общая обёртка */
.lk-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    color: #dff7ff;
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Заголовок */
.lk-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: #c9f8ff;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.5),
                 0 0 60px rgba(0, 200, 255, 0.25);
}

/* Карточка */
.lk-card {
    background: rgba(5, 10, 20, 0.75);
    border: 1px solid rgba(0, 200, 255, 0.35);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(14px);
    box-shadow:
        0 0 40px rgba(0, 200, 255, 0.08),
        inset 0 0 30px rgba(0, 60, 80, 0.25);
    transition: .25s;
}

.lk-card:hover {
    box-shadow:
        0 0 60px rgba(0, 200, 255, 0.2),
        inset 0 0 40px rgba(0, 120, 160, 0.28);
    transform: translateY(-3px);
}

/* Заголовки в карточке */
.lk-card h2 {
    font-size: 30px;
    color: #78eaff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.lk-card h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #9be8ff;
    font-weight: 700;
}

/* Блоки информации */
.lk-user-info {
    margin-bottom: 20px;
}

.lk-user-info p {
    font-size: 20px;
    margin-bottom: 8px;
    color: #e0faff;
}

.lk-user-info span {
    color: #5cecff;
    font-weight: 600;
}

/* Поля ввода */
.lk-form input {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 16px;
    transition: 0.25s;
}

.lk-form input:focus {
    outline: none;
    border: 1px solid #00eaff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
}

/* Кнопки */
.lk-form button {
    padding: 14px;
    background: linear-gradient(90deg, #ffe600, #ffcc00);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(120, 90, 0, 0.5);
}

.lk-form button:hover {
    background: linear-gradient(90deg, #fff000, #ffdb00);
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(255, 240, 0, 0.5);
}

.lk-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Сообщения */
.msg {
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0;
    animation: msgFade .4s forwards;
}

@keyframes msgFade {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.msg-success {
    background: rgba(0, 255, 100, 0.18);
    color: #5dff93;
    border: 1px solid #2dff7a;
    box-shadow: 0 0 12px rgba(0, 255, 120, 0.25);
}

.msg-error {
    background: rgba(255, 0, 0, 0.18);
    color: #ff6a6a;
    border: 1px solid #ff3a3a;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
}
.home-container {
    width: 100%;
    padding-top: 80px;
    text-align: center;
    color: #e8ffff;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0,255,255,0.25);
}

.hero-title span {
    color: #00eaff;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.hero-image {
    width: 400px;
    opacity: 0.9;
    margin-top: 20px;
    filter: drop-shadow(0 0 25px rgba(0,200,255,0.4));
    animation: float 4s ease-in-out infinite;
}

/* Анимация парения */
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

.home-footer {
    margin-top: 90px;
    font-size: 16px;
    color: #5ed2ff;
    opacity: 0.7;
}

.home-footer span {
    color: #ff0084;
    font-weight: 700;
}
.lk-wrapper {
    margin-top: 0 !important;
}
.tg-topup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #229ED9;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.tg-topup-btn img {
    width: 22px;
    height: 22px;
}

.tg-topup-btn:hover {
    background: #1e8ec3;
    transform: translateY(-2px);
}