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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #eef2f7;
    background: radial-gradient(circle at top left, #23272e, #15171a);
    animation: gradientMove 20s ease-in-out infinite;
    min-height: 100vh;
}

@keyframes gradientMove {
    0%, 100% { 
        background: radial-gradient(circle at top left, #23272e, #15171a);
    }
    50% { 
        background: radial-gradient(circle at bottom right, #23272e, #15171a);
    }
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
    color: #eef2f7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #eef2f7;
    border-bottom: 2px solid #5da6ff;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #bca16b;
}

p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: #17191cdd;
    border: 2px solid #5da6ff55;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: #22272c;
    border-color: #5da6ff;
    box-shadow: 0 4px 15px rgba(93, 166, 255, 0.3);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #5da6ff;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: #17191cdd;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff22;
    border-radius: 10px;
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    color: #eef2f7;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff11;
    transition: color 0.3s ease;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a:hover {
    color: #5da6ff;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.hero-logo {
    width: 250px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
    border-bottom: 1px solid #ffffff11;
}

section:nth-child(even) {
    background: rgba(34, 39, 44, 0.3);
}

/* Onion Links Section */
.onion-links-section {
    background: #22272c;
}

.links-container {
    background: #17191c;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffffff22;
    margin-bottom: 30px;
    font-family: 'Courier New', monospace;
}

.links-container a {
    color: #5da6ff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff11;
    transition: color 0.3s ease;
}

.links-container a:hover {
    color: #bca16b;
}

.warning-box {
    background: rgba(188, 161, 107, 0.1);
    border: 1px solid #bca16b;
    padding: 20px;
    border-radius: 8px;
    color: #bca16b;
}

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

.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Gallery Styles */
.gallery-container {
    position: relative;
    margin: 40px 0;
    overflow-x: auto;    
    overflow-y: visible; 
    border-radius: 10px;
}


.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.gallery-track::-webkit-scrollbar {
    height: 8px;
}

.gallery-track::-webkit-scrollbar-track {
    background: #17191c;
    border-radius: 4px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: #5da6ff;
    border-radius: 4px;
}

.gallery-track img {
    min-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #22272cdd;
    border: 1px solid #5da6ff55;
    color: #5da6ff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: #5da6ff;
    color: #17191c;
    box-shadow: 0 4px 15px rgba(93, 166, 255, 0.3);
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #22272c;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffffff22;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #5da6ff;
    box-shadow: 0 8px 25px rgba(93, 166, 255, 0.1);
    transform: translateY(-5px);
}

/* Registration Steps */
.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #5da6ff;
    color: #17191c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.registration-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reg-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Cryptocurrency Section */
.crypto-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.crypto-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.crypto-card {
    background: #22272c;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ffffff22;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    border-color: #bca16b;
    box-shadow: 0 8px 25px rgba(188, 161, 107, 0.1);
}

.important-notice {
    background: rgba(93, 166, 255, 0.1);
    border: 1px solid #5da6ff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Vendor Section */
.vendor-requirements ul,
.vendor-rules ul {
    list-style: none;
    padding-left: 0;
}

.vendor-requirements li,
.vendor-rules li {
    padding: 10px 0;
    border-bottom: 1px solid #ffffff11;
    position: relative;
    padding-left: 25px;
}

.vendor-requirements li:before,
.vendor-rules li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5da6ff;
    font-weight: bold;
}

.vendor-rules li:before {
    content: "✗";
    color: #ff6b6b;
}

/* Disputes Section */
.disputes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Warning Section */
.warning-section {
    background: rgba(188, 161, 107, 0.05);
}

.critical-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.security-tips ul {
    list-style: none;
    padding-left: 0;
}

.security-tips li {
    padding: 15px 0;
    border-bottom: 1px solid #ffffff11;
    position: relative;
    padding-left: 30px;
}

.security-tips li:before {
    content: "🛡️";
    position: absolute;
    left: 0;
}

.legal-disclaimer {
    background: #22272c;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ffffff22;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #17191c;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #ffffff22;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-grid,
    .crypto-content,
    .registration-content,
    .disputes-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-nav {
        top: 20px;
        right: 20px;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .crypto-cards {
        grid-template-columns: 1fr;
    }
    
    .gallery-track img {
        min-width: 300px;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 200px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .gallery-track img {
        min-width: 250px;
    }
}

