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

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #e8f4f8;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 25%, #0f1419 50%, #162028 75%, #0a1628 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease-in-out infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(51, 230, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(51, 230, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(51, 230, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Enhanced Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Neon Text Effects */
.neon-text {
    color: #33e6ff;
    text-shadow: 
        0 0 5px #33e6ff,
        0 0 10px #33e6ff,
        0 0 20px #33e6ff,
        0 0 40px #33e6ff,
        0 0 80px #33e6ff;
    letter-spacing: 0.05em;
    position: relative;
}

.neon-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    text-shadow: 
        0 0 2px #33e6ff,
        0 0 5px #33e6ff,
        0 0 10px #33e6ff;
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Enhanced Floating Navigation */
.floating-nav {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
    background: rgba(8, 32, 51, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(51, 230, 255, 0.2),
        0 0 0 1px rgba(51, 230, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(51, 230, 255, 0.3);
}

.floating-nav:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(51, 230, 255, 0.3),
        0 0 0 1px rgba(51, 230, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 28px;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.nav-icon {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #33e6ff, #66f0ff);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(51, 230, 255, 0.5);
    position: relative;
}

.nav-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

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

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

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    min-width: 220px;
}

.nav-menu.active {
    display: flex;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.nav-link {
    color: #66f0ff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 8px rgba(102, 240, 255, 0.6);
    border: 1px solid transparent;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(51, 230, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    background: rgba(51, 230, 255, 0.15);
    border-color: rgba(51, 230, 255, 0.4);
    transform: translateX(5px);
}

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

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 25px;
    animation: titleGlow 4s ease-in-out infinite alternate;
    background: linear-gradient(135deg, #33e6ff, #66f0ff, #99f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

@keyframes titleGlow {
    from {
        text-shadow: 
            0 0 10px #33e6ff,
            0 0 20px #33e6ff,
            0 0 40px #33e6ff;
        filter: brightness(1);
    }
    to {
        text-shadow: 
            0 0 20px #33e6ff,
            0 0 40px #33e6ff,
            0 0 60px #33e6ff;
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #b8e6ff;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    font-weight: 400;
    line-height: 1.4;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(8, 32, 51, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(51, 230, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #33e6ff, #66f0ff);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(51, 230, 255, 0.25),
        0 0 0 1px rgba(51, 230, 255, 0.4);
    border-color: rgba(51, 230, 255, 0.6);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #33e6ff;
    text-shadow: 0 0 15px rgba(51, 230, 255, 0.8);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #b8e6ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

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

.interface-preview {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 60px rgba(51, 230, 255, 0.3),
        0 0 0 1px rgba(51, 230, 255, 0.2);
    border: 2px solid rgba(51, 230, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.interface-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #33e6ff, #66f0ff, #33e6ff);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.interface-preview:hover::before {
    opacity: 1;
}

.interface-preview:hover {
    transform: scale(1.03) rotateY(5deg);
    box-shadow: 
        0 35px 80px rgba(51, 230, 255, 0.4),
        0 0 0 1px rgba(51, 230, 255, 0.3);
}

/* Enhanced Main Content */
.main-content {
    padding: 100px 5% 0;
    position: relative;
}

.content-section {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(60px);
    animation: sectionFadeIn 0.8s ease forwards;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(51, 230, 255, 0.3), transparent);
}

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

.section-title {
    font-size: 2.8rem;
    color: #33e6ff;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 20px rgba(51, 230, 255, 0.8);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #33e6ff, transparent);
    box-shadow: 0 0 15px rgba(51, 230, 255, 0.8);
    border-radius: 2px;
}

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

.section-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d4f1ff;
    font-weight: 400;
}

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

.links-warning {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.links-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: warningShimmer 3s infinite;
}

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

.links-warning p {
    color: #ffcc99;
    font-weight: 600;
    font-size: 1.1rem;
}

.onion-links {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.mirror-link {
    display: block;
    color: #66f0ff;
    text-decoration: none;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(102, 240, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    background: rgba(8, 32, 51, 0.6);
    border: 1px solid rgba(51, 230, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mirror-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #33e6ff, #66f0ff);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.mirror-link:hover::before {
    transform: scaleY(1);
}

.mirror-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    background: rgba(51, 230, 255, 0.1);
    border-color: rgba(51, 230, 255, 0.6);
    transform: translateX(10px);
}

.links-refresh {
    text-align: center;
    padding: 25px;
    background: rgba(8, 32, 51, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(51, 230, 255, 0.3);
    backdrop-filter: blur(10px);
}

.last-updated {
    display: block;
    color: #b8e6ff;
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

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

.security-feature {
    background: rgba(8, 32, 51, 0.8);
    border: 1px solid rgba(51, 230, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(51, 230, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.security-feature:hover::before {
    opacity: 1;
}

.security-feature:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(51, 230, 255, 0.6);
    box-shadow: 
        0 20px 50px rgba(51, 230, 255, 0.3),
        0 0 0 1px rgba(51, 230, 255, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(51, 230, 255, 0.8));
    transition: transform 0.4s;
}

.security-feature:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
}

.security-feature h3 {
    color: #33e6ff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(51, 230, 255, 0.5);
}

.security-feature p {
    color: #d4f1ff;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 30px;
    background: rgba(8, 32, 51, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(51, 230, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #33e6ff, #66f0ff);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    border-color: rgba(51, 230, 255, 0.6);
    box-shadow: 0 10px 30px rgba(51, 230, 255, 0.2);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, #33e6ff, #66f0ff);
    color: #0a1628;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 
        0 0 20px rgba(51, 230, 255, 0.8),
        0 4px 15px rgba(51, 230, 255, 0.3);
    transition: transform 0.3s;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    color: #33e6ff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(51, 230, 255, 0.5);
}

.step-content p {
    color: #d4f1ff;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Enhanced Gallery */
.gallery-container {
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(8, 32, 51, 0.6);
    padding: 30px;
    border: 1px solid rgba(51, 230, 255, 0.3);
}

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

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

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

.gallery-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #33e6ff, #66f0ff);
    border-radius: 4px;
}

.gallery-image {
    min-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(51, 230, 255, 0.3);
    box-shadow: 0 10px 25px rgba(51, 230, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover {
    transform: scale(1.05) rotateY(5deg);
    border-color: rgba(51, 230, 255, 0.6);
    box-shadow: 0 15px 35px rgba(51, 230, 255, 0.3);
}

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

.crypto-card {
    background: rgba(8, 32, 51, 0.8);
    border: 1px solid rgba(51, 230, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 230, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.crypto-card:hover::before {
    opacity: 1;
}

.crypto-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(51, 230, 255, 0.6);
    box-shadow: 
        0 20px 50px rgba(51, 230, 255, 0.3),
        0 0 0 1px rgba(51, 230, 255, 0.2);
}

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

.crypto-icon {
    font-size: 3rem;
    margin-right: 20px;
    color: #33e6ff;
    text-shadow: 0 0 15px rgba(51, 230, 255, 0.8);
}

.crypto-header h3 {
    color: #33e6ff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(51, 230, 255, 0.5);
}

.crypto-details p {
    margin-bottom: 12px;
    color: #d4f1ff;
    font-size: 1.05rem;
    line-height: 1.6;
}

.crypto-details strong {
    color: #66f0ff;
    font-weight: 600;
}

/* Enhanced Warning Boxes */
.crypto-warning {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.crypto-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8844);
}

.crypto-warning h3 {
    color: #ff8844;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 136, 68, 0.5);
}

.crypto-warning p {
    color: #ffcc99;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Enhanced Lists */
.requirements-list,
.prohibited-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.requirements-list li,
.prohibited-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(51, 230, 255, 0.2);
    color: #d4f1ff;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #33e6ff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(51, 230, 255, 0.8);
}

.prohibited-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

.requirements-list li strong,
.prohibited-list li strong {
    color: #66f0ff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 50px 5%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .nav-menu {
        min-width: 180px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .security-grid,
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .gallery-image {
        min-width: 250px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .main-content {
        padding: 80px 3% 0;
    }
    
    .hero-section {
        padding: 30px 3%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .security-feature,
    .crypto-card,
    .step {
        padding: 25px;
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(51, 230, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .floating-nav {
        display: none;
    }
    
    .neon-text {
        color: black;
        text-shadow: none;
    }
}

