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

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #eef2f7;
    background: linear-gradient(120deg, #1a1c1e 0%, #23272e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Dynamic Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bokeh-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(142, 194, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 239, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(193, 191, 197, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(239, 207, 135, 0.05) 0%, transparent 50%);
    animation: bokehMove 20s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 28, 30, 0.9) 0%,
        rgba(35, 39, 46, 0.8) 50%,
        rgba(26, 28, 30, 0.9) 100%
    );
    animation: gradientShift 25s ease-in-out infinite;
}

@keyframes bokehMove {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(-20px) translateY(-30px) scale(1.05);
    }
    50% {
        transform: translateX(30px) translateY(20px) scale(0.95);
    }
    75% {
        transform: translateX(-10px) translateY(40px) scale(1.02);
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.7;
    }
}

/* Glass Morphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.glass:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.glass-inner {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 4px 16px 0 rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.glass-inner:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 6px 20px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0;
    color: #eef2f7;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #eef2f7;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b91d2c, #efefcc);
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #b91d2c;
}

p {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #b2b7bd;
}

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

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #eef2f7;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(142, 194, 246, 0.4);
    box-shadow: 0 8px 25px rgba(142, 194, 246, 0.2);
}

.nav-icon {
    width: 20px;
    height: 2px;
    background: #b91d2c;
    border-radius: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-icon::before,
.nav-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #b91d2c;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-icon::before {
    top: -6px;
}

.nav-icon::after {
    top: 6px;
}

.nav-toggle.active .nav-icon {
    background: transparent;
}

.nav-toggle.active .nav-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .nav-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-dropdown {
    position: absolute;
    top: 70px;
    right: 0;
    min-width: 280px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #b2b7bd;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    background: rgba(142, 194, 246, 0.1);
    color: #b91d2c;
    transform: translateX(4px);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    padding: 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #efefcc;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-description {
    text-align: left;
    margin-top: 40px;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

article:nth-child(even) {
    background: rgba(35, 39, 46, 0.2);
}

.section-content {
    padding: 60px 50px;
    margin: 0 auto;
}

/* Mirror Links Section */
.mirrors-intro {
    margin-bottom: 40px;
}

.php-block {
    padding: 30px;
    margin: 40px 0;
    font-family: 'Courier New', monospace;
    background: rgba(26, 28, 30, 0.6);
}

.mirror-link {
    display: block;
    color: #b91d2c;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mirror-link:hover {
    color: #efefcc;
    padding-left: 10px;
}

.mirrors-details {
    margin-top: 40px;
}

/* Access Section */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}
.access-text,
.access-gallery {
    min-width: 0;
}
.access-text p {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-image {
        max-width: 100%;
        min-width: 0;
    }
}

/* Gallery Styles */
.gallery-container {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    width: 100%;
    box-sizing: border-box;
}

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

.gallery-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.gallery-image {
    width: 100%;
    max-width: 400px; 
    min-width: 0;   
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}


.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(142, 194, 246, 0.2);
    border: 1px solid rgba(142, 194, 246, 0.4);
    border-radius: 50%;
    color: #b91d2c;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(142, 194, 246, 0.3);
    border-color: #b91d2c;
    box-shadow: 0 8px 25px rgba(142, 194, 246, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Recovery Section */
.recovery-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.image-container {
    padding: 30px;
    text-align: center;
}

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

/* Vendor Section */
.vendor-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.vendor-path {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.path-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #b91d2c, #efefcc);
    color: #1a1c1e;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.security-feature {
    padding: 40px 30px;
    text-align: center;
}

.security-feature h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

/* Orders Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.timeline-item {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b91d2c, #efefcc);
    color: #1a1c1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

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

.crypto-card {
    padding: 40px 30px;
    text-align: center;
}

.crypto-details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: #b2b7bd;
    font-size: 0.9rem;
}

.detail-value {
    color: #b91d2c;
    font-weight: 500;
}

.financial-policies {
    margin-top: 50px;
    padding: 40px;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.policy-item h4 {
    color: #efefcc;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Buying Section */
.buying-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.buying-step {
    padding: 40px 30px;
    text-align: center;
}

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

.buying-image {
    margin-top: 50px;
    text-align: center;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    padding: 30px;
}

.faq-item h3 {
    color: #efefcc;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.rule-item {
    padding: 30px;
}

.rule-item.critical {
    border-left: 4px solid #ff6b6b;
}

.rule-item h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Advisory Section */
.advisory-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advisory-section-item {
    padding: 40px 30px;
}

.final-warning {
    margin-top: 50px;
    padding: 40px;
    border: 2px solid #efcf87;
    text-align: center;
}

.final-warning h3 {
    color: #efcf87;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    margin-top: 100px;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin: 0;
    color: #b2b7bd;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .floating-nav {
        top: 20px;
        right: 20px;
    }
    
    .nav-dropdown {
        min-width: 250px;
        padding: 25px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .section-content {
        padding: 40px 30px;
    }
    
    .access-grid,
    .recovery-grid,
    .vendor-paths,
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .crypto-grid,
    .buying-steps,
    .security-features,
    .process-timeline,
    .faq-grid,
    .rules-grid,
    .advisory-sections {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        min-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        top: 15px;
        right: 15px;
    }
    
    .nav-toggle {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .section-content {
        padding: 30px 20px;
    }
    
    .gallery-image {
        min-width: 250px;
    }
    
    article {
        padding: 60px 0;
    }
}

