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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #d7f6fa;
    background: radial-gradient(ellipse at 40% 20%, #183554 0%, #101820 70%, #050a12 100%);
    background-size: 400% 400%;
    animation: icyGradientMove 24s ease-in-out infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Neon Text Effects */
.neon-text {
    color: #9dfcff;
    text-shadow: 0 0 10px #9dfcff, 0 0 30px #33e6ff, 0 0 50px #33e6ff55;
    letter-spacing: 0.05em;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: #082033ee;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 2px 12px 0 #33e6ff22;
    border: 1px solid #33e6ff55;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.nav-icon {
    width: 100%;
    height: 3px;
    background: #33e6ff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #33e6ff55;
}

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    min-width: 200px;
}

.nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    color: #47aaff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 0 6px #47aaff99;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #b1e6ff;
    text-shadow: 0 0 14px #b1e6ffcc;
    background: #33e6ff11;
    border-color: #33e6ff33;
}

.nav-logo {
    width: 60px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px #33e6ff33;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 5%;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px #9dfcff, 0 0 30px #33e6ff, 0 0 50px #33e6ff55;
    }
    to {
        text-shadow: 0 0 20px #9dfcff, 0 0 40px #33e6ff, 0 0 60px #33e6ff77;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b1e6ff;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #082033aa;
    border-radius: 12px;
    border: 1px solid #33e6ff33;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px #33e6ff22;
    border-color: #33e6ff66;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #33e6ff;
    text-shadow: 0 0 10px #33e6ff77;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.interface-preview {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px #33e6ff22;
    border: 2px solid #33e6ff33;
    transition: all 0.3s ease;
}

.interface-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px #33e6ff33;
}

/* Main Content */
.main-content {
    padding: 80px 5% 0;
}

.content-section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    animation: sectionFadeIn 0.8s ease forwards;
}

@keyframes sectionFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.5rem;
    color: #33e6ff;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px #33e6ff77;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #33e6ff, transparent);
    box-shadow: 0 0 10px #33e6ff77;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.section-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Links Section */
.links-container {
    max-width: 1000px;
    margin: 0 auto;
}

.links-warning {
    background: #ff6b3533;
    border: 1px solid #ff6b35;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.links-warning p {
    color: #ffcc99;
    font-weight: 500;
}

.onion-links {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.mirror-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #082033aa;
    border: 1px solid #33e6ff33;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mirror-link-item:hover {
    border-color: #33e6ff66;
    box-shadow: 0 5px 20px #33e6ff22;
    transform: translateX(5px);
}

.mirror-link {
    color: #47aaff;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    text-shadow: 0 0 6px #47aaff99;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    color: #b1e6ff;
    text-shadow: 0 0 14px #b1e6ffcc;
}

.link-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: #00ff8833;
    color: #00ff88;
    border: 1px solid #00ff88;
}

.status-maintenance {
    background: #ff884433;
    color: #ff8844;
    border: 1px solid #ff8844;
}

.link-description {
    color: #9dfcff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.links-refresh {
    text-align: center;
    padding: 20px;
    background: #082033aa;
    border-radius: 12px;
    border: 1px solid #33e6ff33;
}

.refresh-btn {
    background: #101e2bdd;
    border: 1.5px solid #33e6ff99;
    color: #33e6ff;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px #33e6ff55, 0 0 20px #08203388;
}

.refresh-btn:hover {
    background: #33e6ff22;
    box-shadow: 0 0 15px #33e6ff77, 0 0 30px #08203388;
    transform: translateY(-2px);
}

.last-updated {
    display: block;
    margin-top: 15px;
    color: #9dfcff;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.security-feature {
    background: #082033aa;
    border: 1px solid #33e6ff33;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.security-feature:hover {
    transform: translateY(-10px);
    border-color: #33e6ff66;
    box-shadow: 0 15px 35px #33e6ff22;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #33e6ff77);
}

.security-feature h3 {
    color: #33e6ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.security-feature p {
    color: #d7f6fa;
    line-height: 1.6;
}

.security-images {
    text-align: center;
    margin-top: 40px;
}

.security-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #33e6ff33;
    box-shadow: 0 10px 30px #33e6ff22;
}

/* Registration Steps */
.registration-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: #082033aa;
    border-radius: 15px;
    border: 1px solid #33e6ff33;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #33e6ff66;
    box-shadow: 0 5px 20px #33e6ff22;
}

.step-number {
    background: #33e6ff;
    color: #050a12;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 15px #33e6ff77;
}

