:root {
    --primary: #58a6ff;
    --secondary: #238636;
    --accent: #5effa3;
    --bg-body: #0d1117;
    --bg-card: rgba(22, 27, 34, 0.8);
    --border: rgba(48, 54, 61, 0.8);
    --text-main: #f0f6fc;
    --text-dim: #8b949e;
    --glow: rgba(88, 166, 255, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    border-radius: 12px;
    box-shadow: 0 0 15px var(--glow);
    border: 1px solid var(--border);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.logo-text p {
    font-size: 11px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-nav {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-nav:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-premium {
    background: var(--primary);
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 166, 255, 0.5);
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(88, 166, 255, 0.1), transparent);
}

.hero h2 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 32px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    color: var(--text-dim);
    font-size: 16px;
}

.command-box {
    background: #000;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.command-name {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
}

.command-desc {
    font-size: 15px;
    color: var(--text-dim);
}

.footer {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    margin-top: 100px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
}

.footer-text {
    color: var(--text-dim);
    font-size: 14px;
    max-width: 300px;
}

.footer-title {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

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

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

.footer-status {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-version {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 80px auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 32px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.legal-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.legal-content ul {
    color: var(--text-dim);
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}