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

body {
    font-family: 'Share Tech Mono', monospace;
    background: radial-gradient(circle at top left, #0f1115, #06070a);
    color: #ccfaff;
    line-height: 1.6;
    overflow-x: hidden;
    animation: gradientMove 20s ease-in-out infinite;
    font-size: 16px;
}

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

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

/* Terminal Navigation */
.terminal-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 400px;
    background: #000000ee;
    border: 2px solid #00ffcc66;
    border-radius: 8px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px #00ffe122;
    font-family: 'Roboto Mono', monospace;
}

.terminal-header {
    background: #00ffcc22;
    padding: 8px 15px;
    border-bottom: 1px solid #00ffcc66;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    color: #00ffe1;
    font-size: 0.9rem;
    font-weight: 700;
}

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

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.minimize { background: #ffaa00; color: #000; }
.maximize { background: #00ff00; color: #000; }
.close { background: #ff0000; color: #fff; }

.control:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.terminal-content {
    padding: 15px;
}

.terminal-prompt {
    margin-bottom: 10px;
    color: #00ffcc;
    font-size: 0.9rem;
}

.prompt-symbol {
    color: #00ffe1;
    margin-right: 5px;
}

.command-text {
    color: #ccfaff;
}

.terminal-menu {
    list-style: none;
}

.terminal-menu li {
    margin: 5px 0;
}

.terminal-menu a {
    color: #00ffcc;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 5px 10px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.terminal-menu a:hover {
    background: #00ffcc22;
    color: #00ffe1;
    border-left-color: #00ffcc;
    transform: translateX(5px);
}

/* Typography */
h1 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #00ffe1;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px #00ffe144;
    text-align: center;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px #00ffe144; }
    100% { text-shadow: 0 0 50px #00ffe166, 0 0 70px #00ffe133; }
}

h2 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #00ffe1;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #00ffe122;
    text-align: center;
}

h3 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 1.4rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: #00ffcc;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccfaff;
}

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

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc66, transparent);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.logo-container {
    text-align: right;
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    color: #00ffe1;
    text-shadow: 0 0 30px #00ffe144;
    line-height: 0.8;
}

.logo-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    color: #00ffcc;
    letter-spacing: 0.3rem;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
    grid-column: 1 / -1;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #000000aa;
    border: 1px solid #00ffcc66;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 20px #00ffe122;
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px #00ffe144);
}

.badge-text {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    color: #00ffcc;
}

.hero-visual {
    position: relative;
    height: 400px;
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.data-matrix {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ffcc11, #00ffe111);
    border: 2px solid #00ffcc66;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    animation: matrixPulse 4s ease-in-out infinite;
}

@keyframes matrixPulse {
    0%, 100% { box-shadow: 0 0 30px #00ffe122; }
    50% { box-shadow: 0 0 50px #00ffe144, 0 0 70px #00ffe122; }
}

.data-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00ffcc44, transparent);
    animation: dataFlow 3s linear infinite;
}

@keyframes dataFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Links Section */
.links-section {
    background: linear-gradient(135deg, #0a0c10, #151820);
}

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

.links-container {
    background: #000000aa;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.terminal-window .terminal-header {
    background: #00ffcc22;
    padding: 10px 15px;
    border-bottom: 1px solid #00ffcc66;
}

.terminal-window .terminal-title {
    color: #00ffe1;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
}

.mirror-list {
    margin-bottom: 20px;
}

.mirror-list a {
    display: block;
    color: #ff4a33;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    padding: 8px 15px;
    margin: 5px 0;
    background: #000000aa;
    border-radius: 5px;
    border: 1px solid #ff4a3366;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.mirror-list a:hover {
    color: #ffaa88;
    border-color: #ff4a33;
    box-shadow: 0 0 15px #ff4a3322;
    transform: translateX(5px);
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #00ffcc22;
    border-radius: 5px;
    border: 1px solid #00ffcc66;
}

.status-indicator {
    color: #00ff00;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.status-text {
    color: #00ffcc;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

.security-notice {
    color: #ffaa88;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #ff4a3322;
    border-radius: 10px;
    border: 1px solid #ff4a3366;
}

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px #00ffe122;
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffe1;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccfaff;
    font-size: 0.9rem;
}

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

.security-card {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.security-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px #00ffe122;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px #00ffe144);
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, #151820, #0a0c10);
}

.registration-overview {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Styles */
.gallery-container {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #00ffcc66;
    background: #000000aa;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    flex: 0 0 300px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #00ffcc66;
    transition: all 0.3s ease;
}

.gallery-item img:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 20px #00ffe122;
}

.gallery-caption {
    margin-top: 1rem;
}

.gallery-caption h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00000088;
    border: 1px solid #00ffcc44;
    color: #00ffcc;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: #000000cc;
    border-color: #00ffcc;
    box-shadow: 0 0 15px #00ffe122;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.registration-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffe1;
    background: #000000aa;
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid #00ffcc66;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-content {
    flex: 1;
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
}

/* Crypto Section */
.crypto-overview {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.crypto-card {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.crypto-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 25px #00ffe122;
    transform: translateY(-5px);
}

.crypto-icon {
    font-size: 4rem;
    color: #00ffe1;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px #00ffe144);
}

.crypto-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #00ffcc22;
    color: #00ffcc;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #00ffcc66;
}

.escrow-info {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    text-align: center;
}

/* Vendors Section */
.vendors-section {
    background: linear-gradient(135deg, #0a0c10, #151820);
}

.vendors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.vendor-requirements,
.vendor-policies {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
}

/* Disputes Section */
.disputes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.disputes-info,
.raffle-info {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
}

/* Warning Section */
.warning-section {
    background: linear-gradient(135deg, #151820, #0a0c10);
}

.warning-primary {
    background: linear-gradient(135deg, #ff4a3322, #000000aa);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff4a33;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px #ff4a3322;
    text-align: center;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #ff4a33);
}

.warning-guidelines,
.warning-disclaimer {
    background: #000000aa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #00ffcc66;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #000000ee;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #00ffcc66;
}

.footer-content {
    color: #88aaaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal-nav {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo-container {
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .links-content,
    .about-content,
    .vendors-content,
    .disputes-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-track {
        padding: 1rem;
    }
    
    .gallery-item {
        flex: 0 0 250px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .security-card,
    .crypto-card,
    .step-content,
    .vendor-requirements,
    .vendor-policies,
    .disputes-info,
    .raffle-info,
    .warning-guidelines,
    .warning-disclaimer {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        flex: 0 0 200px;
    }
    
    .feature-badge {
        padding: 0.8rem 1.2rem;
    }
}

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

/* Selection Styling */
::selection {
    background: #00ffcc44;
    color: #00ffe1;
}

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

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00ffcc66;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ffcc;
}

/* Additional Animations */
@keyframes terminalBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-cursor {
    animation: terminalBlink 1s infinite;
}

/* Loading Animation */
.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

