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

html {
    scroll-behavior: smooth;
}

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

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

/* Cosmic Background Animation */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

.nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(70, 54, 255, 0.1) 0%, transparent 70%);
    animation: nebulaPulse 15s ease-in-out infinite alternate;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(70, 54, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(34, 197, 94, 0.2) 1px, transparent 1px),
        radial-gradient(circle, rgba(250, 204, 21, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    animation: particleFloat 25s linear infinite;
}

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

@keyframes nebulaPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes particleFloat {
    0% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(30px) translateY(-30px); }
    66% { transform: translateX(-20px) translateY(-60px); }
    100% { transform: translateX(0) translateY(-100px); }
}

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

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(70, 54, 255, 0.1), transparent);
    animation: navGlow 3s ease-in-out infinite alternate;
}

@keyframes navGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.nav-container .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-brand .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: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 54, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #4636ff;
    background: rgba(70, 54, 255, 0.1);
    box-shadow: 0 0 20px rgba(70, 54, 255, 0.3);
}

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

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4636ff, #22c55e, #facc15);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(70, 54, 255, 0.5);
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #b7b7b7;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.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.5);
}

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

.hero-image {
    position: relative;
}

.floating-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(70, 54, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(70, 54, 255, 0.3);
}

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

/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.content-section.alt-bg {
    background: rgba(47, 47, 47, 0.1);
    border-top: 1px solid rgba(70, 54, 255, 0.2);
    border-bottom: 1px solid rgba(70, 54, 255, 0.2);
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
}

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

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.feature-cards {
    display: grid;
    gap: 30px;
}

.feature-card {
    background: rgba(70, 54, 255, 0.1);
    border: 1px solid rgba(70, 54, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 54, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

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

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4636ff;
}

.feature-card p {
    color: #b7b7b7;
    line-height: 1.6;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-features {
    margin-top: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    border-left: 4px solid #22c55e;
}

.security-icon {
    font-size: 1.5rem;
    color: #22c55e;
}

.security-item h4 {
    color: #22c55e;
    margin-bottom: 5px;
}

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

.image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(70, 54, 255, 0.3);
    transition: all 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(70, 54, 255, 0.4);
}

.showcase-image:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
}

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

.marketplace-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.trade-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(70, 54, 255, 0.3);
    box-shadow: 0 15px 40px rgba(70, 54, 255, 0.2);
    transition: all 0.3s ease;
}

.trade-image:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 60px rgba(70, 54, 255, 0.4);
}

/* Mirrors Section */
.mirrors-container {
    max-width: 800px;
    margin: 0 auto;
}

.mirrors-info {
    text-align: center;
    margin-bottom: 40px;
}

.mirrors-info p {
    font-size: 1.1rem;
    color: #b7b7b7;
    line-height: 1.8;
}

.mirrors-terminal {
    background: #2f2f2f;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(70, 54, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(70, 54, 255, 0.3);
}

.terminal-title {
    color: #4636ff;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

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

.control.red { background: #ef4444; }
.control.yellow { background: #facc15; }
.control.green { background: #22c55e; }

.terminal-content {
    padding: 30px;
    font-family: 'JetBrains Mono', monospace;
}

.mirror-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mirror-link {
    color: #22c55e;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mirror-link:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Dispute Section */
.dispute-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.dispute-features {
    margin-top: 30px;
}

.dispute-item {
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dispute-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.2);
}

.dispute-item h4 {
    color: #facc15;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.dispute-item p {
    color: #b7b7b7;
    font-size: 0.9rem;
}

.guarantee-list {
    margin-top: 20px;
}

.guarantee-item {
    color: #22c55e;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    font-weight: 500;
}

/* Vendor Section */
.vendor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}

.rule-icon {
    font-size: 1.3rem;
    color: #ef4444;
    margin-top: 5px;
}

.rule-item h4 {
    color: #ef4444;
    margin-bottom: 5px;
    font-size: 1rem;
}

.rule-item p {
    color: #b7b7b7;
    font-size: 0.85rem;
    line-height: 1.5;
}

.city-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(70, 54, 255, 0.3);
    box-shadow: 0 15px 40px rgba(70, 54, 255, 0.2);
    transition: all 0.3s ease;
}

.city-image:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 25px 60px rgba(70, 54, 255, 0.4);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(240, 242, 255, 0.05);
    border: 1px solid rgba(70, 54, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

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

.faq-item p {
    color: #b7b7b7;
    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;
    padding: 60px 0;
    margin-top: 100px;
}

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

.disclaimer-content h2 {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-content p {
    color: #f1f1f1;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

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

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

.footer-brand {
    text-align: center;
}

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

.footer-tagline {
    color: #4636ff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #b7b7b7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-nav a:hover {
    color: #4636ff;
    background: rgba(70, 54, 255, 0.1);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container,
    .content-grid,
    .security-grid,
    .marketplace-content,
    .dispute-grid,
    .vendor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .image-showcase {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .faq-item {
        padding: 20px;
    }
}

