* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0c0c14;
    color: #f0eef7;
    line-height: 1.7;
    scroll-behavior: smooth;
}

/* Animated gradient background with purple/orange accents */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(200, 120, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 160, 70, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: -2;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 0;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(145deg, #ffffff, #c47aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    color: #c47aff;
    margin-bottom: 30px;
    border-left: 5px solid #c47aff;
    padding-left: 25px;
}

h3 {
    font-size: 1.6rem;
    color: #e0b0ff;
    margin-bottom: 15px;
}

a {
    color: #ffaa66;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
    color: #c47aff;
    text-shadow: 0 0 10px rgba(196, 122, 255, 0.3);
}

.btn {
    display: inline-block;
    background: rgba(196, 122, 255, 0.1);
    border: 2px solid #c47aff;
    color: #c47aff;
    padding: 12px 30px;
    margin: 10px 20px 10px 0;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    cursor: default;
}

.btn:hover {
    background: #c47aff;
    color: #0c0c14;
    box-shadow: 0 0 25px #c47aff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 15px;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(145deg, #ffffff, #c47aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
    color: #ddd;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c47aff;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 80px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 750px;
    margin: 20px auto;
    color: #b0c0d0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,122,255,0.3);
    border-radius: 40px;
    padding: 8px 25px;
    font-size: 0.9rem;
    color: #ccd;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196,122,255,0.2);
    border-radius: 32px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: #c47aff;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196,122,255,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

/* Links section */
.links-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.link-card {
    background: rgba(20, 20, 35, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196,122,255,0.3);
    border-radius: 40px;
    padding: 30px;
    flex: 1 1 280px;
    text-align: center;
    transition: 0.3s;
}

.link-card:hover {
    border-color: #c47aff;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(196,122,255,0.3);
}

.onion {
    background: #1e1a2a;
    border-radius: 40px;
    padding: 12px 20px;
    font-family: 'Fira Code', monospace;
    word-break: break-all;
    border: 1px solid #c47aff55;
    margin: 15px 0;
    color: #e0b0ff;
    font-size: 0.9rem;
}

/* Guides grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-item {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196,122,255,0.2);
    border-radius: 32px;
    padding: 30px;
}

.guide-item ul {
    list-style: none;
}

.guide-item li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.guide-item li::before {
    content: '▹';
    color: #c47aff;
    position: absolute;
    left: 0;
}

/* Security list */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: rgba(196,122,255,0.03);
    border: 1px solid rgba(196,122,255,0.2);
    border-radius: 40px;
    padding: 40px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
}

.security-item span:first-child {
    color: #c47aff;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196,122,255,0.2);
    border-radius: 30px;
    padding: 25px;
    transition: 0.3s;
}

.review-card:hover {
    border-color: #c47aff;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.review-author {
    font-weight: 600;
    color: #c47aff;
}

/* Stats */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stat-block {
    background: rgba(196,122,255,0.05);
    border: 1px solid #c47aff55;
    border-radius: 50px;
    padding: 30px 40px;
    min-width: 180px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c47aff;
    line-height: 1;
}

.stat-label {
    color: #aaa;
    text-transform: uppercase;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(20, 20, 35, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196,122,255,0.2);
    border-radius: 30px;
    padding: 25px;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c47aff;
    margin-bottom: 10px;
}

.faq-answer {
    color: #ccc;
}

/* Blog/news */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.blog-card {
    background: rgba(20, 20, 35, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196,122,255,0.2);
    border-radius: 30px;
    padding: 25px;
}

.blog-date {
    color: #c47aff;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Keywords cloud */
.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    background: rgba(196,122,255,0.02);
    border-radius: 80px;
    padding: 30px;
}

.keyword-item {
    background: rgba(196,122,255,0.1);
    border: 1px solid #c47aff55;
    border-radius: 40px;
    padding: 10px 25px;
    color: #ccd;
    font-size: 1rem;
}

/* Disclaimer */
.disclaimer-box {
    background: rgba(255,140,0,0.05);
    border-left: 6px solid #ffaa33;
    border-radius: 30px;
    padding: 30px;
    color: #ddd;
}

/* Footer */
footer {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    color: #c47aff;
    margin-bottom: 15px;
}

.footer-section p, .footer-section a {
    color: #888;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .security-grid { grid-template-columns: 1fr; }
}