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

body {
    background: #303948;
    color: #FFFFFF;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 165px;
    height: 60px;
}

.animation-container {
    margin: 20px 0;
}

.gif {
    width: 320px;
    height: 100px;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.glitch-text {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: #3cbef2;
}

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

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 40% 0); }
    40% { clip-path: inset(30% 0 70% 0); }
    60% { clip-path: inset(80% 0 20% 0); }
    80% { clip-path: inset(10% 0 90% 0); }
    100% { clip-path: inset(50% 0 50% 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(80% 0 20% 0); }
    20% { clip-path: inset(40% 0 60% 0); }
    40% { clip-path: inset(70% 0 30% 0); }
    60% { clip-path: inset(20% 0 80% 0); }
    80% { clip-path: inset(90% 0 10% 0); }
    100% { clip-path: inset(50% 0 50% 0); }
}

.subtitle {
    color: #3cbef2;
    font-size: 1.2rem;
    margin-top: 10px;
}

.crypto-animation {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(60, 190, 242, 0.1);
}

.crypto-container {
    position: relative;
    height: 80px;
    margin-bottom: 20px;
}

.crypto-orb {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3cbef2;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.crypto-orb:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.crypto-orb:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.crypto-orb:nth-child(3) {
    right: 20%;
    animation-delay: 1s;
}

.crypto-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3cbef2, transparent);
    top: 50%;
    animation: scan 2s linear infinite;
}

.crypto-line:nth-child(4) {
    width: 40%;
    left: 10%;
    animation-delay: 0s;
}

.crypto-line:nth-child(5) {
    width: 30%;
    left: 35%;
    animation-delay: 0.3s;
}

