/* ===== TORZON MODERN DESIGN 2026 ===== */
/* Premium dark theme with animated background */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-dark: #0a0e17;
    --secondary-dark: #131a2a;
    --tertiary-dark: #1a2438;
    --accent: #3cbef2;
    --accent-secondary: #00d9ff;
    --accent-glow: rgba(60, 190, 242, 0.4);
    --accent-subtle: rgba(60, 190, 242, 0.08);
    --gradient-accent: linear-gradient(135deg, #3cbef2 0%, #00d9ff 50%, #3cbef2 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #131a2a 50%, #0a0e17 100%);
    --glass-bg: rgba(19, 26, 42, 0.7);
    --glass-border: rgba(60, 190, 242, 0.12);
    --glass-hover: rgba(60, 190, 242, 0.18);
    --text-primary: #ffffff;
    --text-secondary: #c0d4e8;
    --text-muted: #6b7d94;
    --shadow-glow: 0 0 40px rgba(60, 190, 242, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ANIMATED BACKGROUND ===== */
body {
    background-color: var(--primary-dark);
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient orbs */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(60, 190, 242, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(60, 190, 242, 0.04) 0%, transparent 70%);
    animation: orb-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -2;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -10px) scale(1.02);
    }
}

/* Grid pattern overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(60, 190, 242, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(60, 190, 242, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 30s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Floating particles canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0.98) 0%, rgba(10, 14, 23, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0.6;
}

.logo {
    position: relative;
    padding: 8px 12px;
    transition: var(--transition-smooth);
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    border-radius: 8px;
    transition: var(--transition-smooth);
    filter: blur(20px);
}

.logo:hover::before {
    opacity: 0.3;
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(60, 190, 242, 0.3));
    transition: var(--transition-smooth);
    display: block;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(60, 190, 242, 0.6));
    transform: scale(1.02);
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 16px;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 6px;
    background: transparent;
    border: 1px solid transparent;
}

.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    border-radius: 6px;
    opacity: 0;
    transition: var(--transition-fast);
}

.nav a:hover {
    color: var(--text-primary);
    border-color: var(--glass-border);
    background: var(--accent-subtle);
}

.nav a:hover::before {
    opacity: 0.1;
}

.nav a:active {
    transform: scale(0.98);
}

/* ===== DIAGONAL SEPARATOR ===== */
.diagonal-separator {
    width: 100%;
    height: 80px;
    position: relative;
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagonal-separator::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent) 20%,
            var(--accent) 80%,
            transparent 100%);
    opacity: 0.3;
}

.diagonal-separator::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-dark);
    border: 2px solid var(--accent);
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--accent-glow);
}

.diagonal-separator.reverse::after {
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 40px 0 80px;
}

/* ===== SECTIONS ===== */
.review-section {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    overflow: hidden;
    scroll-margin-top: 120px;
}

.review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0.5;
}

.review-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 4px 0 0 4px;
}

.review-section:hover {
    border-color: var(--glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

h1.section-title {
    font-size: 36px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2.section-title {
    color: var(--accent);
}

/* ===== SECTION TEXT ===== */
.section-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.85;
    font-weight: 300;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-text strong {
    color: var(--accent);
    font-weight: 500;
}

/* ===== NOTICE BOX ===== */
.notice-box {
    background: linear-gradient(135deg,
            rgba(60, 190, 242, 0.1) 0%,
            rgba(60, 190, 242, 0.02) 100%);
    border: 1px solid var(--glass-border);
    padding: 24px 24px 24px 60px;
    margin: 28px 0;
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(10px);
}

.notice-box::before {
    content: '⚡';
    position: absolute;
    top: 24px;
    left: 22px;
    font-size: 22px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.notice-box strong {
    color: var(--accent);
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    padding-left: 0;
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 14px;
}

.features-list li {
    padding: 18px 20px 18px 54px;
    background: rgba(60, 190, 242, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.features-list li:hover {
    background: rgba(60, 190, 242, 0.08);
    border-color: var(--accent);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(60, 190, 242, 0.1);
}

.features-list li::before {
    content: '◈';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 16px;
    transition: var(--transition-fast);
}

.features-list li:hover::before {
    text-shadow: 0 0 10px var(--accent-glow);
    transform: translateY(-50%) scale(1.2);
}

.features-list li strong {
    color: var(--accent);
    font-weight: 500;
}

/* ===== ACCESS STEPS ===== */
.access-steps {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: step-counter;
}

.access-steps li {
    counter-increment: step-counter;
    padding: 18px 20px 18px 70px;
    margin-bottom: 12px;
    background: rgba(60, 190, 242, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.access-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--accent-glow);
}

.access-steps li:hover {
    background: rgba(60, 190, 242, 0.08);
    border-color: var(--accent);
    transform: translateX(6px);
}

.access-steps li strong {
    color: var(--accent);
    font-weight: 500;
}

/* ===== MIRRORS LIST ===== */
.mirrors-list {
    margin: 24px 0;
}

.mirrors-list h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mirrors-list h3::before {
    content: '🔗';
    font-size: 20px;
}

.primary-mirror {
    margin-bottom: 24px;
}

.mirror-link-item {
    margin-bottom: 20px;
}

.mirror-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 10px;
}

.mirror-link {
    flex: 1;
    background: linear-gradient(135deg,
            rgba(60, 190, 242, 0.08) 0%,
            rgba(60, 190, 242, 0.02) 100%);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    font-family: 'Space Grotesk', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-all;
    border-radius: 10px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: default;
    display: flex;
    align-items: center;
}

.mirror-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(60, 190, 242, 0.15),
            transparent);
    transition: left 0.6s ease;
}

.mirror-link:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg,
            rgba(60, 190, 242, 0.12) 0%,
            rgba(60, 190, 242, 0.04) 100%);
    box-shadow: 0 0 30px rgba(60, 190, 242, 0.15);
}

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

.mirror-link.verified {
    border-color: var(--accent);
    background: linear-gradient(135deg,
            rgba(60, 190, 242, 0.12) 0%,
            rgba(60, 190, 242, 0.04) 100%);
    padding-right: 100px;
    /* Space for the verified tag if needed */
}

.mirror-actions {
    display: flex;
    gap: 8px;
}

.btn-copy,
.btn-visit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 100%;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    min-width: 90px;
}

