:root {
    --bg-primary: #0D0E12;
    --bg-card: #191B22;
    --accent-orange: #FF9500;
    --accent-cyan: #00D9FF;
    --accent-green: #1AF366;
    --text-main: #FFFFFF;
    --text-secondary: #A0A5B5;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
header {
    background: rgba(13, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-orange);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3px;
    margin-left: 12px;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 14px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--accent-orange);
    color: #0D0E12;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(255, 149, 0, 0.12) 0%, transparent 60%);
}

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 149, 0, 0.2);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px auto;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.badge {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge.cyan { color: var(--accent-cyan); border-color: rgba(0, 217, 255, 0.3); }
.badge.green { color: var(--accent-green); border-color: rgba(26, 243, 102, 0.3); }

/* Grid Features */
.features {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

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

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 149, 0, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Legal Content Page */
.content-page {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--accent-orange);
}

.content-page h2 {
    font-size: 1.4rem;
    margin: 32px 0 12px 0;
    color: var(--text-main);
}

.content-page p, .content-page ul {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 16px;
}

.content-page ul {
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
}

.highlight-box {
    background: rgba(255, 149, 0, 0.08);
    border-left: 4px solid var(--accent-orange);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 80px;
}

footer a {
    color: var(--text-secondary);
    text-decoration: underline;
}

footer a:hover {
    color: var(--text-main);
}
