    /* TORZON Market - Dynamic Styles */
    :root {
        --primary-bg: #0f172a;
        --secondary-bg: #1e293b;
        --accent-color: #2563eb;
        --accent-secondary: #8b5cf6;
        --text-primary: #ffffff;
        --text-secondary: #cbd5e1;
        --text-muted: #64748b;
        --glass-bg: rgba(37, 99, 235, 0.05);
        --glass-border: rgba(37, 99, 235, 0.2);
        --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.4);
        --shadow-purple: 0 0 30px rgba(139, 92, 246, 0.4);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #0f172a 0%, #1e1b3a 25%, #1e293b 50%, #1a2332 75%, #0f172a 100%);
        background-size: 400% 400%;
        animation: gradientShift 20s ease infinite;
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    /* Animated Background Particles */
    .particles-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 50%;
        opacity: 0.6;
        animation: float 15s infinite linear;
    }

    .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
    .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
    .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 15s; }
    .particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 20s; }
    .particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 14s; }
    .particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 16s; }
    .particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 22s; }
    .particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 13s; }
    .particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 19s; }
    .particle:nth-child(10) { left: 95%; animation-delay: 18s; animation-duration: 17s; }

    @keyframes float {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 0.6;
        }
        90% {
            opacity: 0.6;
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }

    /* Floating Navigation */
    .floating-nav {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        backdrop-filter: blur(20px);
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        padding: 10px 30px;
        box-shadow: var(--shadow-glow);
        animation: navFloat 3s ease-in-out infinite;
    }

    @keyframes navFloat {
        0%, 100% { transform: translateX(-50%) translateY(0px); }
        50% { transform: translateX(-50%) translateY(-5px); }
    }

    .nav-container {
        display: flex;
        align-items: center;
        gap: 30px;
    }

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

    .nav-links {
        display: flex;
        gap: 25px;
    }

    .nav-link {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        transition: left 0.5s ease;
    }

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

    .nav-link:hover {
        color: var(--accent-color);
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
        transform: translateY(-2px);
    }

    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 120px 20px 60px;
        position: relative;
        z-index: 10;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        max-width: 1200px;
        width: 100%;
        align-items: center;
    }

    .hero-text {
        animation: slideInLeft 1s ease-out;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 700;
        line-height: 0.9;
        margin-bottom: 20px;
        font-family: 'Nunito Sans', sans-serif;
        background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .title-line {
        display: block;
        animation: titleGlow 2s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
        from { filter: drop-shadow(0 0 10px var(--accent-color)); }
        to { filter: drop-shadow(0 0 30px var(--accent-secondary)); }
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: var(--text-secondary);
        margin-bottom: 30px;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .hero-description {
        font-size: 1.1rem;
        color: var(--text-muted);
        line-height: 1.8;
        animation: fadeInUp 1s ease-out 0.6s both;
    }

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

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        animation: slideInRight 1s ease-out;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .floating-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        padding: 40px;
        box-shadow: var(--shadow-glow);
        animation: cardFloat 4s ease-in-out infinite;
    }

    @keyframes cardFloat {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(2deg); }
    }

    .hero-logo {
        width: 200px;
        height: auto;
        filter: brightness(1.3) drop-shadow(0 0 20px var(--accent-color));
    }

    /* Stats Container */
    .stats-container {
        display: flex;
        gap: 60px;
        margin-top: 80px;
        animation: fadeInUp 1s ease-out 0.9s both;
    }

    .stat-item {
        text-align: center;
        padding: 20px;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-glow);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 10px;
        animation: countUp 2s ease-out;
        font-family: 'Nunito Sans', sans-serif;
    }

    @keyframes countUp {
        from { opacity: 0; transform: scale(0.5); }
        to { opacity: 1; transform: scale(1); }
    }

    .stat-label {
        font-size: 1rem;
        color: var(--text-secondary);
    }

    /* Section Styles */
    .section {
        padding: 100px 20px;
        position: relative;
        z-index: 10;
    }

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

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        font-family: 'Nunito Sans', sans-serif;
        background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: titleSlide 1s ease-out;
    }

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

    .section-description {
        font-size: 1.2rem;
        color: var(--text-secondary);
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Mirror Card */
    .mirror-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 40px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        animation: cardSlideIn 0.6s ease-out;
        max-width: 800px;
        margin: 0 auto;
    }

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

    .mirror-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
        transition: left 0.8s ease;
    }

    .mirror-card:hover::before {
        left: 100%;
    }

    .mirror-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-glow);
        border-color: var(--accent-color);
    }

    .mirror-status {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        justify-content: center;
    }

    .status-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        animation: pulse 2s infinite;
        background: #10b981;
        box-shadow: 0 0 10px #10b981;
    }

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

    .status-text {
        color: #10b981;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mirror-url {
        color: var(--text-primary);
        text-decoration: none;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 1.1rem;
        word-break: break-all;
        transition: color 0.3s ease;
        display: block;
        text-align: center;
        padding: 20px;
        background: rgba(15, 23, 42, 0.5);
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .mirror-url:hover {
        color: var(--accent-color);
    }

    .copy-btn {
        background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
        border: none;
        border-radius: 10px;
        padding: 12px 30px;
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: block;
        margin: 0 auto;
        font-size: 16px;
    }

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

    .copy-btn:hover::before {
        left: 100%;
    }

    .copy-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(37, 99, 235, 0.5);
    }

    .all-mirrors-link {
        display: block;
        text-align: center;
        margin-top: 30px;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .all-mirrors-link:hover {
        color: var(--accent-secondary);
        transform: translateY(-2px);
    }

    /* Access Steps */
    .access-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .access-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .access-step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow);
    }

    .step-number {
        background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .step-content h3 {
        color: var(--accent-color);
        margin-bottom: 10px;
        font-family: 'Nunito Sans', sans-serif;
    }

    .step-content p {
        color: var(--text-secondary);
        font-size: 14px;
    }

    /* Reviews Section */
    .reviews-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .review-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow);
        border-color: var(--accent-color);
    }

    .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: white;
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .reviewer-info {
        flex: 1;
    }

    .reviewer-name {
        color: #fff;
        font-weight: 600;
        display: block;
        font-family: 'Nunito Sans', sans-serif;
    }

    .review-date {
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    .review-rating {
        color: #ffd700;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .review-content {
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 0.95rem;
    }

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

    .security-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .security-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-glow);
    }

    .security-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        animation: securityPulse 3s ease-in-out infinite;
    }

    @keyframes securityPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .security-card h3 {
        color: var(--accent-color);
        margin-bottom: 15px;
        font-family: 'Nunito Sans', sans-serif;
    }

    .security-card p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
        border-radius: 30px;
        margin: 60px 20px;
    }

    .cta-content {
        text-align: center;
        padding: 80px 40px;
    }

    .cta-content h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        font-family: 'Nunito Sans', sans-serif;
        background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 40px;
    }

    .cta-button {
        display: inline-block;
        background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
        color: white;
        text-decoration: none;
        padding: 20px 40px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

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

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
    }

    /* Footer */
    .footer {
        background: var(--secondary-bg);
        padding: 40px 20px;
        border-top: 1px solid var(--glass-border);
        text-align: center;
    }

    .footer-content {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .floating-nav {
            position: relative;
            top: 0;
            left: 0;
            transform: none;
            margin: 20px;
            border-radius: 20px;
        }

        .nav-container {
            flex-direction: column;
            gap: 20px;
        }

        .nav-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

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

        .section-title {
            font-size: 2rem;
        }

        .hero-title {
            font-size: 3rem;
        }
    }
