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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(66, 70, 77, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #d00000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d00000;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d00000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d00000;
    transition: width 0.3s ease;
}

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

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.lang-active {
    color: #d00000;
}

.lang-inactive {
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-inactive:hover {
    color: #d00000;
}

.lang-separator {
    color: #666;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(208, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(208, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d00000;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.neon-text {
    color: #d00000;
    text-shadow: 
        0 0 5px #d00000,
        0 0 10px #d00000,
        0 0 15px #d00000,
        0 0 20px #d00000;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 5px #d00000,
            0 0 10px #d00000,
            0 0 15px #d00000,
            0 0 20px #d00000;
    }
    to {
        text-shadow: 
            0 0 10px #d00000,
            0 0 20px #d00000,
            0 0 30px #d00000,
            0 0 40px #d00000;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d00000;
    font-family: 'IBM Plex Mono', monospace;
}

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

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid #d00000;
    color: #d00000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.cta-button:hover {
    background: #d00000;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(208, 0, 0, 0.5);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d00000;
}

/* Mirrors Section */
.mirrors {
    background: #111111;
}

.mirror-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
    max-width: 640px;
    margin: 0 auto;
}

.mirror-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #4caf50;
}

.terminal-prompt {
    color: #4caf50;
}

.blinking-cursor {
    animation: blink 1s infinite;
}

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

.mirror-content {
    line-height: 1.8;
}

.mirror-link {
    color: #d00000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mirror-link:hover {
    color: #ff3333;
    text-shadow: 0 0 5px #d00000;
}

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

.security-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(208, 0, 0, 0.2);
}

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

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.active {
    background: #4caf50;
    box-shadow: 0 0 10px #4caf50;
}

.status-indicator.warning {
    background: #ffc107;
    box-shadow: 0 0 10px #ffc107;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Escrow Timeline */
.escrow {
    background: #111111;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #333;
    transform: translateY(-50%);
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #d00000, #ff3333);
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-item {
    text-align: center;
    max-width: 150px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #d00000;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 10px rgba(208, 0, 0, 0.5);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.timeline-content p {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.timeline-time {
    font-size: 0.7rem;
    color: #d00000;
    font-weight: 500;
    font-family: 'IBM Plex Mono', monospace;
}

.escrow-note {
    text-align: center;
    background: #1a1a1a;
    border: 1px solid #d00000;
    border-radius: 8px;
    padding: 1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Rules Section */
.rules-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.accordion-header:hover {
    background: #222;
}

.accordion-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #d00000;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content ul {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid #333;
}

.accordion-content li:last-child {
    border-bottom: none;
}

.accordion-content li::before {
    content: '•';
    color: #d00000;
    margin-right: 0.5rem;
}

/* Vendors Section */
.vendors {
    background: #111111;
}

.vendor-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.vendor-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-5px);
}

.vendor-card.trusted {
    border-color: #4caf50;
}

.vendor-card.new {
    border-color: #ffc107;
}

.vendor-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vendor-card.trusted .vendor-badge {
    background: #4caf50;
    color: #ffffff;
}

.vendor-card.new .vendor-badge {
    background: #ffc107;
    color: #000000;
}

.vendor-card h3 {
    text-align: center;
    margin: 1rem 0 2rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.vendor-features {
    space-y: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Wallet Section */
.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.wallet-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.wallet-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wallet-warnings {
    space-y: 1rem;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #1a1a1a;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

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

.wallet-example {
    text-align: center;
}

.qr-placeholder {
    margin-bottom: 2rem;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #ffffff;
    margin: 0 auto 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-pattern {
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(90deg, #000 50%, transparent 50%),
        linear-gradient(#000 50%, transparent 50%);
    background-size: 10px 10px;
}

.qr-label {
    color: #888;
    font-size: 0.9rem;
}

.address-example {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.bitcoin-address {
    font-family: 'IBM Plex Mono', monospace;
    color: #d00000;
    font-size: 0.9rem;
    flex: 1;
    word-break: break-all;
}

.copy-button {
    background: #d00000;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.copy-button:hover {
    background: #ff3333;
}

/* Registration Section */
.registration {
    background: #111111;
}

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

.step-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #d00000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.step-image {
    margin-top: 1rem;
}

.preview-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
}

/* Gallery Section */
.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.gallery-track {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
}

.gallery-slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.gallery-slide.active {
    display: flex;
}

.gallery-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
}

.gallery-caption {
    margin-top: 1rem;
    color: #cccccc;
    font-size: 1rem;
    text-align: center;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(208, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: #d00000;
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #333;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-dot.active {
    background: #d00000;
}

.gallery-dot:hover {
    background: #d00000;
}

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

.support-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
}

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

.support-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.language-badges {
    display: flex;
    gap: 1rem;
}

.lang-badge {
    background: #d00000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.device-recommendation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #4caf50;
}

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

.device-text {
    font-weight: 500;
    color: #4caf50;
}

/* Footer */
.footer {
    background: #111111;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d00000;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.25rem 0;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section li:hover {
    color: #d00000;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: #333;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .wallet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vendor-comparison {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-track {
        display: none;
    }
    
    .registration-steps {
        grid-template-columns: 1fr;
    }
}

