* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0c0c0f;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.logo {
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-brand .badge {
    color: #9f56cb;
    border: 1px solid #9f56cb;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    margin-left: 8px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff;
}

.nav-link i {
    font-size: 14px;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 12px;
    font-family: inherit;
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-btn i {
    font-size: 10px;
    margin-left: 4px;
    color: #666;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #1a1a1f;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #ccc;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-dropdown a:hover {
    background: rgba(255,255,255,0.05);
}

.lang-dropdown img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}

.btn-gradient {
    background: linear-gradient(135deg, #9f56cb 0%, #e056a0 100%);
    color: #fff;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-dark {
    background: #1a1a1f;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-dark:hover {
    background: #252530;
}

.btn i {
    font-size: 14px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 500px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.benefits-title h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefits-title p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.benefit-header i {
    color: #9f56cb;
}

.benefit-body {
    padding: 20px;
}

.benefit-body p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* Video Section */
.video-container h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.video-container > p {
    color: #666;
    margin-bottom: 30px;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Statistics */
.statistics-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 200px;
}

.stat > i {
    font-size: 24px;
    color: #9f56cb;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content span {
    font-size: 13px;
    color: #666;
}

.stat-content p {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Footer */
.footer {
    background: #08080a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.footer-left span,
.footer-right span {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-left a,
.footer-right a {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-left a:hover,
.footer-right a:hover {
    color: #9f56cb;
}

.footer-center {
    text-align: center;
}

.footer-center span {
    display: block;
    color: #555;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-copyright {
    text-align: center;
    color: #444;
    font-size: 13px;
}

/* Services Page */
.services {
    padding: 120px 0 80px;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
}

.service-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-info > p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.price {
    color: #9f56cb;
    font-weight: 600;
}

.discount {
    background: rgba(159, 86, 203, 0.15);
    color: #9f56cb;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 8px;
}

.btn-buy {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-container {
        flex-direction: column;
        align-items: center;
    }
}


/* Auth Pages */
.auth-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

.auth-panel {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.auth-panel h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-input {
    width: 100%;
    background: #0c0c0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #9f56cb;
}

.form-input::placeholder {
    color: #666;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    margin-bottom: 20px;
    line-height: 1.5;
}

.checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: #9f56cb;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-container span {
    flex: 1;
}

.checkbox-container a {
    color: #9f56cb;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.auth-link {
    color: #9f56cb;
    font-size: 14px;
    transition: opacity 0.2s;
}

.auth-link:hover {
    opacity: 0.8;
}

.auth-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-bottom {
    text-align: center;
    margin-top: 20px;
}

/* Cabinet Page */
.cabinet-content {
    padding: 120px 0 80px;
}

.cabinet-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cabinet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 12px;
}

.cabinet-item span:first-child {
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cabinet-item span:first-child i {
    color: #9f56cb;
    width: 20px;
}

.cabinet-item span:last-child {
    font-weight: 500;
}

.cabinet-item-input {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 400px;
}

.cabinet-item-input input {
    flex: 1;
    background: #0c0c0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
}

.cabinet-item-input input:focus {
    outline: none;
    border-color: #9f56cb;
}

.cabinet-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cabinet-buttons .btn {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .cabinet-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cabinet-item-input {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }
}


/* Utility */
.w-100 {
    width: 100%;
}


/* Toast Notifications */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #1a1a1f;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-success {
    border-left: 4px solid #22c55e;
}

.toast-success .toast-icon {
    color: #22c55e;
}

.toast-icon {
    font-size: 20px;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-content strong {
    font-size: 13px;
}

.toast-content span {
    color: #888;
    font-size: 13px;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    color: #fff;
}


/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    display: flex;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    justify-content: flex-end;
}

/* Payment Modal */
.payment-modal {
    max-width: 700px;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-method {
    background: #1a1a1f;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.payment-method:hover {
    border-color: rgba(159, 86, 203, 0.5);
}

.payment-method.active {
    border-color: #9f56cb;
    background: rgba(159, 86, 203, 0.1);
}

.payment-method img {
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
}

.payment-info h4 {
    margin-bottom: 20px;
}

.payment-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-price s {
    color: #ef4444;
}

.payment-price b {
    color: #22c55e;
    font-size: 18px;
}

.payment-gift {
    background: rgba(159, 86, 203, 0.1);
    border: 1px solid rgba(159, 86, 203, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.payment-gift span {
    color: #9f56cb;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.payment-gift p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 600px) {
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Legal Pages */
.legal-content {
    padding: 120px 0 80px;
}

.legal-panel {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-panel h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.legal-text {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.legal-text ul,
.legal-text ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: #9f56cb;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Utility */
.mt-3 {
    margin-top: 15px;
}


.legal-text h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 25px 0 12px;
}

.legal-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
}

.legal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 13px;
}

.rules-list p {
    padding-left: 10px;
    border-left: 2px solid #9f56cb;
    margin-bottom: 12px;
}


/* 404 Page */
.error-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

.error-panel {
    text-align: center;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(135deg, #9f56cb 0%, #e056a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-panel h4 {
    font-size: 28px;
    margin-bottom: 10px;
}

.error-panel p {
    color: #888;
    margin-bottom: 30px;
}

/* Admin Panel */
.admin-content {
    padding: 100px 0 80px;
}

.admin-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-card i {
    font-size: 24px;
    color: #9f56cb;
}

.stat-card span {
    color: #888;
    font-size: 13px;
}

.stat-card p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.tab-btn {
    background: #111115;
    border: 1px solid rgba(255,255,255,0.05);
    color: #888;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #9f56cb 0%, #e056a0 100%);
    color: #fff;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.admin-actions {
    margin-bottom: 20px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #111115;
    border-radius: 12px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-table th {
    background: #0c0c0f;
    color: #888;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table td {
    font-size: 14px;
}

.admin-table code {
    background: #0c0c0f;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #9f56cb;
}

.admin-table .actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1a1a1f;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: #fff;
    border-color: #9f56cb;
}

.btn-icon.btn-danger:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.btn-icon.btn-success:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.badge-admin {
    background: rgba(159, 86, 203, 0.2);
    color: #9f56cb;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.badge-user {
    background: rgba(100, 100, 100, 0.2);
    color: #888;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.badge-active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.badge-banned {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
    }
}


/* Small button */
.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    margin-left: auto;
}

/* Purchase item */
.purchase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.purchase-item:last-child {
    border-bottom: none;
}

/* Cabinet item with button */
.cabinet-item .btn-sm {
    flex-shrink: 0;
}


/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .navbar-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 15px;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .nav-left {
        border-right: none;
        padding-right: 0;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        justify-content: center;
    }
    
    .nav-right {
        flex-direction: column;
        width: 100%;
        padding-top: 15px;
        gap: 10px;
    }
    
    .nav-right .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Form select */
.form-input option {
    background: #1a1a1f;
    color: #fff;
}

select.form-input {
    cursor: pointer;
}


/* Auth description */
.auth-desc {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Loader */
.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(159, 86, 203, 0.2);
    border-top-color: #9f56cb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.auth-status {
    color: #888;
    font-size: 13px;
    text-align: center;
}


/* Payment Modal */
.payment-product {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}

.payment-product h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.payment-balance {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(159, 86, 203, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-balance span:last-child {
    font-weight: 600;
    color: #9f56cb;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #1a1a1f;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.payment-option:hover {
    border-color: #9f56cb;
    background: rgba(159, 86, 203, 0.1);
}

.payment-option i {
    font-size: 20px;
    color: #9f56cb;
    width: 30px;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option.disabled:hover {
    border-color: rgba(255,255,255,0.05);
    background: #1a1a1f;
}


/* Payment modal new */
.payment-product {
    text-align: center;
    margin-bottom: 20px;
}

.payment-product h4 {
    margin-bottom: 10px;
}

.payment-balance {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: rgba(159, 86, 203, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #1a1a1f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 14px;
}

.payment-option:hover {
    border-color: #9f56cb;
    background: rgba(159, 86, 203, 0.1);
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option.disabled:hover {
    border-color: rgba(255,255,255,0.1);
    background: #1a1a1f;
}

.payment-option i {
    font-size: 20px;
    color: #9f56cb;
}


/* Premium badge */
.badge-premium {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.badge-inactive {
    background: rgba(100, 100, 100, 0.2);
    color: #666;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}
