/* 
   KuloProxy Premium Design System & Stylesheet
   Color Palette: Deep Purple, Indigo, Cyberpunk Violet, Neon Accents
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #08070d;
    --bg-card: rgba(18, 14, 28, 0.65);
    --bg-card-hover: rgba(26, 20, 41, 0.8);
    --primary: #9d4edd;
    --primary-glow: rgba(157, 78, 221, 0.4);
    --primary-dark: #7b2cbf;
    --accent: #c77dff;
    --accent-glow: rgba(199, 125, 255, 0.3);
    --text-main: #f3f0f7;
    --text-muted: #b5a9c2;
    --success: #38b000;
    --warning: #ffb703;
    --danger: #d90429;
    --border-color: rgba(157, 78, 221, 0.2);
    --border-hover: rgba(199, 125, 255, 0.5);
    --glass-blur: blur(12px);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(90, 24, 154, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(123, 44, 191, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 12, 30, 1) 0%, #050409 100%);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09070f;
}
::-webkit-scrollbar-thumb {
    background: #5a189a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #e0aaff 0%, #c77dff 30%, #9d4edd 70%, #5a189a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.5);
}

.glow-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.7);
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    left: -100%;
}

.glow-btn:hover::after {
    left: 100%;
}

.glow-btn-outline {
    background: rgba(157, 78, 221, 0.1);
    color: var(--text-main);
    padding: 11px 27px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: 1px solid var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.glow-btn-outline:hover {
    background: rgba(157, 78, 221, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 7, 13, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(8, 7, 13, 0.95);
    border-bottom-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 8px var(--primary));
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(199, 125, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(199, 125, 255, 0.2);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h4 {
    font-size: 32px;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Image Wrapper */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.35) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
}

