/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Enhanced Dark Palette - Torzon Theme 2.0 */
    --primary-dark: #0a0a14;
    --secondary-dark: #1a1a2e;
    --accent-cyan: #00ffff;
    --accent-purple: #b366ff;
    --accent-blue: #4d94ff;
    --accent-green: #00ff88;
    --accent-pink: #ff006e;
    --text-primary: #ffffff;
    --text-secondary: #c7c7c7;
    --text-muted: #999999;
    --border-glow: rgba(0, 255, 255, 0.5);
    --shadow-glow: rgba(0, 255, 255, 0.25);
    --glow-strong: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
}

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

/* Animated Background */
#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, var(--secondary-dark) 0%, #16213e 50%, var(--primary-dark) 100%);
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(15, 15, 30, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    padding: 12px 35px;
    box-shadow: 0 8px 32px var(--shadow-glow), 0 0 80px rgba(0, 229, 255, 0.05);
    animation: navFloat 3s ease-in-out infinite;
}

@keyframes navFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.nav-link.mirrors-link {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mirrorGlow 2s ease-in-out infinite alternate;
}

@keyframes mirrorGlow {
    0% { filter: drop-shadow(0 0 5px #ff00ff); }
    100% { filter: drop-shadow(0 0 15px #00ffff); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00ffff, #b366ff, #ff006e, #00ffff);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glitch-effect {
    position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-effect::before {
    animation: glitch1 2s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-effect::after {
    animation: glitch2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'Share Tech Mono', monospace;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffff, #b366ff);
    color: #000000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(179, 102, 255, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow-strong), 0 15px 40px rgba(179, 102, 255, 0.5);
    background: linear-gradient(135deg, #00ffff, #ff006e);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.glow-btn {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

.floating-logo {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 30px #00ffff);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00ffff, #b366ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: 'Share Tech Mono', monospace;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

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

.security-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.security-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.card-icon {
    margin-bottom: 30px;
}

.card-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px #00ffff);
}

.security-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00ffff;
}

.security-card p {
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Share Tech Mono', monospace;
}

/* Registration Section */
.registration-section {
    background: rgba(255, 0, 255, 0.05);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff00ff;
}

.step p {
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Share Tech Mono', monospace;
}

/* Crypto Section */
.crypto-section {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 215, 0, 0.05));
}

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

.crypto-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
}

.crypto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffa500;
}

/* Vendors Section */
.vendors-section {
    background: rgba(128, 0, 128, 0.05);
}

.vendors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vendor-feature {
    margin-bottom: 40px;
}

.vendor-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff00ff;
}

.vendor-feature p {
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Share Tech Mono', monospace;
}

.vendors-image img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px #ff00ff);
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 255, 0.05));
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-feature {
    margin-bottom: 40px;
}

.community-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00ff00;
}

.community-image img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px #00ff00);
}

/* FAQ Section */
.faq-section {
    background: rgba(0, 0, 0, 0.3);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ffff;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Share Tech Mono', monospace;
}

/* Mirrors Section */
.mirrors-section {
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    text-align: center;
    padding: 80px 0;
}

.mirrors-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.mirrors-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-family: 'Share Tech Mono', monospace;
}

/* Content Sections (for SEO content) */
.content-section {
    padding: 100px 0;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(157, 78, 221, 0.05));
    z-index: -1;
}

.content-section:nth-child(even)::before {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.08), rgba(59, 130, 246, 0.08));
}

.content-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-body h3 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin: 50px 0 30px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-left: 25px;
    border-left: 4px solid var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    position: relative;
}

.content-body h3::before {
    content: '▶';
    position: absolute;
    left: -5px;
    color: var(--accent-cyan);
    font-size: 0.7em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(5px); }
}

.content-body h3:first-child {
    margin-top: 0;
}

.content-body p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 2;
    margin-bottom: 25px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.content-body p:hover {
    background: rgba(0, 0, 0, 0.4);
    border-left-color: var(--accent-cyan);
    transform: translateX(5px);
    box-shadow: -5px 0 20px rgba(0, 229, 255, 0.1);
}

