* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0a0c15;
    font-family: 'Inter', sans-serif;
    color: #edf2ff;
    line-height: 1.5;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.8rem;
}
/* modern dark theme with violet/indigo accents */
.glass-panel {
    background: rgba(15, 20, 35, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    border: 1px solid rgba(110, 80, 255, 0.3);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(95deg, #6c3aff, #9b4dff);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(108, 58, 255, 0.3);
}
.btn-outline {
    background: transparent;
    border: 1px solid #7c4dff;
    color: #cdd9ff;
    box-shadow: none;
}
.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(95deg, #7b48ff, #ac62ff);
    box-shadow: 0 12px 22px -8px #6c3aff;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #1e243f;
    color: #b9ceff;
}
.badge-success {
    background: #0b2f28;
    color: #2ef0a0;
    border-left: 2px solid #2ef0a0;
}
.badge-warning {
    background: #3a2e1a;
    color: #ffcd6b;
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: 'Outfit', monospace;
    background: linear-gradient(135deg, #fff, #b59eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #222842;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', monospace;
    background: linear-gradient(125deg, #fff, #bfa6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.nav {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}
.nav a {
    color: #baceff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover { color: white; }
.hero {
    text-align: center;
    padding: 3rem 0 1.5rem;
}
h1 {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}
h1 span {
    background: linear-gradient(145deg, #fff, #b89eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.stat-card {
    background: #11172eb3;
    backdrop-filter: blur(4px);
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    text-align: center;
}
.primary-card {
    background: linear-gradient(135deg, #0d1430, #060b1a);
    border-radius: 2rem;
    padding: 2rem;
    margin: 2rem auto;
    border: 1px solid #5142b0;
    max-width: 900px;
}
.onion-address {
    background: #020617;
    font-family: 'SF Mono', 'Courier New', monospace;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    word-break: break-all;
    border: 1px solid #5f4bc2;
    margin: 1rem 0;
    text-align: center;
}
.mirror-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0;
}
.mirror-item {
    background: #0e142dd9;
    backdrop-filter: blur(4px);
    border-radius: 1.8rem;
    padding: 1.5rem;
    border: 1px solid #2e2d5a;
    transition: all 0.2s;
}
.mirror-item:hover { border-color: #8c6eff; transform: translateY(-3px);}
.mirror-url {
    font-family: monospace;
    background: #010614;
    padding: 0.7rem;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    word-break: break-all;
    margin: 0.8rem 0;
    color: #c9dcff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature-card {
    background: #0d1330;
    padding: 1.6rem;
    border-radius: 1.8rem;
    transition: 0.2s;
    border-bottom: 3px solid #6d4aff;
}
.feature-card i { font-size: 2rem; color: #9b7aff; margin-bottom: 1rem; display: inline-block;}
.access-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}
.step {
    background: #0e142b;
    flex: 1;
    min-width: 160px;
    padding: 1.3rem;
    border-radius: 1.5rem;
    text-align: center;
}
.step-num {
    background: #6d4aff;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    font-weight: bold;
    margin-bottom: 0.6rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.faq-card {
    background: #0d1430cc;
    padding: 1.3rem 1.6rem;
    border-radius: 1.5rem;
    border-left: 4px solid #8a6eff;
}
.faq-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem;}
.footer {
    margin-top: 4rem;
    border-top: 1px solid #232a48;
    padding: 2.5rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    text-align: center;
    color: #7b89ae;
}
@media (max-width: 760px) {
    .container { padding: 0 1.2rem; }
    h1 { font-size: 2.2rem; }
    .stat-number { font-size: 1.8rem; }
    .primary-card { padding: 1rem; }
}
hr { border-color: #2a2f55; }
a { color: #bbaaff; text-decoration: none; }
.live-badge {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #2ef0a0;
    border-radius: 50%;
    box-shadow: 0 0 6px #2ef0a0;
    margin-right: 6px;
}