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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cosmic Background */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #4636ff, transparent),
        radial-gradient(1px 1px at 90px 40px, #8b5cf6, transparent),
        radial-gradient(1px 1px at 130px 80px, #00d4ff, transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, #4636ff 1px, transparent 1px),
        radial-gradient(circle, #8b5cf6 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: float 15s ease-in-out infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(70, 54, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo .logo {
    height: 34px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(70, 54, 255, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: #4636ff;
    text-shadow: 0 0 10px rgba(70, 54, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4636ff, #8b5cf6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Exo', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4636ff, #8b5cf6, #00d4ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid #4636ff;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #4636ff; }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #b7b7b7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4636ff;
    text-shadow: 0 0 20px rgba(70, 54, 255, 0.6);
}

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

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

.section-title {
    font-family: 'Exo', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4636ff, #8b5cf6);
    border-radius: 2px;
}

/* Marketplace Section */
.marketplace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.marketplace-text p {
    margin-bottom: 1.5rem;
    color: #f1f1f1;
    font-size: 1.1rem;
}

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

.feature-item {
    background: rgba(70, 54, 255, 0.1);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 54, 255, 0.3);
    border-color: #4636ff;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #4636ff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-image:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(70, 54, 255, 0.2);
}

/* Security Section */
.security-section {
    background: rgba(70, 54, 255, 0.05);
}

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

.security-text p {
    margin-bottom: 1.5rem;
    color: #f1f1f1;
    font-size: 1.1rem;
}

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

.security-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #4636ff;
    box-shadow: 0 15px 30px rgba(70, 54, 255, 0.2);
}

.security-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.security-card h3 {
    color: #4636ff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.security-card p {
    color: #b7b7b7;
    font-size: 0.9rem;
}

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

.mirrors-description {
    text-align: center;
    margin-bottom: 3rem;
}

.mirrors-description p {
    font-size: 1.1rem;
    color: #f1f1f1;
}

.mirrors-terminal {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: #2f2f2f;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.red { background: #ef4444; }
.terminal-btn.yellow { background: #facc15; }
.terminal-btn.green { background: #22c55e; }

.terminal-title {
    color: #f1f1f1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-line {
    margin-bottom: 1rem;
}

.terminal-prompt {
    color: #22c55e;
    font-weight: 600;
}

.terminal-command {
    color: #4636ff;
    margin-left: 1rem;
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mirror-link {
    color: #00d4ff;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

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

.dispute-card {
    background: rgba(70, 54, 255, 0.1);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.dispute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(70, 54, 255, 0.2);
    border-color: #4636ff;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.dispute-card h3 {
    color: #4636ff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.dispute-card p {
    color: #f1f1f1;
    line-height: 1.6;
}

/* Vendors Section */
.vendors-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vendors-text p {
    margin-bottom: 1.5rem;
    color: #f1f1f1;
    font-size: 1.1rem;
}

.vendor-requirements {
    margin-top: 2rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(70, 54, 255, 0.1);
}

.requirement-icon {
    font-size: 1.2rem;
}

/* Anti-Phishing Section */
.anti-phishing-section {
    background: rgba(70, 54, 255, 0.05);
}

.anti-phishing-content p {
    margin-bottom: 1.5rem;
    color: #f1f1f1;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.protection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.protection-item {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.protection-item:hover {
    transform: translateY(-5px);
    border-color: #4636ff;
    box-shadow: 0 15px 30px rgba(70, 54, 255, 0.2);
}

.protection-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.protection-item h3 {
    color: #4636ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.protection-item p {
    color: #b7b7b7;
}

/* Monetization Section */
.monetization-content p {
    margin-bottom: 1.5rem;
    color: #f1f1f1;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.monetization-card {
    background: rgba(70, 54, 255, 0.1);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.monetization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(70, 54, 255, 0.2);
    border-color: #4636ff;
}

.monetization-card h3 {
    color: #4636ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.commission-rate {
    font-size: 3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.monetization-card p {
    color: #b7b7b7;
}

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

.philosophy-content p {
    margin-bottom: 1.5rem;
    color: #f1f1f1;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-item {
    background: rgba(70, 54, 255, 0.1);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(70, 54, 255, 0.2);
    border-color: #4636ff;
}

.principle-item h3 {
    color: #4636ff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.principle-item p {
    color: #f1f1f1;
}

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(70, 54, 255, 0.1);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4636ff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(70, 54, 255, 0.2);
}

.faq-question h3 {
    color: #4636ff;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #4636ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #f1f1f1;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(239, 68, 68, 0.1);
    border-top: 2px solid #ef4444;
    border-bottom: 2px solid #ef4444;
}

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

.disclaimer-content h2 {
    color: #ef4444;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.disclaimer-content p {
    color: #f1f1f1;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(70, 54, 255, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-logo-img {
    height: 34px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(70, 54, 255, 0.5));
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-nav a:hover {
    color: #4636ff;
    text-shadow: 0 0 10px rgba(70, 54, 255, 0.8);
}

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

.footer-tagline p {
    color: #4636ff;
    font-weight: 600;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(70, 54, 255, 0.3);
}

.footer-bottom p {
    color: #757575;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .marketplace-content,
    .security-content,
    .vendors-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .disputes-grid,
    .protection-features,
    .monetization-grid,
    .philosophy-principles {
        grid-template-columns: 1fr;
    }
    
    .security-images {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }
}

