:root {
    --bg-deep: #060913;
    --bg-primary: #0a0e1a;
    --bg-secondary: #0e1126;
    --bg-card: rgba(14, 17, 38, 0.7);
    --neon-cyan: #00f0ff;
    --electric-purple: #a855f7;
    --gradient-accent: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
    --gradient-cyan: linear-gradient(135deg, #00f0ff 0%, #22d65e 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ff006e 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 50px rgba(0, 240, 255, 0.08);
    --shadow-cyan: 0 4px 24px rgba(0, 240, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #060913;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 45%, rgba(168, 85, 247, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(0, 240, 255, 0.12) 0%, transparent 45%);
    z-index: -1;
    pointer-events: none;
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--neon-cyan);
    color: var(--bg-deep);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--electric-purple));
    border-radius: 3px;
}

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



.scroll-progress {
    position: fixed;
    top: 70px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--electric-purple), #ff006e, var(--neon-cyan));
    background-size: 300% 100%;
    z-index: 999;
    width: 0%;
    transition: width 0.05s linear;
    animation: scrollGradient 4s linear infinite;
}

@keyframes scrollGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(8, 8, 15, 0.65);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo-frame {
    color: var(--electric-purple) !important;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 0 10px rgba(168, 85, 247, 0.4) !important;
}

.logo span:not(.logo-frame) {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-download-btn {
    background: var(--gradient-accent);
    color: var(--bg-deep);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.35);
}

.nav-download-btn:hover::before {
    opacity: 1;
}

.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.discord-link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.discord-link:hover {
    color: #5865F2;
}

.discord-link:hover svg {
    transform: scale(1.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--neon-cyan);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--neon-cyan);
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 0.95fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f1524;
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    position: relative;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #00f0ff 40%, #a855f7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

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

.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--electric-purple);
    margin-bottom: 12px;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 17px;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-deep);
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-sm);
    background: conic-gradient(var(--neon-cyan), var(--electric-purple), #ff006e, var(--neon-cyan));
    z-index: -2;
    animation: spinBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

@keyframes spinBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cursor-glow {
    position: fixed;
    top: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
    opacity: 0;
    will-change: transform;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.rating-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-muted);
}

.rating-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.rating-privacy {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-visual {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
    perspective: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-screenshots {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.hero-app-group {
    position: relative;
    width: 55%;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mac-group {
    z-index: 2;
    opacity: 1;
}

.win-group {
    z-index: 1;
    opacity: 1;
}

.hero-app-group:hover {
    filter: brightness(1.05);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
    box-shadow: var(--shadow-card);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 240, 255, 0.12);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.04);
}

.hero-image-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.06) 0%, transparent 50%, rgba(168, 85, 247, 0.06) 100%);
    pointer-events: none;
    z-index: 3;
    border-radius: var(--radius-md);
}

.hero-stats-float {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 4px;
    position: relative;
    z-index: 5;
    margin-top: 16px;
}

.hero-stat {
    background: #0f0f1a;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 8px 14px;
    text-align: center;
    min-width: 80px;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.06), transparent);
    transition: left 0.6s ease;
}

.hero-stat:hover::before {
    left: 100%;
}

.hero-stat:hover {
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.hero-stat:nth-child(2) {
    animation-delay: 0.55s;
}

.hero-stat:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-stat-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--neon-cyan);
    -webkit-text-fill-color: var(--neon-cyan);
}

.hero-stat-label {
    font-size: 9px;
    color: #fff;
    letter-spacing: 0.6px;
    margin-top: 1px;
}

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

.section-title {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin: 12px auto 0;
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 100px; opacity: 0.7; }
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    cursor: default;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 800px;
}

.feature-card::after, .showcase-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--glare-x, 50%) var(--glare-y, 50%),
        rgba(255, 255, 255, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.feature-card:hover::after, .showcase-frame:hover::after {
    opacity: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.15);
}

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

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    transform: translateZ(20px);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: url(#featureGradient);
    stroke-width: 2;
    fill: none;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateZ(30px);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    transform: translateZ(15px);
}

.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
    cursor: default;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 60px;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.12);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 240, 255, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3));
}

.testimonial-stars svg.dimmed-star {
    fill: rgba(245, 158, 11, 0.2);
    filter: none;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg-deep);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-platform {
    font-size: 12px;
    color: var(--text-muted);
}

.monitoring {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.monitor-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}

.monitor-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.monitor-card:hover {
    border-color: rgba(0, 240, 255, 0.12);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.monitor-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.monitor-value {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 14px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--electric-purple));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-fill.gpu {
    background: linear-gradient(90deg, var(--electric-purple), var(--neon-cyan));
}

.progress-fill.network {
    background: linear-gradient(90deg, #22c55e, var(--neon-cyan));
}

.core-stats, .gpu-stats, .network-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.core-stats span, .gpu-stats span, .network-stats span {
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    text-align: center;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:not(.pricing-card-featured):hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-featured {
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.06), inset 0 1px 0 rgba(0, 240, 255, 0.08);
    position: relative;
}

.pricing-card-featured .price-amount {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 2;
}

.best-value-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
    animation: floatTag 3s ease-in-out infinite;
}

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

.pricing-card:hover .check-icon svg {
    stroke: #22d65e;
    filter: drop-shadow(0 0 6px rgba(34, 214, 94, 0.5));
}

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