.step-content h3 {
    color: #33e6ff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: #d7f6fa;
    line-height: 1.6;
}

/* Gallery Container */
.gallery-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid #33e6ff33;
    background: #082033aa;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #33e6ff #082033;
}

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

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

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

.gallery-image {
    flex-shrink: 0;
    max-height: 400px;
    border-radius: 10px;
    border: 1px solid #33e6ff33;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    border-color: #33e6ff66;
    box-shadow: 0 10px 25px #33e6ff22;
}

/* Crypto Cards */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.crypto-card {
    background: #082033aa;
    border: 1px solid #33e6ff33;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.crypto-card:hover {
    transform: translateY(-5px);
    border-color: #33e6ff66;
    box-shadow: 0 15px 35px #33e6ff22;
}

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

.crypto-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #33e6ff;
    text-shadow: 0 0 10px #33e6ff77;
}

.crypto-header h3 {
    color: #33e6ff;
    font-size: 1.5rem;
}

.crypto-details p {
    margin-bottom: 10px;
    color: #d7f6fa;
}

.crypto-price {
    color: #00ff88;
    font-weight: 700;
    text-shadow: 0 0 5px #00ff8877;
}

.crypto-warning {
    background: #ff6b3533;
    border: 1px solid #ff6b35;
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
}

.crypto-warning h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.crypto-warning p {
    color: #ffcc99;
    line-height: 1.6;
}

.wallet-preview {
    text-align: center;
    margin-top: 40px;
}

.wallet-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #33e6ff33;
    box-shadow: 0 15px 40px #33e6ff22;
}

/* Vendor Requirements */
.vendor-requirements, .prohibited-items, .vendor-features {
    background: #082033aa;
    border: 1px solid #33e6ff33;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(5px);
}

.vendor-requirements h3, .prohibited-items h3, .vendor-features h3 {
    color: #33e6ff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.requirements-list, .prohibited-list {
    list-style: none;
    padding-left: 0;
}

.requirements-list li, .prohibited-list li {
    padding: 8px 0;
    border-bottom: 1px solid #33e6ff22;
    color: #d7f6fa;
}

.requirements-list li:last-child, .prohibited-list li:last-child {
    border-bottom: none;
}

.requirements-list li strong, .prohibited-list li strong {
    color: #33e6ff;
}

/* Disputes Content */
.disputes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.dispute-system, .raffle-system {
    background: #082033aa;
    border: 1px solid #33e6ff33;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
}

.dispute-system h3, .raffle-system h3 {
    color: #33e6ff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.raffle-details {
    background: #101e2b;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #33e6ff22;
}

.raffle-details p {
    margin-bottom: 8px;
    color: #d7f6fa;
}

.raffle-details strong {
    color: #33e6ff;
}

/* Warning Content */
.warning-content {
    max-width: 1000px;
    margin: 0 auto;
}

.critical-warning {
    background: #ff3333aa;
    border: 2px solid #ff3333;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 20px #ff333377; }
    50% { box-shadow: 0 0 30px #ff3333aa; }
}

.critical-warning h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.critical-warning p {
    color: #ffcccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.security-tips, .phishing-protection, .legal-disclaimer {
    background: #082033aa;
    border: 1px solid #33e6ff33;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.security-tips h3, .phishing-protection h3, .legal-disclaimer h3 {
    color: #33e6ff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.security-list li {
    padding: 12px 0;
    border-bottom: 1px solid #33e6ff22;
    color: #d7f6fa;
    line-height: 1.6;
}

.security-list li:last-child {
    border-bottom: none;
}

.security-list li strong {
    color: #33e6ff;
}

/* Footer */
.site-footer {
    background: #050a12;
    border-top: 2px solid #33e6ff33;
    padding: 60px 5% 20px;
    margin-top: 100px;
}

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

.footer-section h3 {
    color: #33e6ff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #33e6ff77;
}

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

.footer-section ul li {
    padding: 5px 0;
    color: #9dfcff;
    transition: color 0.3s ease;
}

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

.footer-stats p {
    margin-bottom: 8px;
    color: #d7f6fa;
}

.footer-stats span {
    color: #33e6ff;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #33e6ff22;
    color: #9dfcff;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 50px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .disputes-content {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 60px 3% 0;
    }
    
    .hero-section {
        padding: 80px 3% 30px;
    }
    
    .site-footer {
        padding: 40px 3% 20px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.5;
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

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

::-webkit-scrollbar-track {
    background: #050a12;
}

::-webkit-scrollbar-thumb {
    background: #33e6ff;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #47aaff;
}

