* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }
:root { --primary: #ffffff; --secondary: #000000; --accent: #888888; --bg-dark: #0a0a0a; --bg-card: #111111; --bg-card-hover: #1a1a1a; --border: #222222; --text: #ffffff; --text-muted: #888888; --error: #ff4444; --success: #44ff44; --warning: #ffaa00; }
html { scroll-behavior: smooth; cursor: none !important; scrollbar-gutter: stable; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    overflow-y: auto;
    overflow-x: hidden;
    cursor: none !important;
}
html, body {
    scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}
a, button, input, textarea, select { cursor: none !important; }
.cursor { width: 8px; height: 8px; background: #fff; border-radius: 50%; position: fixed; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); }
a { text-decoration: none; color: inherit; }
.navbar { position: fixed; top: 0; left: 0; right: 0; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-brand { font-size: 28px; font-weight: 800; letter-spacing: 2px; background: linear-gradient(135deg, #fff 0%, #888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; position: relative; }
.nav-links a:not(.login-btn)::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #fff; transition: width 0.3s; }
.nav-links a:not(.login-btn):hover::after { width: 100%; }
.login-btn { 
    background: #fff; 
    color: #000 !important; 
    padding: 10px 25px; 
    border-radius: 30px; 
    font-weight: 600; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.login-btn:hover { 
    transform: translateY(-1px); 
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25); 
    background: #f5f5f5;
}
.loader-update-info {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin-top: 8px;
    padding: 0 10px;
}

.loader-update-info i {
    margin-right: 5px;
}
.login-btn.active { background: #888; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none !important; }
.hamburger span { width: 25px; height: 2px; background: #fff; transition: 0.3s; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; }
.grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 50px 50px; }
.particles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none; }
.particle { position: absolute; width: 2px; height: 2px; background: rgba(255, 255, 255, 0.4); border-radius: 50%; animation: floatUp 20s infinite linear; }
@keyframes floatUp { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; } }
.hero-content { text-align: center; z-index: 2; padding: 0 20px; }
.glitch-wrapper { position: relative; }
.glitch { font-size: clamp(80px, 15vw, 180px); font-weight: 900; text-transform: uppercase; letter-spacing: 10px; position: relative; animation: textGlow 2s ease-in-out infinite alternate; }
@keyframes textGlow { from { text-shadow: 0 0 20px rgba(255,255,255,0.3); } to { text-shadow: 0 0 40px rgba(255,255,255,0.6), 0 0 80px rgba(255,255,255,0.3); } }
.subtitle { font-size: clamp(18px, 3vw, 28px); font-weight: 300; margin-top: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--text-muted); }
.tagline { font-size: 16px; margin-top: 20px; color: var(--accent); letter-spacing: 3px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: none !important;
}

.btn i, .btn span {
    display: inline-block;
    vertical-align: middle;
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #ddd; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #000; }
.btn-large { padding: 20px 50px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-loader { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: inline; }
.stats { display: flex; justify-content: center; gap: 60px; margin-top: 60px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-size: 48px; font-weight: 800; }
.stat-label { display: block; font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; animation: bounce 2s infinite; }
.mouse { width: 25px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 8px; background: #fff; border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
@keyframes scroll { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(15px); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
.scroll-indicator span { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: clamp(32px, 5vw, 48px); font-weight: 800; text-align: center; margin-bottom: 20px; }
.section-title span { background: linear-gradient(135deg, #fff 0%, #888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; }
.features { padding: 150px 0; background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f0f 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; transition: background 0.3s, border-color 0.3s; }
.feature-card:hover { background: var(--bg-card-hover); border-color: #333; }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #222 0%, #111 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 25px; border: 1px solid #333; }
.feature-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.feature-card p { color: var(--text-muted); line-height: 1.7; }
.pricing { padding: 150px 0; background: var(--bg-dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 30px; padding: 50px 40px; text-align: center; transition: border-color 0.3s, background 0.3s; position: relative; }
.pricing-card.featured { border-color: #444; background: linear-gradient(135deg, #1a1a1a 0%, #111 100%); }
.pricing-card:hover { border-color: #444; background: var(--bg-card-hover); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #fff; color: #000; padding: 8px 25px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pricing-header { margin-bottom: 40px; }
.plan-name { font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); }
.price { margin: 20px 0; }
.currency { font-size: 28px; vertical-align: top; }
.amount { font-size: 72px; font-weight: 800; line-height: 1; }
.duration { color: var(--text-muted); font-size: 14px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 40px; }
.pricing-features li { padding: 12px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: #fff; font-size: 12px; width: 25px; height: 25px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-pricing { width: 100%; background: #fff; color: #000; justify-content: center; }
.btn-pricing:hover { background: #ddd; }
.payment-methods { margin-top: 80px; text-align: center; }
.payment-methods h3 { font-size: 20px; font-weight: 600; margin-bottom: 30px; }
.payment-icons { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.payment-method { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 25px 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 15px; transition: border-color 0.3s; }
.payment-method:hover { border-color: #444; }
.payment-method i { font-size: 36px; }
.payment-method span { font-size: 14px; color: var(--text-muted); }
.payment-note { margin-top: 30px; color: var(--text-muted); font-size: 14px; font-style: italic; }
.faq { padding: 150px 0; background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f0f 100%); }
.faq-grid { max-width: 800px; margin: 60px auto 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 15px; margin-bottom: 15px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: #333; }
.faq-item.active { border-color: #444; }
.faq-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; cursor: none !important; }
.faq-question i { transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 30px 25px; color: var(--text-muted); line-height: 1.7; }
.cta { padding: 150px 0; background: var(--bg-dark); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%); border-radius: 50%; }
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; margin-bottom: 20px; }
.cta-content p { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; }
.footer { background: #050505; padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand h3 { font-size: 28px; font-weight: 800; margin-bottom: 5px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-social a { width: 50px; height: 50px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background 0.3s, color 0.3s; }
.footer-social a:hover { background: #fff; color: #000; }
.footer-bottom { padding-top: 30px; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 14px; }
.login-section { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    padding: 120px 20px 40px;
    overflow: hidden; 
}
.login-container { width: 100%; max-width: 450px; z-index: 2; }
.login-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 30px; padding: 50px 40px; }
.login-header { text-align: center; margin-bottom: 30px; }
.login-header h1 { font-size: 48px; font-weight: 900; margin-bottom: 10px; background: linear-gradient(135deg, #fff 0%, #888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.login-header p { color: var(--text-muted); }
.auth-tabs { display: flex; margin-bottom: 30px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.auth-tab {
    flex: 1;
    height: 48px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: none !important;
    transition: all 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.auth-tab.active { background: #fff; color: #000; }
.auth-form { display: none; }
.auth-form.active { display: block; }
.input-group { position: relative; margin-bottom: 20px; }
.input-group i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 16px; pointer-events: none; }
.input-group input, .input-group select { width: 100%; padding: 18px 20px 18px 50px; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 15px; color: #fff; font-size: 16px; font-family: 'Poppins', sans-serif; transition: border-color 0.3s; cursor: none !important; }
.input-group input:focus, .input-group select:focus { outline: none; border-color: #fff; }
.input-group input::placeholder { color: var(--text-muted); }
.error-message { background: rgba(255, 68, 68, 0.1); border: 1px solid var(--error); border-radius: 10px; padding: 15px; color: var(--error); text-align: center; margin-top: 20px; display: none; font-size: 14px; line-height: 1.5; }
.error-message.show { display: block; }
.success-message { background: rgba(68, 255, 68, 0.1); border: 1px solid var(--success); border-radius: 10px; padding: 15px; color: var(--success); text-align: center; margin-top: 20px; display: none; }
.success-message.show { display: block; }
.login-footer { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 20px; }
.login-footer a { color: #fff; text-decoration: underline; }
.panel-section { min-height: 100vh; position: relative; padding: 100px 20px 40px; }
.panel-wrapper { display: flex; gap: 30px; max-width: 1600px; margin: 0 auto; z-index: 2; position: relative; }
.panel-sidebar { width: 340px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 30px; flex-shrink: 0; height: fit-content; position: sticky; top: 100px; }
.sidebar-header { text-align: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.sidebar-header h2 { font-size: 24px; font-weight: 700; margin-bottom: 5px; }
.sidebar-header p { color: var(--text-muted); font-size: 14px; }
.sidebar-info { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; }
.info-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 8px 0; 
    font-size: 13px;
    gap: 10px;
}
.info-row span:last-child { 
    font-weight: 600; 
    text-align: right;
    font-size: 13px;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
}
.info-row:first-child span:last-child {
    font-size: 8px;
    word-break: break-all;
    line-height: 1.1;
}
.status-active { color: var(--success) !important; }
.status-expired { color: var(--error) !important; }
.sidebar-nav { margin-bottom: 20px; }
.sidebar-btn { width: 100%; padding: 12px 15px; background: transparent; border: 1px solid transparent; border-radius: 10px; color: var(--text-muted); font-size: 14px; font-weight: 500; text-align: left; cursor: none !important; transition: all 0.3s; font-family: 'Poppins', sans-serif; margin-bottom: 5px; display: flex; align-items: center; gap: 10px; }
.sidebar-btn:hover { background: var(--bg-dark); color: #fff; }
.sidebar-btn.active { background: #fff; color: #000; border-color: #fff; }
.sidebar-btn i { width: 20px; }
.sidebar-actions { display: flex; flex-direction: column; gap: 10px; }
.panel-content { flex: 1; min-width: 0; }
.no-license-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 30px; text-align: center; max-width: 450px; margin: 0 auto; }
.no-license-content i { font-size: 32px; color: var(--accent); margin-bottom: 15px; }
.no-license-content .btn-primary {
    margin: 25px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 36px;
    min-width: 220px;
    font-size: 16px;
    font-weight: 600;
}

.config-grid .config-item:has(#pm_ws_speed) {
    grid-column: 1 / -1;
}
.config-grid .config-item:has(#hk_showhotkeys) {
    grid-column: 1 / -1;
}
.multi-select-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.multi-select-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.multi-select {
    flex: 1;
    min-width: 0;
}

.btn-remove {
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid rgba(255, 59, 59, 0.3);
    color: #ff3b3b;
    padding: 0;
    border-radius: 8px;
    cursor: none !important;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex-shrink: 0;
    font-weight: 400;
}

.btn-remove:hover {
    background: rgba(255, 59, 59, 0.2);
    border-color: #ff3b3b;
}

.multi-select-container .btn-secondary {
    margin-top: 8px;
}
.auth-form .btn-primary .btn-text {
    width: 100%;
    text-align: center;
}
.no-license-content h2 { font-size: 24px; margin-bottom: 10px; }
.no-license-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 14px; line-height: 1.6; }
.no-license-content .input-group { max-width: 100%; margin: 0 auto 20px; }
.no-license-content .input-group i { color: var(--text-muted); font-size: 16px; top: 50%; transform: translateY(-50%); left: 15px; }
.config-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 30px; }
.config-section {
    display: none;
}

.config-section.active {
    display: block;
}
button.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.config-section select {
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}
.config-section h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.config-section h3 i { color: var(--accent); }
.section-desc { color: var(--text-muted); margin-bottom: 30px; }
.config-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.config-item { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 15px; padding: 20px; }
.config-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.config-item-title { font-weight: 600; font-size: 14px; }
.config-item-desc { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    min-width: 44px;
    min-height: 24px;
    flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: none !important; top: 0; left: 0; right: 0; bottom: 0; background-color: #333; transition: 0.3s; border-radius: 26px; }
.toggle-slider:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.25s ease;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider { background-color: var(--success); }
.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.config-input { width: 100%; padding: 10px 15px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-size: 14px; font-family: 'Poppins', sans-serif; margin-top: 10px; cursor: none !important; }
.config-input:focus { outline: none; border-color: #fff; }
.config-select { width: 100%; padding: 10px 15px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-size: 14px; font-family: 'Poppins', sans-serif; margin-top: 10px; cursor: none !important; }
.config-select option { background: var(--bg-dark); }
.config-group { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 15px; padding: 20px; grid-column: span 2; }
.config-group-title { font-weight: 700; font-size: 16px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.config-group-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.config-subitem { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 15px; }
.modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 10000; align-items: center; justify-content: center; }
.modal.show { display: flex; }
.modal-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; max-width: 450px; width: 90%; text-align: center; }
.modal-content h3 { margin-bottom: 15px; }
.modal-content p { color: var(--text-muted); margin-bottom: 25px; }
.modal-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.save-notification { position: fixed; bottom: 30px; right: 30px; background: var(--success); color: #000; padding: 15px 30px; border-radius: 10px; font-weight: 600; display: none; z-index: 9999; animation: slideIn 0.3s ease; }
.save-notification.show { display: flex; align-items: center; gap: 10px; }
.config-manager-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.save-config-panel {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 25px;
    height: fit-content;
}

.saved-configs-panel {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 25px;
}

.save-config-panel h4,
.saved-configs-panel h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.save-config-panel .input-group {
    margin-bottom: 15px;
}

.save-config-panel .btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
}

.saved-configs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 5px;
}

.saved-configs-list::-webkit-scrollbar {
    width: 5px;
}

.saved-configs-list::-webkit-scrollbar-track {
    background: transparent;
}

.saved-configs-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.saved-configs-list::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.no-configs-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
    font-size: 13px;
}

.saved-config-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.saved-config-item:hover {
    border-color: #444;
    background: var(--bg-card-hover);
    transform: translateX(2px);
}

.config-item-info {
    flex: 1;
    min-width: 0;
}

.config-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
}

.config-item-date {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.config-item-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.btn-config-action {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: none !important;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.btn-config-action i {
    font-size: 11px;
}

.btn-load {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-load:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-delete {
    background: transparent;
    color: #ff4444;
    border-color: #ff4444;
}

.btn-delete:hover {
    background: #ff4444;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

@media (max-width: 1024px) {
    .config-manager-wrapper {
        flex-direction: column;
    }
    
    .save-config-panel {
        width: 100%;
    }
}
@keyframes slideIn { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@media (max-width: 1024px) { .panel-wrapper { flex-direction: column; } .panel-sidebar { width: 100%; position: static; } .config-group { grid-column: span 1; } }
@media (max-width: 768px) { .navbar { padding: 15px 25px; } .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: rgba(10, 10, 10, 0.98); flex-direction: column; padding: 30px; gap: 20px; transform: translateY(-150%); transition: transform 0.3s; } .nav-links.active { transform: translateY(0); } .hamburger { display: flex; } .stats { gap: 30px; } .footer-content { flex-direction: column; text-align: center; } .cursor { display: none !important; } * { cursor: auto !important; } .login-box { padding: 30px 25px; } .config-grid { grid-template-columns: 1fr; } }