.pricing-platform svg {
    width: 26px;
    height: 26px;
    fill: var(--neon-cyan);
}

.pricing-platform h3 {
    font-size: 22px;
    font-weight: 600;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.trial-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.price-tag {
    margin-bottom: 28px;
}

.price-currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--neon-cyan);
    vertical-align: top;
}

.price-amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check, .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.check svg, .check-icon svg {
    width: 18px;
    height: 18px;
    stroke: #00f0ff;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 17px;
}

.trial-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.faq {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(0, 240, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--neon-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq-answer div {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.download {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 44px;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.download-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.download-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.15);
}

.download-icon {
    margin-bottom: 14px;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.2));
}

.download-icon svg {
    width: 44px;
    height: 44px;
    fill: var(--neon-cyan);
}

.download-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.download-card .system-requirements {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(80, 80, 100, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.new-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
    animation: pulseBadge 2.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.25); }
    50% { box-shadow: 0 0 45px rgba(0, 240, 255, 0.5); }
}

#windows-download {
    position: relative;
}

.btn-download-platform {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--bg-deep);
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-download-platform::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.btn-download-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

.btn-download-platform:hover::before {
    opacity: 1;
}

.showcase {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.showcase-subheading {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin: 48px 0 36px;
    padding-bottom: 12px;
    color: var(--neon-cyan);
    border-bottom: 1px solid var(--glass-border);
    letter-spacing: 0.3px;
    position: relative;
}

.showcase-subheading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.showcase-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 560px;
}

.showcase-frame {
    cursor: pointer;
    line-height: 0;
    overflow: hidden;
    min-height: 260px;
    border-radius: var(--radius-md);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: #060914;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
    position: relative;
}

.showcase-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.showcase-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.1);
}

.showcase-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-frame:hover .showcase-img {
    transform: scale(1.06);
}

.showcase-caption {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.2px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(1.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 44px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.modal-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 14px;
}

.platform-options {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    cursor: pointer;
    transition: all 0.35s ease;
    flex: 1;
    font-family: 'Outfit', sans-serif;
}

.platform-btn:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.12);
    transform: translateY(-4px);
    background: rgba(0, 240, 255, 0.03);
}

.platform-btn svg {
    width: 36px;
    height: 36px;
    fill: var(--text-primary);
    transition: transform 0.3s ease;
}

.platform-btn:hover svg {
    transform: scale(1.1);
}

.platform-btn span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 44px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox img {
    max-width: 90%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer {
    background: var(--bg-secondary);
    padding: 56px 0 28px;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--electric-purple), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.footer-social-link:hover {
    background: rgba(0, 240, 255, 0.08);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-discord {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-discord svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* 1024px */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-title {
        font-size: 44px;
    }

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

    .feature-card:nth-child(4) {
        grid-column: auto;
    }

    .feature-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 400px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

/* 768px */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(8, 8, 15, 0.97);
        backdrop-filter: blur(28px) saturate(1.4);
        -webkit-backdrop-filter: blur(28px) saturate(1.4);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--glass-border);
        align-items: stretch;
        text-align: center;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a, .nav-links button {
        font-size: 17px;
        padding: 12px;
    }

    .nav-links .discord-link {
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image-wrapper {
        transform: none;
        animation: none;
    }

    .hero-app-group {
        width: 100%;
    }

    .hero-stats-float {
        flex-wrap: wrap;
    }

    .hero-stat {
        min-width: 65px;
        padding: 6px 12px;
    }

    .hero-stat-value {
        font-size: 15px;
    }

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

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(4) {
        grid-column: auto;
    }

    .feature-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-subheading {
        font-size: 20px;
    }

    .download-options {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .showcase-item {
        max-width: 500px;
        margin: 0 auto;
    }

    .showcase-frame {
        min-height: 200px;
    }

    .monitoring-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .price-amount {
        font-size: 52px;
    }

    .btn-download {
        padding: 18px 28px;
        font-size: 17px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .platform-options {
        flex-direction: column;
    }
}

/* 480px */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-screenshots {
        gap: 12px;
    }

    .hero-image-wrapper {
        aspect-ratio: 16 / 10;
    }

    .hero-stat {
        min-width: 60px;
        padding: 6px 12px;
    }

    .hero-stat-value {
        font-size: 16px;
    }

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

/* ==========================================================================
   macOS Setup Warning Modal (Gatekeeper Glassmorphism Dark UI)
   ========================================================================== */
.warning-modal-content {
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.88) 0%, rgba(8, 8, 15, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.85), 0 0 50px rgba(168, 85, 247, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(40px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .warning-modal-content {
    transform: scale(1) translateY(0);
}

.warning-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.25);
}

.warning-header-icon svg {
    width: 24px;
    height: 24px;
    color: var(--electric-purple);
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8));
}

#warning-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.warning-modal-content .modal-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 28px;
    text-align: center;
}

.warning-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.warning-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.warning-step:hover {
    background: rgba(0, 240, 255, 0.02);
    border-color: rgba(0, 240, 255, 0.1);
}

.step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--electric-purple) 100%);
    color: #08080f;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}

.warning-step p {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.warning-step p strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

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

.warning-footer .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

#warning-cancel-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#warning-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

#warning-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2);
}

#warning-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 240, 255, 0.3);
}