:root {
    --primary-color: #6C5CE7;
    --secondary-color: #00CEB4;
    --dark-bg: #0F0F13;
    --card-bg: #1A1A24;
    --text-light: #FFFFFF;
    --text-dimmed: #B8B8B8;
    --accent-red: #FF5252;
    --accent-green: #00C853;
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #00CEB4 100%);
    --border-radius: 12px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}



#__nuxt {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    background: var(--dark-bg);
}

.app-header {
    flex-shrink: 0;
    background: var(--card-bg);
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    justify-content: space-between;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    width: 100%;
    justify-content: space-between;
}

.app-header__brand {
    font-size: 20px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1;
}

.telegram-btn {
    color: #0088cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    margin-top: 27px;
    position: absolute;
}

.telegram-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-top: -33px;
    font-family: 'Montserrat', sans-serif;
}

.ping-status {
    font-size: 12px;
    color: var(--text-dimmed);
    font-family: 'Roboto Mono', monospace;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-green);
    border-radius: 50%;
    position: relative;
}

.status-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.app-layout {
    flex: 1;
    padding: 17px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
}

.layout {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.layout:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.layout-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.layout-bar__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.layout-label {
    font-size: 12px;
    color: var(--text-dimmed);
    font-weight: 700;
}

.layout-value {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-light);
}

.layout-value.compact {
    margin-top: -4px;
    margin-bottom: -4px;
}

.kill-brand {
    font-size: 16px;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.is-elite {
    color: #FFD700 !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.layout-bar__actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.btn-layout {
    background: var(--gradient-primary);
    color: white;
    z-index: 1;
}

.btn-layout:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    z-index: 1;
}

.btn.is-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.btn.is-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn.is-icon .icon {
    width: 20px;
    height: 20px;
    margin-top: 7px;
}

.app-menu {
    background: var(--card-bg);
    display: flex;
    padding: 10px 20px;
    justify-content: space-around;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'SF Pro Display', sans-serif;
    background: var(--card-bg);
    z-index: 100;
}

.app-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dimmed);
    font-size: 12px;
    font-weight: 500;
}

.app-menu__item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.app-menu__item svg {
    width: 24px;
    height: 24px;
}

.app-menu__item.is-active {
    color: var(--primary-color);
    background: rgba(108, 92, 231, 0.1);
}

.app-menu__item:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.05);
}

.is-elite::after {
    content: "";
    left: 206px;
    display: inline-block;
    position: absolute;
    width: 8px;
    height: 9px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.image-main {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 4px #0F0F13, 2px 5px 5px 6px rgba(0, 0, 0, .30);
}

.image-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.kill, .kill * {
    -webkit-user-drag: none;
}

.kill {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999999999;
    transition: all .5s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
}

.kill:not(.is-show) {
    transform: scale(0);
    opacity: 0;
}

.kill-button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1c2344;
    box-shadow: 0 0 0 4px #DB00FF, 0px 2px 15px 5px rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
}

.kill-button.is-dragging {
    transition: none;
    cursor: move;
}

.kill-button img {
    width: 100%;
    height: 100%;
}

.kill-button:hover {
    transform: scale(1.1);
}

.kill-button:active {
    transform: scale(.7);
}

.kill-button.is-hidden {
    transform: scale(0);
}

.kill-app {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
    background-color: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0px 2px 15px 5px rgba(0, 0, 0, .25);
    border-radius: 15px;
    width: 380px;
    height: 628px;
    overflow: hidden;
}

@media (max-width: 420px) {
    .kill {
    right: 15px;
    bottom: 15px;
    }

    .kill-app {
    width: calc(100vw - 30px);
    }
}

@media (max-height: 668px) {
    .kill-app {
    height: calc(80vh);
    }
}

.kill-app.is-dragging {
    transition: none;
}

.kill-app:not(.is-show) {
    opacity: 0;
    pointer-events: none;
}

.kill-app iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.kill-app__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 8px;
    transition: all .1s ease-in-out;
}

.kill-app__close:active {
    transform: scale(.9);
}

.kill-app__close span,
.kill-notification__close span {
    top: 50%;
    left: 50%;
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 5px;
    background-color: #888;
}

.kill-app__close span:first-child,
.kill-notification__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.kill-app__close span:last-child,
.kill-notification__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.kill-app__move {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .1s ease-in-out;
    padding: 8px 50px 20px;
    cursor: move;
}

