* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #0b0f15;
    color: #e5e9f0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Smooth gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0,255,157,0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0,255,157,0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

.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: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, #00ff9d 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    color: #00ff9d;
    margin-bottom: 30px;
    border-left: 4px solid #00ff9d;
    padding-left: 20px;
}

h3 {
    font-size: 1.4rem;
    color: #00ff9d;
    margin-bottom: 15px;
}

a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #00ff9d;
}

.btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #00ff9d;
    color: #00ff9d;
    padding: 12px 28px;
    margin: 5px 10px 5px 0;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: default;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: #00ff9d;
    color: #0b0f15;
    box-shadow: 0 0 20px rgba(0,255,157,0.5);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #00ff9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e5e9f0;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff9d;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 20px auto;
    color: #aaa;
}

.hero-buttons {
    margin-top: 30px;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff9d;
    box-shadow: 0 10px 30px rgba(0,255,157,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Links cards */
.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.link-card {
    background: rgba(20, 30, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 24px;
    padding: 25px;
    flex: 1 1 280px;
    transition: all 0.3s;
}

.link-card:hover {
    border-color: #00ff9d;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,255,157,0.2);
}

.onion-address {
    background: #1a262f;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    border: 1px solid #00ff9d33;
    margin: 15px 0;
    color: #00ff9d;
}

/* Guides */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-item {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 24px;
    padding: 30px;
}

.guide-item ul {
    list-style: none;
    padding-left: 0;
}

.guide-item li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #ccc;
}

.guide-item li::before {
    content: "▹";
    color: #00ff9d;
    position: absolute;
    left: 0;
}

/* Security list */
.security-list {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 24px;
    padding: 40px;
    columns: 2;
    column-gap: 40px;
}

.security-list li {
    margin-bottom: 15px;
    list-style: none;
    padding-left: 28px;
    position: relative;
}

.security-list li::before {
    content: "✓";
    color: #00ff9d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 24px;
    padding: 25px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: #00ff9d;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #ddd;
}

.review-author {
    font-weight: bold;
    color: #00ff9d;
}

.review-date {
    color: #777;
    font-size: 0.85rem;
}

/* Stats */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: rgba(20, 30, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 24px;
    padding: 30px;
    min-width: 180px;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff9d;
}

.stat-label {
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 16px;
    padding: 20px;
}

.faq-question {
    font-weight: 600;
    color: #00ff9d;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.faq-answer {
    color: #ccc;
}

/* Keywords */
.keywords-block {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,157,0.2);
    border-radius: 40px;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.keyword-tag {
    background: rgba(0,255,157,0.1);
    color: #00ff9d;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    border: 1px solid #00ff9d33;
}

/* Disclaimer */
.disclaimer {
    background: rgba(255, 170, 0, 0.05);
    border-left: 5px solid #ffaa00;
    border-radius: 16px;
    padding: 30px;
    color: #bbb;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    background: rgba(10, 15, 20, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col h4 {
    color: #00ff9d;
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    color: #888;
    font-size: 0.9rem;
}

.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.5rem; }
    h2 { font-size: 2rem; }
    .navbar { flex-direction: column; }
    .nav-links { justify-content: center; }
    .security-list { columns: 1; }
}