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

:root {
    /* Obsidian Theme Colors */
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-bg: #222222;
    --neon-blue: #00ffcc;
    --neon-green: #00ffe1;
    --glass-green: rgba(0, 255, 204, 0.1);
    --text-primary: #ccfaff;
    --text-secondary: #8cc8d8;
    --text-muted: #5a7a8a;
    --border-glow: rgba(0, 255, 204, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 255, 204, 0.2);
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-accent: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 1100px;
}

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

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 225, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 255, 204, 0.02) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.logo-text {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 18px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--neon-blue);
    background: var(--glass-green);
    box-shadow: var(--shadow-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#obsidian-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-glyphs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glyph {
    position: absolute;
    font-size: 24px;
    color: var(--neon-blue);
    opacity: 0.3;
    animation: floatGlyph 6s ease-in-out infinite;
}

.glyph-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glyph-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.glyph-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.glyph-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo-container {
    margin-bottom: 30px;
    animation: logoGlow 3s ease-in-out infinite;
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px var(--neon-blue));
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--neon-blue));
    }
    50% {
        filter: drop-shadow(0 0 30px var(--neon-green));
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-accent);
    color: var(--primary-bg);
    box-shadow: var(--shadow-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.cta-button.secondary:hover {
    background: var(--glass-green);
    box-shadow: var(--shadow-glow);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mirrors Section */
.mirrors-section {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

.mirror-box {
    background: var(--accent-bg);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-glow);
    max-width: 800px;
    margin: 0 auto;
}

.mirror-warning {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.warning-icon {
    font-size: 24px;
}

.mirror-links {
    margin-bottom: 30px;
}

.mirror-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--neon-blue);
}

.link-text {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--neon-green);
    font-size: 1.1rem;
}

.copy-btn {
    background: var(--gradient-accent);
    color: var(--primary-bg);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.mirror-status {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.status-dot.verified {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.feature-card h3 {
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Registration Section */
.registration-section {
    background: var(--secondary-bg);
}

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

.step-card {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--gradient-accent);
    color: var(--primary-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-image {
    text-align: center;
}

.process-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
}

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

.security-card {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.security-card h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.security-card p {
    line-height: 1.7;
}

/* Monero Section */
.monero-section {
    background: var(--secondary-bg);
}

.monero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.monero-text h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.monero-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.monero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.monero-card {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 25px;
}

.monero-card h4 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.monero-card ul {
    list-style: none;
}

.monero-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    position: relative;
    padding-left: 20px;
}

.monero-card li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

.monero-card li:last-child {
    border-bottom: none;
}

/* Escrow Section */
.escrow-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tier-card {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.tier-card h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tier-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.tier-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: var(--glass-green);
    color: var(--neon-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-glow);
}

.vendor-info {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 40px;
}

.vendor-info h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.vendor-info p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Roadmap Section */
.roadmap-section {
    background: var(--secondary-bg);
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px var(--neon-blue);
}

.timeline-content {
    background: var(--accent-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 30px;
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.timeline-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.status-badge.in-progress {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-badge.planned {
    background: var(--glass-green);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
    background: var(--accent-bg);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--neon-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.gallery-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Warning Section */
.warning-section {
    background: var(--secondary-bg);
}

.warning-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.warning-card {
    border-radius: 12px;
    padding: 30px;
    border: 2px solid;
}

.warning-card.critical {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
}

.warning-card.info {
    background: rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
}

.warning-card.support {
    background: var(--glass-green);
    border-color: var(--border-glow);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.warning-card h3 {
    color: var(--neon-blue);
    font-size: 1.3rem;
}

.warning-card ul {
    list-style: none;
    margin-bottom: 0;
}

.warning-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.warning-card li:before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
}

.warning-card p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--neon-blue);
    margin-bottom: 20px;
}

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

.footer-section li {
    padding: 5px 0;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section li:hover {
    color: var(--neon-blue);
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glow);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1200px) {
    body {
        min-width: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .monero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 80% !important;
        margin: 0 auto !important;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 200px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .registration-steps,
    .security-grid,
    .escrow-tiers,
    .gallery-container,
    .warning-content {
        grid-template-columns: 1fr;
    }
    
    .mirror-box {
        padding: 20px;
    }
    
    .mirror-link {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mirror-status {
        flex-direction: column;
        gap: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 204, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:hover::before {
    width: 300px;
    height: 300px;
}