.hero-display {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.7), rgba(15, 10, 30, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(157, 78, 221, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.display-dots {
    display: flex;
    gap: 6px;
}

.display-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}
.display-dots span:nth-child(1) { background-color: var(--danger); }
.display-dots span:nth-child(2) { background-color: var(--warning); }
.display-dots span:nth-child(3) { background-color: var(--success); }

.display-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero-display-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(157, 78, 221, 0.1);
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.mockup-item:hover {
    background: rgba(157, 78, 221, 0.06);
    border-color: rgba(199, 125, 255, 0.3);
    transform: translateX(5px);
}

.mockup-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(157, 78, 221, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-info h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.mockup-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Sections Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px auto;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(157, 78, 221, 0.15);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 16px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing Section */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.pricing-tab {
    padding: 10px 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border-radius: 24px;
    transition: var(--transition);
}

.pricing-tab.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: rgba(23, 15, 38, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(157, 78, 221, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, #9d4edd, #c77dff);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.4);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(157, 78, 221, 0.15);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    min-height: 40px;
}

.pricing-price-box {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.old-price {
    font-size: 14px;
    color: var(--danger);
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.price-value {
    font-size: 38px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features-list li.disabled {
    color: rgba(255,255,255,0.2);
    text-decoration: line-through;
}

.pricing-features-list li svg {
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* Rules / Warning Banner */
.rules-banner {
    background: rgba(217, 4, 41, 0.08);
    border: 1px dashed rgba(217, 4, 41, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.rules-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--danger);
}

.rules-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rules-icon {
    color: var(--danger);
    font-size: 28px;
    flex-shrink: 0;
}

.rules-text h4 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rules-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active {
    border-color: var(--border-hover);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-answer {
    border-top: 1px solid rgba(157, 78, 221, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer Styles */
footer {
    background: #040307;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Dashboard / Login Page Styles */
.dashboard-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 60px;
}

.dashboard-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Login Card style */
.login-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 48px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.login-card-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.login-card-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 18px;
    color: var(--primary);
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(199, 125, 255, 0.2), inset 0 0 10px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.5);
}

.login-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.login-footer {
    font-size: 13px;
    color: var(--text-muted);
}

.login-footer a {
    color: var(--accent);
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* User Dashboard Panel style */
.dashboard-panel {
    width: 100%;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: flex-start;
}

/* Sidebar */
.dashboard-sidebar {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.user-profile {
    text-align: center;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
    padding-bottom: 24px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 32px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.user-sub-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(56, 176, 0, 0.15);
    color: #39e700;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    margin-top: 8px;
    border: 1px solid rgba(56, 176, 0, 0.3);
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu-btn {
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-menu-btn:hover,
.sidebar-menu-btn.active {
    color: var(--text-main);
    background: rgba(157, 78, 221, 0.1);
}

.sidebar-menu-btn.active {
    color: var(--accent);
    font-weight: 600;
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
}

.sidebar-menu-btn.logout-btn {
    margin-top: 24px;
    color: rgba(217, 4, 41, 0.7);
}

.sidebar-menu-btn.logout-btn:hover {
    background: rgba(217, 4, 41, 0.08);
    color: var(--danger);
}

/* Dashboard Main Content */
.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.dashboard-card-title {
    font-size: 22px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
    padding-bottom: 14px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.info-item h6 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.info-item p {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

/* Key display block */
.key-display {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 16px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(157, 78, 221, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.copy-btn:hover {
    color: var(--accent);
}

/* Download item styling */
.download-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(157, 78, 221, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    gap: 16px;
}

.download-link-card:hover {
    background: rgba(157, 78, 221, 0.05);
    border-color: rgba(199, 125, 255, 0.3);
    transform: translateY(-2px);
}

.download-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-file-icon {
    width: 46px;
    height: 46px;
    background: rgba(56, 176, 0, 0.1);
    border: 1px solid rgba(56, 176, 0, 0.2);
    color: var(--success);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.download-file-details h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.download-file-details p {
    font-size: 12px;
    color: var(--text-muted);
}

/* HWID Reset Area */
.hwid-reset-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(157, 78, 221, 0.1);
    border-radius: 16px;
    padding: 24px;
    flex-wrap: wrap;
}

.hwid-info-text h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.hwid-info-text p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 480px;
}

/* Modal Popup Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0f0b1a;
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(157, 78, 221, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 4, 41, 0.1);
    border: 1px solid rgba(217, 4, 41, 0.2);
    color: var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 26px;
}

.modal h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: rgba(18, 14, 28, 0.95);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: 12px;
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
    max-width: 450px;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.info { border-left-color: var(--primary); }

.toast-icon {
    font-size: 20px;
}
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.info .toast-icon { color: var(--accent); }

.toast-message {
    font-size: 14px;
    font-weight: 500;
}

/* Spinner Loader */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-left-color: #fff;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero h1 { font-size: 42px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrapper { display: none; } /* Hide mockup on smaller screens for cleaner hero */
    .dashboard-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { height: 70px; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #08070d;
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid rgba(157, 78, 221, 0.1);
        align-items: stretch;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 16px;
        background: rgba(255,255,255,0.02);
        border-radius: 8px;
    }

    .nav-links .glow-btn {
        justify-content: center;
        margin-top: 16px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .section-header h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .login-card { padding: 32px 24px; }
}

@media (max-width: 576px) {
    .pricing-grid,
    .gallery-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .rules-content {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .rules-banner {
        padding: 20px 16px;
    }
    
    .dashboard-card {
        padding: 24px 16px;
    }
    
    .dashboard-sidebar {
        padding: 24px 16px;
    }
    
    .login-card {
        padding: 32px 16px;
    }
    
    .key-display {
        padding: 10px 12px;
        font-size: 13px;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
    }
    
    .key-display span {
        word-break: break-all;
        user-select: all;
    }
    
    .key-display button,
    .key-display .glow-btn {
        align-self: center;
    }
    
    .download-link-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px;
    }
    
    .download-meta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .download-link-card .glow-btn {
        justify-content: center;
    }
    
    .hwid-reset-section {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .hwid-reset-section button {
        justify-content: center;
    }
}