.crypto-line:nth-child(6) {
    width: 40%;
    right: 10%;
    animation-delay: 0.6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scan {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

.crypto-text {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.crypto-text span {
    color: #3cbef2;
    font-weight: bold;
    font-size: 1.2rem;
    animation: pulse-text 2s ease-in-out infinite;
}

.crypto-text span:nth-child(1) {
    animation-delay: 0s;
}

.crypto-text span:nth-child(2) {
    animation-delay: 0.4s;
}

.crypto-text span:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.marketplace-overview {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.marketplace-overview h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.overview-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.overview-item p {
    color: #ccc;
    line-height: 1.8;
}

.links-section {
    margin-bottom: 50px;
}

.links-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.security-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #3cbef2;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

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

.link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3cbef2;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(60, 190, 242, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mirror-badge {
    background: #3cbef2;
    color: #303948;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status.online {
    color: #00ff00;
    font-size: 0.8rem;
}

.tor-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    word-break: break-all;
}

.tor-link:hover {
    background: rgba(60, 190, 242, 0.2);
    color: #3cbef2;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.features-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.features-section h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.feature-card h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.7;
}

.security-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.security-section h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.protocol-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.protocol-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3cbef2;
}

.protocol-item h4 {
    color: #3cbef2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.protocol-item p {
    color: #ccc;
    line-height: 1.7;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(60, 190, 242, 0.3);
}

.panel h3 {
    color: #3cbef2;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.panel p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.guide-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.guide-section h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #3cbef2;
    color: #303948;
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.step h4 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    color: #ccc;
    line-height: 1.7;
}

footer {
    margin-top: 60px;
    padding: 40px 20px;
    border-top: 1px solid rgba(60, 190, 242, 0.3);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-warning {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 10px;
}

.footer-warning h4 {
    color: #ff4444;
    margin-bottom: 10px;
}

.footer-warning p {
    color: #ff9999;
    line-height: 1.6;
}

.footer-info p {
    color: #888;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .links-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .glitch-text {
        font-size: 2rem;
    }
    
    .marketplace-overview,
    .features-section,
    .security-section,
    .guide-section {
        padding: 20px;
        margin: 40px 0;
    }
    
    .overview-grid,
    .features-grid,
    .guide-steps {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.faq-section h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.faq-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.7;
}

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

.link-card .tor-link.glitch-active {
    animation: glitch 0.3s infinite;
}

.seo-keywords {
    display: none;
}

.mirror-badge::before {
    content: "TORZON ";
}

.security-indicator span:last-child::before {
    content: "TORZON ";
}

.panel h3::before {
    content: "TORZON ";
}

.feature-card h3::before {
    content: "TORZON ";
}

.protocol-item h4::before {
    content: "TORZON ";
}

.step h4::before {
    content: "TORZON ";
}

.faq-item h3::first-word {
    color: #3cbef2;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 20px;
        margin: 40px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .mirror-badge::before,
    .security-indicator span:last-child::before,
    .panel h3::before,
    .feature-card h3::before,
    .protocol-item h4::before,
    .step h4::before {
        content: "";
    }
}

.hero h1::after {
    content: " | TORZON MARKET LINK";
    color: #3cbef2;
    font-size: 0.8em;
}

.marketplace-overview h2::after {
    content: " - SECURE ACCESS";
    color: #3cbef2;
    font-size: 0.7em;
}

.links-header h2::after {
    content: " - VERIFIED";
    color: #00ff00;
    font-size: 0.6em;
}

.features-section h2::after {
    content: " & SECURITY";
    color: #3cbef2;
    font-size: 0.7em;
}

.security-section h2::after {
    content: " - PROTECTED ACCESS";
    color: #3cbef2;
    font-size: 0.7em;
}

.guide-section h2::after {
    content: " - STEP BY STEP";
    color: #3cbef2;
    font-size: 0.7em;
}

.faq-section h2::after {
    content: " - ANSWERS";
    color: #3cbef2;
    font-size: 0.7em;
}

.link-card:nth-child(1) {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.link-card:nth-child(1) .mirror-badge {
    background: #00ff00;
    color: #000;
}

.link-card:nth-child(1)::before {
    content: "PRIMARY";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff00;
    color: #000;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.keyword-highlight {
    color: #3cbef2;
    font-weight: bold;
}

.tor-link {
    position: relative;
}

.tor-link::after {
    content: " - TORZON MARKET LINK";
    color: #3cbef2;
    font-size: 0.8em;
}

.overview-item:nth-child(1) h3::after {
    content: " - SECURE";
    color: #00ff00;
    font-size: 0.8em;
}

.overview-item:nth-child(2) h3::after {
    content: " - VERIFIED";
    color: #00ff00;
    font-size: 0.8em;
}

.overview-item:nth-child(3) h3::after {
    content: " - RELIABLE";
    color: #00ff00;
    font-size: 0.8em;
}

.feature-card:nth-child(1) h3::after {
    content: " - SAFE";
    color: #00ff00;
    font-size: 0.8em;
}

.feature-card:nth-child(2) h3::after {
    content: " - RELIABLE";
    color: #00ff00;
    font-size: 0.8em;
}

.feature-card:nth-child(3) h3::after {
    content: " - SECURE";
    color: #00ff00;
    font-size: 0.8em;
}

.feature-card:nth-child(4) h3::after {
    content: " - SUPPORT";
    color: #00ff00;
    font-size: 0.8em;
}

.protocol-item:nth-child(1) h4::after {
    content: " - SAFE";
    color: #00ff00;
    font-size: 0.8em;
}

.protocol-item:nth-child(2) h4::after {
    content: " - SECURE";
    color: #00ff00;
    font-size: 0.8em;
}

.protocol-item:nth-child(3) h4::after {
    content: " - UPDATED";
    color: #00ff00;
    font-size: 0.8em;
}

.step:nth-child(1) h4::after {
    content: " - REQUIRED";
    color: #00ff00;
    font-size: 0.8em;
}

.step:nth-child(2) h4::after {
    content: " - CRITICAL";
    color: #00ff00;
    font-size: 0.8em;
}

.step:nth-child(3) h4::after {
    content: " - RECOMMENDED";
    color: #00ff00;
    font-size: 0.8em;
}

.faq-item:nth-child(1) h3::after {
    content: " - OFFICIAL";
    color: #00ff00;
    font-size: 0.8em;
}

.faq-item:nth-child(2) h3::after {
    content: " - ACCESS";
    color: #00ff00;
    font-size: 0.8em;
}

.faq-item:nth-child(3) h3::after {
    content: " - SAFETY";
    color: #00ff00;
    font-size: 0.8em;
}

.faq-item:nth-child(4) h3::after {
    content: " - REDUNDANCY";
    color: #00ff00;
    font-size: 0.8em;
}

.footer-warning h4::before {
    content: "⚠️ TORZON ";
}

.footer-info p:first-child::before {
    content: "🔗 ";
}

.footer-info p:last-child::before {
    content: "🛡️ ";
}

.crypto-text span::before {
    content: "🔒 ";
}

.status-dot::after {
    content: " SECURE";
    margin-left: 5px;
    color: #00ff00;
    font-size: 0.8em;
}

@media (max-width: 480px) {
    .hero h1::after,
    .marketplace-overview h2::after,
    .links-header h2::after,
    .features-section h2::after,
    .security-section h2::after,
    .guide-section h2::after,
    .faq-section h2::after,
    .tor-link::after,
    .overview-item h3::after,
    .feature-card h3::after,
    .protocol-item h4::after,
    .step h4::after,
    .faq-item h3::after,
    .status-dot::after {
        content: "";
    }
    
    .link-card:nth-child(1)::before {
        font-size: 0.6rem;
    }
}