.btn-copy {
    background: rgba(60, 190, 242, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--accent);
}

.btn-copy:hover {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-copy.copied {
    background: #00ff88;
    border-color: #00ff88;
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-visit {
    background: var(--gradient-accent);
    border: none;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(60, 190, 242, 0.2);
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
    filter: brightness(1.1);
}

.btn-visit:active {
    transform: translateY(0);
}

.mirror-status {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    padding-left: 2px;
}

/* ===== SPECS GRID ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.spec-item {
    padding: 26px;
    background: rgba(60, 190, 242, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-fast);
}

.spec-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(60, 190, 242, 0.12);
}

.spec-item:hover::before {
    opacity: 1;
}

.spec-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item h3::before {
    content: '◆';
    font-size: 10px;
    opacity: 0.7;
}

.spec-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.spec-item p strong {
    color: var(--accent);
}

/* ===== FAQ ITEMS ===== */
.faq-item {
    margin-bottom: 20px;
    padding: 24px;
    background: rgba(60, 190, 242, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--glass-hover);
    background: rgba(60, 190, 242, 0.06);
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    font-size: 17px;
    margin-bottom: 14px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item h3::before {
    content: '?';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    padding-left: 40px;
}

.faq-item p strong {
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 50px 0 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.9;
    margin-top: 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0.4;
}

.footer p {
    margin-bottom: 12px;
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer strong {
    color: var(--accent);
    font-weight: 400;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 24px;
    }

    h1.section-title {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 24px 0;
    }

    .nav {
        gap: 4px;
    }

    .nav a {
        padding: 8px 12px;
        font-size: 11px;
    }

    .review-section {
        padding: 32px 28px;
        margin-bottom: 45px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        position: relative;
        padding: 20px 0;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .diagonal-separator {
        height: 50px;
        margin: 35px 0;
    }

    .review-section {
        padding: 26px 22px;
        border-radius: 12px;
    }

    .section-title {
        font-size: 20px;
        padding-left: 16px;
    }

    h1.section-title {
        font-size: 24px;
    }

    .section-text {
        font-size: 15px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features-list li {
        padding: 16px 18px 16px 48px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .spec-item {
        padding: 22px;
    }

    .mirror-link {
        padding: 16px 18px;
        font-size: 12px;
    }

    .mirror-link.verified::after {
        position: static;
        display: block;
        margin-top: 10px;
    }

    .footer {
        padding: 40px 0 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .nav a {
        font-size: 10px;
        padding: 6px 10px;
    }

    .review-section {
        padding: 22px 18px;
    }

    .section-title {
        font-size: 18px;
    }

    h1.section-title {
        font-size: 20px;
    }

    .section-text {
        font-size: 14px;
    }

    .notice-box {
        padding: 20px 18px 20px 50px;
    }

    .notice-box::before {
        left: 16px;
    }

    .features-list li {
        padding: 14px 16px 14px 42px;
        font-size: 14px;
    }

    .access-steps li {
        padding: 16px 18px 16px 62px;
    }

    .access-steps li::before {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .faq-item {
        padding: 20px 18px;
    }

    .faq-item p {
        padding-left: 0;
        margin-top: 4px;
    }

    .footer {
        font-size: 12px;
        padding: 30px 0 24px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body::before,
    body::after {
        animation: none !important;
    }
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.nav a:focus-visible {
    outline-offset: 2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--tertiary-dark), var(--secondary-dark));
    border-radius: 5px;
    border: 2px solid var(--secondary-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===== SMOOTH SCROLL ===== */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 100px;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(60, 190, 242, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(60, 190, 242, 0.3);
    color: var(--text-primary);
}

/* ===== FALLBACK FOR BACKDROP-FILTER ===== */
@supports not (backdrop-filter: blur(20px)) {
    .header {
        background: rgba(10, 14, 23, 0.98);
    }

    .review-section {
        background: rgba(19, 26, 42, 0.95);
    }
}