/* 
  KiraVex Premium Theme 
*/

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

:root {
    --bg-main: #060913;
    --bg-secondary: #0d1326;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
    --neon-blue: #00e1ff;
    --neon-purple: #9d00ff;
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
    --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, #ff3c00 0%, #ff8800 100%);
    --shadow-neon: 0 0 20px rgba(0, 225, 255, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Background Gradients */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157,0,255,0.15) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    border-radius: 50%;
}
.bg-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,225,255,0.1) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    left: -200px;
    z-index: -1;
    border-radius: 50%;
}
.bg-glow-3 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(157,0,255,0.1) 0%, rgba(0,0,0,0) 70%);
    bottom: -100px;
    right: -100px;
    z-index: -1;
    border-radius: 50%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 225, 255, 0.6);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: var(--glass-hover);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(6, 9, 19, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
.navbar .logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--neon-blue);
}

/* Base Sections */
.section-padding {
    padding: 120px 20px;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 160px 20px 60px;
    position: relative;
}
.hero-badge {
    background: rgba(0, 225, 255, 0.1);
    border: 1px solid rgba(0, 225, 255, 0.2);
    color: var(--neon-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Dashboard Preview Image */
.hero-dashboard-preview {
    margin-top: 80px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 20px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.01);
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-family: 'Outfit';
    font-weight: 800;
    color: var(--text-main);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Cards (Glassmorphism) */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s, border-color 0.3s;
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 0, 255, 0.4);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Feature specific */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 225, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.feature-icon-wrapper i {
    font-size: 24px;
}

/* Step Section */
.step-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-family: 'Outfit';
}
.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.step-item p {
    color: var(--text-muted);
}

/* Pricing Table */
.pricing-card {
    position: relative;
    overflow: hidden;
}
.pricing-card.popular {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(157,0,255,0.15);
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--neon-purple);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}
.pricing-header h3 {
    font-size: 1.5rem;
}
.pricing-price {
    font-size: 3rem;
    font-family: 'Outfit';
    font-weight: 800;
    margin: 20px 0;
}
.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.pricing-features {
    list-style: none;
    margin: 30px 0;
}
.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i {
    color: #00ff88;
}
.pricing-features li.disabled i {
    color: rgba(255,255,255,0.1);
}
.pricing-features li.disabled {
    color: rgba(255,255,255,0.3);
}

/* Footer Section */
.footer {
    padding: 60px 20px 30px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}
.footer h4 {
    margin-bottom: 20px;
    color: var(--text-main);
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 12px;
}
.footer ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer ul a:hover {
    color: var(--neon-blue);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Admin Elements */
.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}
.sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--glass-border);
    padding: 30px 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.sidebar-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 50px;
    display: block;
}
.sidebar-menu {
    list-style: none;
}
.sidebar-menu li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.sidebar-menu li a:hover, .sidebar-menu li a.active {
    background: var(--glass-bg);
    color: var(--neon-blue);
}
.main-content {
    padding: 40px;
}

.telegram-box {
    background: linear-gradient(135deg, rgba(0,136,204,0.1) 0%, rgba(0,0,0,0) 100%);
    border: 1px solid rgba(0,136,204,0.3);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.1);
}

@media (max-width: 991px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        height: auto;
        position: relative;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
