/* 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;
    overflow-x: hidden;
    position: relative;
}

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

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

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 20s infinite linear;
}

.orb-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #4636ff, transparent);
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #22c55e, transparent);
    top: 60%;
    right: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orb-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #facc15, transparent);
    bottom: 30%;
    left: 20%;
    animation-duration: 35s;
}

.orb-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #ef4444, transparent);
    top: 40%;
    right: 30%;
    animation-duration: 28s;
    animation-direction: reverse;
}

.orb-5 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #f0f2ff, transparent);
    bottom: 20%;
    right: 10%;
    animation-duration: 32s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -50px) rotate(90deg); }
    50% { transform: translate(-50px, -100px) rotate(180deg); }
    75% { transform: translate(-100px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.gradient-waves {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(70, 54, 255, 0.1) 25%, 
        transparent 50%, 
        rgba(34, 197, 94, 0.1) 75%, 
        transparent 100%);
    animation: waves 15s infinite linear;
}

@keyframes waves {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.holographic-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(70, 54, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(70, 54, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pulse 4s infinite ease-in-out;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(70, 54, 255, 0.3);
    box-shadow: 0 12px 40px rgba(70, 54, 255, 0.2);
    transform: translateY(-5px);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo {
    height: 34px;
    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;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4636ff, #22c55e);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4636ff, #22c55e, #facc15);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.glitch-text {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 2s infinite;
    color: #4636ff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2s infinite;
    color: #22c55e;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, 2px); }
}

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

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

.stat-card {
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
}

.stat-number {
    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: #b7b7b7;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
    margin-top: 2rem;
}

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

.dark-section {
    background: rgba(47, 47, 47, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.neon-text {
    color: #4636ff;
    text-shadow: 0 0 20px rgba(70, 54, 255, 0.8);
    animation: neon-pulse 2s infinite ease-in-out;
}

@keyframes neon-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(70, 54, 255, 0.8); }
    50% { text-shadow: 0 0 30px rgba(70, 54, 255, 1), 0 0 40px rgba(70, 54, 255, 0.8); }
}

.holographic-text {
    background: linear-gradient(45deg, #4636ff, #22c55e, #facc15, #ef4444);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic 4s ease-in-out infinite;
}

@keyframes holographic {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.cyber-text {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
    font-family: 'Courier New', monospace;
    position: relative;
}

.cyber-text::after {
    content: '_';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
    margin-bottom: 2rem;
}

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

.security-card {
    padding: 2rem;
    text-align: center;
}

.card-image {
    margin-bottom: 1.5rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-image:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(70, 54, 255, 0.3);
}

.card-content h3 {
    font-size: 1.3rem;
    color: #4636ff;
    margin-bottom: 1rem;
}

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

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

.marketplace-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(70, 54, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    color: #f1f1f1;
}

.marketplace-image {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(70, 54, 255, 0.3);
}

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

.mirrors-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mirrors-header h3 {
    color: #4636ff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.mirror-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mirror-item:hover {
    background: rgba(70, 54, 255, 0.1);
    transform: translateX(5px);
}

.mirror-link {
    color: #22c55e;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.mirror-link:hover {
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.mirror-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.mirror-status.online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.dispute-card {
    padding: 2rem;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.dispute-card h3 {
    color: #4636ff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

.vendor-requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(10px);
}

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

.req-text {
    color: #f1f1f1;
}

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

.philosophy-card {
    padding: 2rem;
}

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

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

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

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question h3 {
    color: #4636ff;
    font-size: 1.1rem;
}

.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 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #b7b7b7;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: rgba(239, 68, 68, 0.1);
    border-top: 2px solid rgba(239, 68, 68, 0.3);
}

.disclaimer-content {
    padding: 2rem;
    text-align: center;
    border-color: rgba(239, 68, 68, 0.3);
}

.disclaimer-content h2 {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    color: #f1f1f1;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(15, 15, 15, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

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

.footer-logo .logo {
    height: 34px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #4636ff;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.footer-copyright {
    text-align: center;
    color: #757575;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .marketplace-hero,
    .vendors-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-grid,
    .disputes-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

