body {
    font-family: Arial, sans-serif;
    background-color: #303948;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #3cbef2;
}

.logo {
    max-width: 300px;
    margin-bottom: 20px;
}

h1 {
    color: #3cbef2;
    margin: 10px 0;
    font-size: 2.5em;
}

.tagline {
    font-style: italic;
    opacity: 0.8;
}

.animation-container {
    position: relative;
    height: 200px;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(48, 57, 72, 0.9) 0%, rgba(60, 190, 242, 0.1) 100%);
    border: 1px solid #3cbef2;
}

.crypto-animation {
    position: absolute;
    width: 100%;
    height: 100%;
}

.crypto-coin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    animation: float 8s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(60, 190, 242, 0.5);
}

.crypto-coin.xmr {
    background-color: #FF6B00;
    color: white;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.crypto-coin.btc {
    background-color: #F7931A;
    color: white;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.crypto-coin.anonymous {
    background-color: #3cbef2;
    color: white;
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3cbef2;
    animation: pulse 3s infinite;
}

.network-node:nth-child(1) {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.network-node:nth-child(2) {
    top: 65%;
    left: 45%;
    animation-delay: 1s;
}

.network-node:nth-child(3) {
    top: 45%;
    left: 75%;
    animation-delay: 2s;
}

.secure-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3cbef2, transparent);
    animation: lineFlow 4s infinite linear;
}

.secure-line:nth-child(1) {
    top: 30%;
    left: 20%;
    width: 30%;
    animation-delay: 0s;
}

.secure-line:nth-child(2) {
    top: 50%;
    left: 40%;
    width: 40%;
    animation-delay: 1s;
}

.secure-line:nth-child(3) {
    top: 70%;
    left: 30%;
    width: 35%;
    animation-delay: 2s;
}

.animation-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-text span {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    text-shadow: 0 0 10px rgba(60, 190, 242, 0.7);
}

.text-secure {
    color: #3cbef2;
    animation: textFade 9s infinite;
    animation-delay: 0s;
}

.text-anonymous {
    color: #FFFFFF;
    animation: textFade 9s infinite;
    animation-delay: 3s;
}

.text-encrypted {
    color: #3cbef2;
    animation: textFade 9s infinite;
    animation-delay: 6s;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes lineFlow {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

@keyframes textFade {
    0%, 33%, 100% { opacity: 0; transform: scale(0.8); }
    5%, 28% { opacity: 1; transform: scale(1); }
}

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(60, 190, 242, 0.1);
    border-radius: 5px;
}

.main-nav a {
    color: #3cbef2;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.main-nav a:hover {
    background-color: rgba(60, 190, 242, 0.2);
}

main {
    padding: 40px 0;
}

.info-section, .links-section, .security-section, .guide-section, .faq-section {
    margin-bottom: 50px;
}

h2 {
    color: #3cbef2;
    border-bottom: 2px solid #3cbef2;
    padding-bottom: 10px;
    margin-top: 30px;
}

h3 {
    color: #3cbef2;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.feature {
    flex-basis: 30%;
    background-color: rgba(60, 190, 242, 0.1);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.feature h3 {
    color: #3cbef2;
    margin-top: 0;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.onion-link {
    display: block;
    padding: 15px;
    background-color: rgba(60, 190, 242, 0.2);
    color: #3cbef2;
    text-decoration: none;
    border-radius: 5px;
    font-family: monospace;
    font-size: 16px;
    transition: background-color 0.3s;
    text-align: center;
    word-break: break-all;
}

.onion-link:hover {
    background-color: rgba(60, 190, 242, 0.4);
}

.security-notice {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-left: 4px solid #3cbef2;
    border-radius: 3px;
    margin: 20px 0;
}

.security-notice h3 {
    color: #3cbef2;
    margin-top: 0;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.faq-item h3 {
    margin-top: 0;
}

footer {
    padding: 30px 0;
    border-top: 1px solid #3cbef2;
    opacity: 0.7;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex-basis: 30%;
    margin-bottom: 15px;
}

.footer-section h3 {
    color: #3cbef2;
    margin-top: 0;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(60, 190, 242, 0.3);
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    
    .feature {
        flex-basis: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        flex-basis: 100%;
        margin-bottom: 25px;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav a {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .animation-container {
        height: 150px;
    }
    
    .crypto-coin {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .animation-text span {
        font-size: 18px;
    }
}