.kill-app.is-dragging .kill-app__move {
    padding-bottom: 150px;
}

.kill-app__close:hover, .kill-app__move:hover {
    opacity: .5;
}

.kill-app__move span {
    display: block;
    width: 32px;
    height: 5px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .3);
}

.kill-refresh {
    position: absolute;
    right: -20px;
    bottom: -20px;
    background-color: white;
    padding: 4px;
    border-radius: 28px;
    box-shadow: 0px 2px 15px 5px rgb(0, 0, 0, .25);
    transition: all .2s ease-in-out;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    border: 3px solid white;
}

.kill-refresh.is-active {
    opacity: 1;
}

.kill-refresh:hover {
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, .2);
}

.kill-refresh:active {
    transform: scale(.9);
    opacity: .5;
}

.kill-refresh svg {
    width: 22px;
    height: 22px;
    color: black;
    display: block;
}

.kill-refresh__tooltip {
    background-color: #171d39;
    position: absolute;
    top: 50%;
    right: 38px;
    width: 254px;
    height: 36px;
    transform: translateY(-50%);
    border-radius: 28px;
    color: #a3abc6;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Geneva, arial, Tahoma, verdana, sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    line-height: 36px;
    pointer-events: none;
    opacity: 0;
    transition: all .2s ease-in-out;
    box-shadow: 0px 2px 15px 5px rgb(0, 0, 0, .25);
}

.kill-refresh:hover .kill-refresh__tooltip {
    opacity: 1;
}

.kill-guide {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Geneva, arial, Tahoma, verdana, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999999;
}

.kill-notification {
    opacity: 0;
    transform: scale(.8);
    transform-origin: right;
    transition: all .3s ease-in-out;
    background-color: #19191a;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0px 2px 15px 5px rgba(0, 0, 0, .25);
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Geneva, arial, Tahoma, verdana, sans-serif;
    z-index: 9999999999;
    border-radius: 15px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 340px;
    padding: 15px;
    font-size: 13px;
}

.kill-notification__close {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: #212122;
    border: 1px solid rgba(255, 255, 255, .2);
    width: 18px;
    height: 18px;
    transform: translate(-30%, -30%);
    opacity: 0;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.kill-notification__left {
    transform-origin: left;
    right: unset;
    left: 40px;
}

.kill-notification__left .kill-notification__close {
    transform: translate(30%, -30%);
    left: unset;
    right: 0;
}

.kill-notification__close span {
    width: 10px;
    height: 10px;
    height: 1px;
    background-color: #B7CCE0;
}

.kill-notification:hover .kill-notification__close {
    opacity: 1;
}

.kill-notification__title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.kill-notification__title img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 8px;
}

.kill-notification__text {
    line-height: 1.4;
    font-size: 14px;
    color: white;
}

.kill-notification.is-show {
    opacity: 1;
    transform: scale(1);
}

.kill-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 9999;
}

.kill-ads-vk {
    order: -1;
    width: 100%;
    padding-top: 13px;
    border-bottom: 1px solid var(--separator_common);
    text-decoration: none !important;
}

.kill-ads-vk img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 7px;
}

#ads_left {
    display: flex !important;
    flex-wrap: wrap;
}

#ads_left:not(.is-show) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.onmyneck {
    font-weight: 900;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: var(--box-shadow);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-close span {
    display: block;
    width: 12px;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
}

.modal-close span:first-child {
    transform: rotate(45deg);
}

.modal-close span:last-child {
    transform: rotate(-45deg);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
    text-align: center;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.modal-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.modal-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.modal-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.deposit-modal {
    text-align: center;
}

.deposit-loader {
    margin: 20px auto;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.deposit-text {
    margin-bottom: 20px;
    line-height: 1.5;
}

.deposit-error {
    color: var(--accent-red);
    margin-top: 10px;
    font-size: 14px;
    display: none;
    font-weight: 700;
}

.img1 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    opacity: 0.5;
}

/* Настройки */
.settings-container {
    padding: 20px;
    color: var(--text-light);
}

.settings-section {
    margin-bottom: 25px;
}

.settings-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-light);
}

.language-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-btn.active {
    background: var(--primary-color);
    color: white;
}