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

body {
    font-family: 'Manrope', sans-serif;
    background-color: #23252e;
    color: #eeedec;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(80, 165, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(80, 165, 255, 0.6);
    }
}

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

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #23252e 0%, #1a1c24 50%, #0f1015 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #50a5ff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #50a5ff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #50a5ff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #50a5ff, #8affb1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(80, 165, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #b5b7c6;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #b5b7c6;
}

/* Mirrors Section */
.mirrors {
    padding: 4rem 0;
    background: rgba(35, 37, 46, 0.8);
    backdrop-filter: blur(10px);
}

.mirror-box {
    background: rgba(45, 47, 56, 0.9);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(80, 165, 255, 0.3);
    animation: glow 3s ease-in-out infinite;
}

.mirror-box h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #50a5ff;
}

.mirror-links {
    margin: 2rem 0;
}

.mirror-link {
    font-family: 'Courier New', monospace;
    background: rgba(35, 37, 46, 0.8);
    border: 1px solid #50a5ff;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    color: #50a5ff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mirror-link:hover {
    background: rgba(80, 165, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 165, 255, 0.3);
}

.mirror-note {
    color: #ff5454;
    font-weight: 600;
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1c24 0%, #23252e 100%);
}

.about h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #50a5ff;
}

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

.about-card {
    background: rgba(45, 47, 56, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(80, 165, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #50a5ff;
    box-shadow: 0 15px 30px rgba(80, 165, 255, 0.2);
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #50a5ff;
    background: rgba(80, 165, 255, 0.1);
}

.i-shield::before { content: "🛡️"; }
.i-xmr::before { content: "🔒"; }
.i-microscope::before { content: "🔬"; }
.i-lock::before { content: "🔐"; }
.i-multisig::before { content: "🔗"; }
.i-2fa::before { content: "🔑"; }
.i-decentralized::before { content: "🌐"; }

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #eeedec;
}

.about-card p {
    color: #b5b7c6;
    line-height: 1.6;
}

/* Security Section */
.security {
    padding: 6rem 0;
    background: rgba(15, 16, 21, 0.9);
}

.security h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #8affb1;
}

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

.security-card {
    background: rgba(35, 37, 46, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(138, 255, 177, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #8affb1;
    box-shadow: 0 10px 25px rgba(138, 255, 177, 0.2);
}

.security-card .icon {
    background: rgba(138, 255, 177, 0.1);
    color: #8affb1;
}

.security-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #eeedec;
}

.security-card p {
    color: #b5b7c6;
    font-size: 0.95rem;
}

/* Registration Section */
.registration {
    padding: 6rem 0;
    background: linear-gradient(135deg, #23252e 0%, #1a1c24 100%);
}

.registration h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #50a5ff;
}

.reg-steps {
    display: grid;
    gap: 3rem;
}

.reg-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(45, 47, 56, 0.6);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(80, 165, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

.reg-step:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.reg-step:nth-child(even) .reg-image {
    order: 2;
}

.reg-step:nth-child(even) .reg-content {
    order: 1;
}

.reg-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.reg-image:hover {
    transform: scale(1.05);
}

.reg-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #50a5ff;
}

.reg-content p {
    color: #b5b7c6;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Verification Section */
.verification {
    padding: 6rem 0;
    background: rgba(15, 16, 21, 0.9);
}

.verification h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #8affb1;
}

.verification-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verification-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #eeedec;
}

.verification-text p {
    color: #b5b7c6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.verification-text ul {
    list-style: none;
    padding: 0;
}

.verification-text li {
    color: #b5b7c6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.verification-text li::before {
    content: "✓";
    color: #8affb1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.verification-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: rgba(35, 37, 46, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(138, 255, 177, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #8affb1;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: #b5b7c6;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1c24 0%, #23252e 100%);
}

.faq h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #50a5ff;
}

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

.faq-item {
    background: rgba(45, 47, 56, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(80, 165, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:hover {
    border-color: #50a5ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(80, 165, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #50a5ff;
}

.faq-item p {
    color: #b5b7c6;
    line-height: 1.6;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: rgba(15, 16, 21, 0.9);
    text-align: center;
}

.community h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #8affb1;
}

.community > p {
    font-size: 1.2rem;
    color: #b5b7c6;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.community-feature {
    background: rgba(35, 37, 46, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(138, 255, 177, 0.2);
    transition: all 0.3s ease;
}

.community-feature:hover {
    transform: translateY(-5px);
    border-color: #8affb1;
    box-shadow: 0 10px 25px rgba(138, 255, 177, 0.2);
}

.community-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8affb1;
}

.community-feature p {
    color: #b5b7c6;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(15, 16, 21, 0.95);
    border-top: 1px solid rgba(80, 165, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #50a5ff;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: #b5b7c6;
    margin-bottom: 0.5rem;
}

#last-update {
    color: #8affb1;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about h2,
    .security h2,
    .registration h2,
    .verification h2,
    .faq h2,
    .community h2 {
        font-size: 2rem;
    }
    
    .reg-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reg-step:nth-child(even) .reg-image,
    .reg-step:nth-child(even) .reg-content {
        order: unset;
    }
    
    .verification-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

