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

body {
    font-family: 'Arial', sans-serif;
    background-color: #181a20;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #23252e;
}

.header-text {
    flex: 1;
    min-width: 300px;
}

.logo {
    max-width: 150px;
    height: auto;
}

.gif-container {
    text-align: center;
    min-width: 150px;
}

.verification-gif {
    width: 120px;
    height: 120px;
    border: 2px solid #2777ff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(39, 119, 255, 0.3);
}

.gif-caption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #2777ff;
    font-weight: bold;
}

h1 {
    font-size: 2.8em;
    color: #2777ff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    color: #a0a0b0;
    font-size: 1.2em;
    font-weight: 300;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 15px;
    background-color: #23252e;
    border-radius: 8px;
}

.main-nav a {
    color: #2777ff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background-color: #2777ff;
    color: #fff;
}

section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #23252e;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

h2 {
    color: #2777ff;
    margin-bottom: 20px;
    font-size: 2em;
    border-bottom: 1px solid #343744;
    padding-bottom: 10px;
}

h3 {
    color: #2777ff;
    margin: 25px 0 15px;
    font-size: 1.5em;
}

h4 {
    color: #2777ff;
    margin-bottom: 10px;
    font-size: 1.2em;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-section {
    background-color: #1d1f28;
    border: 1px solid #2777ff;
}

.links-container {
    margin: 25px 0;
}

.link-item {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #181a20;
    border-radius: 5px;
    border: 1px solid #343744;
    transition: all 0.3s ease;
}

.link-item:hover {
    border-color: #2777ff;
    transform: translateX(5px);
}

.market-link {
    color: #2777ff;
    text-decoration: none;
    font-size: 1.1em;
    word-break: break-all;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

.market-link:hover {
    color: #ffffff;
}

.pgp-verification {
    background-color: #1a1c24;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #2777ff;
}

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

.feature {
    background-color: #1d1f28;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.monero-section ul, .security-section ol, .security-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.monero-section li, .security-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #343744;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #23252e;
    color: #a0a0b0;
    font-size: 0.9em;
}

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

@media (max-width: 968px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .header-text {
        order: 2;
    }
    
    .logo {
        order: 1;
        margin-bottom: 20px;
    }
    
    .gif-container {
        order: 3;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 20px;
    }
    
    .verification-gif {
        width: 100px;
        height: 100px;
    }
}