.content-body p strong {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.content-body ul, .content-body ol {
    margin: 30px 0;
    padding-left: 50px;
    color: var(--text-secondary);
}

.content-body li {
    margin-bottom: 15px;
    line-height: 1.9;
    padding: 12px 20px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.content-body li:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateX(10px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

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

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.footer-logo p {
    color: #cccccc;
    font-family: 'Share Tech Mono', monospace;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-bottom p {
    color: #888888;
    font-family: 'Share Tech Mono', monospace;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(157, 78, 221, 0.08));
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00e5ff, #9d4edd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #00e5ff;
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00e5ff;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.stat-trend {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

/* Timeline Section */
.timeline-section {
    background: rgba(255, 0, 255, 0.05);
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00e5ff, #9d4edd, #ff006e);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-year {
    order: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    order: 3;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: #00e5ff;
    font-family: 'Orbitron', monospace;
    position: relative;
}

.timeline-year::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 20px #00e5ff;
}

.timeline-item:nth-child(odd) .timeline-year::before {
    right: -52px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-year::before {
    left: -52px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-content {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
    transform: scale(1.05);
}

.timeline-content h3 {
    color: #00e5ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.8;
}

/* PGP Setup Section */
.guide-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(77, 148, 255, 0.05));
    padding: 80px 0;
}

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

.pgp-step {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(77, 148, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pgp-step:hover {
    transform: translateY(-10px);
    border-color: #4d94ff;
    box-shadow: 0 20px 40px rgba(77, 148, 255, 0.2);
}

.pgp-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pgp-step h3 {
    color: #4d94ff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pgp-step p {
    color: #cccccc;
    line-height: 1.8;
}

.pgp-best-practices {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.pgp-best-practices h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.pgp-best-practices ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.pgp-best-practices li {
    background: rgba(0, 255, 136, 0.1);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
    color: #cccccc;
    transition: all 0.3s ease;
}

.pgp-best-practices li:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateX(10px);
}

/* Comparison Section */
.comparison-section {
    background: rgba(255, 165, 0, 0.05);
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 50px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #ffa500, #ff6347);
}

.comparison-table th {
    padding: 20px;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 165, 0, 0.1);
}

.comparison-table td {
    padding: 20px;
    color: #cccccc;
}

.btc-col {
    background: rgba(247, 147, 26, 0.1);
}

.xmr-col {
    background: rgba(255, 102, 0, 0.1);
}

.comparison-table small {
    display: block;
    color: #999;
    margin-top: 5px;
}

.crypto-recommendation {
    margin-top: 50px;
}

.recommendation-box {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid #ff6600;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.recommendation-box h3 {
    color: #ffa500;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.recommendation-box p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.crypto-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2);
}

.tip-icon {
    font-size: 2rem;
}

/* Security Alert Section */
.security-alert-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(179, 102, 255, 0.08));
    padding: 80px 0;
}

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

.alert-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.alert-card.danger {
    border: 2px solid #ff006e;
}

.alert-card.success {
    border: 2px solid #00ff88;
}

.alert-card.warning {
    border: 2px solid #ffaa00;
}

.alert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.alert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.alert-card.danger h3 {
    color: #ff006e;
}

.alert-card.success h3 {
    color: #00ff88;
}

.alert-card.warning h3 {
    color: #ffaa00;
}

.alert-card p {
    color: #cccccc;
    line-height: 1.8;
}

.alert-card ul {
    list-style: none;
    padding: 0;
}

.alert-card li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.safe-access-routine {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.safe-access-routine h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.routine-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.routine-step {
    background: linear-gradient(135deg, #00ff88, #00e5ff);
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.routine-arrow {
    font-size: 2rem;
    color: #00ff88;
}

/* Market Comparison Table */
.market-comparison-section {
    background: rgba(157, 78, 221, 0.05);
    padding: 80px 0;
}

.market-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

.market-table thead {
    background: linear-gradient(135deg, #9d4edd, #00e5ff);
}

.market-table th {
    padding: 20px;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.market-table tbody tr {
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.market-table tbody tr:hover {
    background: rgba(157, 78, 221, 0.1);
}

.market-table td {
    padding: 20px;
    color: #cccccc;
}

.torzon-col {
    background: rgba(0, 229, 255, 0.1);
}

.other-col {
    background: rgba(255, 255, 255, 0.05);
}

.market-table small {
    display: block;
    color: #999;
    margin-top: 5px;
}

/* Quick Start Section */
.quick-start-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(255, 0, 110, 0.08));
    padding: 80px 0;
}

.start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.start-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.start-card.do {
    border: 3px solid #00ff88;
}

.start-card.dont {
    border: 3px solid #ff006e;
}

.start-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.start-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.start-card.do h3 {
    color: #00ff88;
}

.start-card.dont h3 {
    color: #ff006e;
}

.start-card ul {
    list-style: none;
    padding: 0;
}

.start-card li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #cccccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.start-card.do li {
    border-left: 4px solid #00ff88;
}

.start-card.dont li {
    border-left: 4px solid #ff006e;
}

.start-card li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .security-grid,
    .crypto-grid,
    .stats-grid,
    .pgp-steps,
    .alert-grid {
        grid-template-columns: 1fr;
    }

    .vendors-content,
    .community-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-item .timeline-year,
    .timeline-item .timeline-content {
        order: initial !important;
        text-align: left !important;
    }

    .timeline-year::before {
        left: -50px !important;
    }

    .routine-steps {
        flex-direction: column;
    }

    .routine-arrow {
        transform: rotate(90deg);
    }

    .start-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }
}

