/* Ultra Premium Valorant Crosshair Website */
:root {
    --primary-gradient: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --accent-gradient: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --dark-glass: rgba(0, 0, 0, 0.3);
    --glow-primary: #00ff88;
    --glow-secondary: #ff0080;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d3;
    --text-muted: #8892a8;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 60px rgba(0, 255, 136, 0.3);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.5);
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-gradient);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

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

.background-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: particles-float 20s ease-in-out infinite;
}

@keyframes particles-float {
    0%, 100% { transform: translateY(0px); }
    33% { transform: translateY(-30px); }
    66% { transform: translateY(20px); }
}

/* Premium Navigation */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    position: relative;
}

.logo-icon svg {
    filter: drop-shadow(0 0 20px var(--glow-primary));
}

.pulse-dot {
    animation: pulse-glow 2s ease-in-out infinite;
}

.crosshair-lines {
    animation: crosshair-animate 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes crosshair-animate {
    0%, 100% { stroke-dasharray: 0, 100; }
    50% { stroke-dasharray: 50, 100; }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-btn.secondary {
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.nav-btn.primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* Hero Section */
.hero-premium {
    min-height: 75vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(0, 255, 136, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 0, 128, 0.03) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: mesh-move 20s ease-in-out infinite;
}

@keyframes mesh-move {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(30px) translateY(-30px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
}

.hero-container:hover .precision-divider {
    transform: translateX(-50%) scale(1.03);
    filter: brightness(1.1) saturate(1.1);
}

.hero-container:hover .precision-divider .precision-line {
    animation-duration: 4s;
}

.hero-container:hover .precision-divider .marker {
    animation-duration: 2s;
}

.hero-container:hover .precision-divider .grid {
    animation-duration: 3s;
}

.hero-container:hover .precision-divider .scanner {
    animation-duration: 3s;
}

.hero-container:hover .precision-divider .data-point {
    animation-duration: 1.5s;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.badge-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.title-line {
    opacity: 0;
    transform: translateY(50px);
    animation: title-reveal 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes title-reveal {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0;
    animation: fade-in-up 0.8s ease 0.7s forwards;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fade-in-up 0.8s ease 0.9s forwards;
}

.btn-hero {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-hero.primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-hero.secondary {
    background: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.4);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fade-in-up 0.8s ease 1.1s forwards;
    margin-top: 1rem;
}

.stat-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(107, 114, 128, 0.03);
    border: 1px solid rgba(107, 114, 128, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: stat-item-reveal 0.8s ease calc(var(--delay) + 1.3s) forwards;
}

@keyframes stat-item-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.stat-item:hover {
    background: rgba(107, 114, 128, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

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

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.stat-item:hover .stat-icon::before {
    width: 100%;
    height: 100%;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    z-index: 1;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 300;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: stat-number-count 3s ease-out;
    position: relative;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.stat-item:hover .stat-number::before {
    width: 80px;
    height: 80px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-primary);
    opacity: 1;
}

/* Counter Animation for Numbers */
@keyframes stat-number-count {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ultra Professional Precision Divider */
.precision-divider {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: calc(100% - 100px);
    z-index: 15;
    pointer-events: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.precision-divider:hover {
    transform: translateX(-50%) scale(1.02);
    filter: brightness(1.1) saturate(1.1);
}

.precision-core {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center center;
}

.precision-line {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.3) 15%,
        rgba(0, 255, 136, 0.8) 50%,
        rgba(0, 255, 136, 0.3) 85%,
        transparent 100%
    );
    animation: precision-line-flow 6s ease-in-out infinite;
}

.line-segment {
    position: absolute;
    width: 100%;
    height: 14.28%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.6) 50%,
        transparent 100%
    );
    animation: precision-segment-flow 8s ease-in-out infinite;
}

.line-segment.segment-1 { top: 0%; animation-delay: 0s; }
.line-segment.segment-2 { top: 14.28%; animation-delay: 0.5s; }
.line-segment.segment-3 { top: 28.56%; animation-delay: 1s; }
.line-segment.segment-4 { top: 42.84%; animation-delay: 1.5s; }
.line-segment.segment-5 { top: 57.12%; animation-delay: 2s; }
.line-segment.segment-6 { top: 71.4%; animation-delay: 2.5s; }
.line-segment.segment-7 { top: 85.68%; animation-delay: 3s; }

/* Precision Markers */
.precision-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.marker {
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-core {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.8);
    animation: precision-marker-pulse 3s ease-in-out infinite;
}

.marker-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.3);
    animation: precision-marker-expand 2s ease-in-out infinite;
}

.marker-ring {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    animation: precision-marker-rotate 4s linear infinite;
}

.marker.marker-1 {
    top: 20%;
    animation-delay: 0s;
}

.marker.marker-2 {
    top: 40%;
    animation-delay: 1s;
}

.marker.marker-3 {
    top: 60%;
    animation-delay: 2s;
}

.marker.marker-4 {
    top: 80%;
    animation-delay: 3s;
}

/* Precision Grids */
.precision-grids {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    animation: precision-grid-fade 4s ease-in-out infinite;
}

.grid-line {
    position: absolute;
    background: rgba(0, 255, 136, 0.4);
    animation: precision-grid-pulse 3s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 20px;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.grid-line.vertical {
    width: 1px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.grid-center {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 136, 0.8);
    border-radius: 50%;
    animation: precision-grid-center-pulse 2s ease-in-out infinite;
}

.grid.grid-1 {
    top: 25%;
    animation-delay: 0s;
}

.grid.grid-2 {
    top: 50%;
    animation-delay: 1s;
}

.grid.grid-3 {
    top: 75%;
    animation-delay: 2s;
}

/* Professional Scanning Lines */
.precision-scanners {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scanner {
    position: absolute;
    width: 1px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 136, 0.8) 50%,
        transparent 100%
    );
    animation: precision-scanner-move 5s ease-in-out infinite;
}

.scanner.scanner-1 {
    top: 15%;
    animation-delay: 0s;
}

.scanner.scanner-2 {
    top: 45%;
    animation-delay: 1.5s;
}

.scanner.scanner-3 {
    top: 75%;
    animation-delay: 3s;
}

/* Elegant Data Points */
.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-core {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 136, 0.9);
    border-radius: 50%;
    animation: precision-point-pulse 2s ease-in-out infinite;
}

.point-glow {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: precision-point-glow 3s ease-in-out infinite;
}

.data-point.point-1 {
    top: 10%;
    animation-delay: 0s;
}

.data-point.point-2 {
    top: 30%;
    animation-delay: 0.5s;
}

.data-point.point-3 {
    top: 50%;
    animation-delay: 1s;
}

.data-point.point-4 {
    top: 70%;
    animation-delay: 1.5s;
}

.data-point.point-5 {
    top: 90%;
    animation-delay: 2s;
}

/* Precision Waves */
.precision-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave-line {
    position: absolute;
    width: 80px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 255, 136, 0.4) 50%,
        transparent 100%
    );
    animation: precision-wave-move 4s ease-in-out infinite;
}

.wave-line.wave-1 {
    top: 20%;
    animation-delay: 0s;
}

.wave-line.wave-2 {
    top: 50%;
    animation-delay: 1s;
}

.wave-line.wave-3 {
    top: 80%;
    animation-delay: 2s;
}



/* Professional Precision Animations */
@keyframes precision-line-flow {
    0% {
        opacity: 0.3;
        transform: translateX(-50%) scaleY(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleY(1);
    }
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scaleY(0.8);
    }
}

@keyframes precision-segment-flow {
    0% {
        opacity: 0;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1);
    }
    100% {
        opacity: 0;
        transform: scaleY(0.5);
    }
}

@keyframes precision-marker-pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(0, 255, 136, 0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 12px rgba(0, 255, 136, 1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(0, 255, 136, 0.8);
    }
}

@keyframes precision-marker-expand {
    0% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes precision-marker-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes precision-grid-fade {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes precision-grid-pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes precision-grid-center-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

@keyframes precision-scanner-move {
    0% {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }
    25% {
        opacity: 0.8;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

@keyframes precision-point-pulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

@keyframes precision-point-glow {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes precision-wave-move {
    0% {
        opacity: 0.2;
        transform: translateX(-50%) scaleX(0.5);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1);
    }
    100% {
        opacity: 0.2;
        transform: translateX(-50%) scaleX(0.5);
    }
}

/* Particle Animations */
@keyframes quantum-particle-float-1 {
    0%, 100% {
        top: 5%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(90deg);
    }
    50% {
        top: 25%;
        opacity: 0.8;
        transform: scale(1.2) rotate(180deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(270deg);
    }
}

@keyframes quantum-particle-float-2 {
    0%, 100% {
        top: 15%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(-90deg);
    }
    50% {
        top: 45%;
        opacity: 0.8;
        transform: scale(1.2) rotate(-180deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(-270deg);
    }
}

@keyframes quantum-particle-float-3 {
    0%, 100% {
        top: 25%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(120deg);
    }
    50% {
        top: 55%;
        opacity: 0.8;
        transform: scale(1.2) rotate(240deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(360deg);
    }
}

@keyframes quantum-particle-float-4 {
    0%, 100% {
        top: 35%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(-120deg);
    }
    50% {
        top: 65%;
        opacity: 0.8;
        transform: scale(1.2) rotate(-240deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(-360deg);
    }
}

@keyframes quantum-particle-float-5 {
    0%, 100% {
        top: 45%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(45deg);
    }
    50% {
        top: 75%;
        opacity: 0.8;
        transform: scale(1.2) rotate(90deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(135deg);
    }
}

@keyframes quantum-particle-float-6 {
    0%, 100% {
        top: 55%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(-45deg);
    }
    50% {
        top: 85%;
        opacity: 0.8;
        transform: scale(1.2) rotate(-90deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(-135deg);
    }
}

@keyframes quantum-particle-float-7 {
    0%, 100% {
        top: 65%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(60deg);
    }
    50% {
        top: 95%;
        opacity: 0.8;
        transform: scale(1.2) rotate(120deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(180deg);
    }
}

@keyframes quantum-particle-float-8 {
    0%, 100% {
        top: 75%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(-60deg);
    }
    50% {
        top: 5%;
        opacity: 0.8;
        transform: scale(1.2) rotate(-120deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(-180deg);
    }
}

@keyframes quantum-particle-float-9 {
    0%, 100% {
        top: 85%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(30deg);
    }
    50% {
        top: 15%;
        opacity: 0.8;
        transform: scale(1.2) rotate(60deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(90deg);
    }
}

@keyframes quantum-particle-float-10 {
    0%, 100% {
        top: 95%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: scale(1) rotate(-30deg);
    }
    50% {
        top: 35%;
        opacity: 0.8;
        transform: scale(1.2) rotate(-60deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.8) rotate(-90deg);
    }
}

/* Hologram Animations */
@keyframes hologram-rotate {
    0% {
        transform: rotateZ(0deg) rotateY(0deg);
    }
    25% {
        transform: rotateZ(90deg) rotateY(90deg);
    }
    50% {
        transform: rotateZ(180deg) rotateY(180deg);
    }
    75% {
        transform: rotateZ(270deg) rotateY(270deg);
    }
    100% {
        transform: rotateZ(360deg) rotateY(360deg);
    }
}

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

@keyframes hologram-core-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Node Animations */
@keyframes node-core-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes node-pulse-expand {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes node-ring-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Wave Animations */
@keyframes wave-move {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Neon Animations */
@keyframes neon-beam-move {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes neon-flare-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Matrix Animations */
@keyframes matrix-line-scan {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    10% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    90% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    100% {
        opacity: 0;
        transform: scaleY(0);
    }
}

@keyframes matrix-dot-blink {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Professional Crosshair Display */
.professional-crosshair-display {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    will-change: transform;
    transform: translateZ(0);
}

.crosshair-showcase {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 114, 128, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 114, 128, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: showcase-glow 4s ease-in-out infinite;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.crosshair-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 136, 0.1) 90deg,
        transparent 180deg,
        rgba(0, 255, 136, 0.1) 270deg,
        transparent 360deg
    );
    animation: showcase-rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crosshair-showcase:hover::before {
    opacity: 1;
}

.crosshair-showcase:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 255, 136, 0.2);
}

.crosshair-showcase:hover .crosshair-target {
    animation: target-zoom 0.5s ease-out;
}

@keyframes target-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes showcase-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 136, 0.1);
    }
}

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

.crosshair-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(107, 114, 128, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 114, 128, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 20px;
    opacity: 0.3;
    animation: grid-pulse 3s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.crosshair-target {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-ring {
    position: absolute;
    border: 1px solid rgba(107, 114, 128, 0.2);
    border-radius: 50%;
    animation: ring-pulse 3s ease-in-out infinite;
}

.target-ring.ring-1 {
    width: 80px;
    height: 80px;
    border-color: rgba(0, 255, 136, 0.3);
    animation: ring-pulse-glow 2s ease-in-out infinite;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.target-ring.ring-2 {
    width: 120px;
    height: 120px;
    border-color: rgba(107, 114, 128, 0.2);
    animation: ring-pulse-rotate 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.target-ring.ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(107, 114, 128, 0.1);
    animation: ring-pulse-fade 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

@keyframes ring-pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    }
    50% {
        transform: scale(1.08);
        opacity: 0.8;
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    }
}

@keyframes ring-pulse-rotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.03) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes ring-pulse-fade {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
        border-color: rgba(107, 114, 128, 0.1);
    }
    33% {
        transform: scale(1.02);
        opacity: 0.3;
        border-color: rgba(107, 114, 128, 0.3);
    }
    66% {
        transform: scale(1.01);
        opacity: 0.2;
        border-color: rgba(107, 114, 128, 0.2);
    }
}

.precision-crosshair {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: crosshair-float 3s ease-in-out infinite;
}

.crosshair-center {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: center-pulse-advanced 2s ease-in-out infinite;
}

.crosshair-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: center-ring-expand 3s ease-in-out infinite;
}

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

@keyframes center-pulse-advanced {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    }
    25% {
        transform: scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
    }
    75% {
        transform: scale(1.2);
        opacity: 0.6;
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    }
}

@keyframes center-ring-expand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }
}

.precision-crosshair .crosshair-line {
    position: absolute;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    animation: crosshair-line-pulse 2s ease-in-out infinite;
}

.precision-crosshair .crosshair-line.horizontal {
    width: 20px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: crosshair-line-horizontal 2.5s ease-in-out infinite;
}

.precision-crosshair .crosshair-line.vertical {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: crosshair-line-vertical 2.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes crosshair-line-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 16px rgba(0, 255, 136, 0.8);
    }
}

@keyframes crosshair-line-horizontal {
    0%, 100% {
        transform: translate(-50%, -50%) scaleX(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scaleX(1.2);
        opacity: 0.8;
    }
}

@keyframes crosshair-line-vertical {
    0%, 100% {
        transform: translate(-50%, -50%) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scaleY(1.2);
        opacity: 0.8;
    }
}

.precision-crosshair .crosshair-outline {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.precision-crosshair .crosshair-outline.horizontal {
    width: 22px;
    height: 4px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.precision-crosshair .crosshair-outline.vertical {
    width: 4px;
    height: 22px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.precision-indicators {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    animation: indicators-rotate 15s linear infinite;
}

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

.indicator-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
    animation: indicator-pulse-advanced 2s ease-in-out infinite;
}

.indicator-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: indicator-ripple 2s ease-in-out infinite;
}

.indicator-dot:nth-child(1) {
    top: 25%;
    left: 25%;
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(1)::before {
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(2) {
    top: 25%;
    right: 25%;
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(2)::before {
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(3) {
    bottom: 25%;
    left: 25%;
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(3)::before {
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(4) {
    bottom: 25%;
    right: 25%;
    animation-delay: var(--delay);
}

.indicator-dot:nth-child(4)::before {
    animation-delay: var(--delay);
}

@keyframes indicator-pulse-advanced {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.5);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 25px rgba(0, 255, 136, 1);
    }
    75% {
        opacity: 0.6;
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
    }
}

@keyframes indicator-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.professional-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(107, 114, 128, 0.05);
    border: 1px solid rgba(107, 114, 128, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    min-width: 140px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    background: rgba(107, 114, 128, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1);
}

.stat-card:hover .stat-icon::before {
    width: 100%;
    height: 100%;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
    animation: stat-number-glow 3s ease-in-out infinite;
}

@keyframes stat-number-glow {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    opacity: 0.4;
    color: rgba(107, 114, 128, 0.6);
    animation: float-around-advanced 12s ease-in-out infinite;
    animation-delay: var(--delay);
    transition: all 0.3s ease;
    filter: blur(0px);
}

.float-element:hover {
    opacity: 0.8;
    transform: scale(1.2);
    filter: blur(0px) drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.float-element:nth-child(1) { 
    top: 15%; 
    left: 15%; 
    animation: float-spiral-1 10s ease-in-out infinite;
}

.float-element:nth-child(2) { 
    top: 25%; 
    right: 20%; 
    animation: float-spiral-2 14s ease-in-out infinite;
}

.float-element:nth-child(3) { 
    bottom: 30%; 
    left: 10%; 
    animation: float-spiral-3 16s ease-in-out infinite;
}

@keyframes float-around-advanced {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.4;
        filter: blur(0px);
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.1);
        opacity: 0.6;
        filter: blur(0.5px);
    }
    50% { 
        transform: translateY(-5px) rotate(-3deg) scale(0.9);
        opacity: 0.3;
        filter: blur(1px);
    }
    75% { 
        transform: translateY(10px) rotate(7deg) scale(1.05);
        opacity: 0.7;
        filter: blur(0px);
    }
}

@keyframes float-spiral-1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(15px) translateX(8px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes float-spiral-2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translateY(-25px) translateX(-15px) rotate(120deg) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translateY(20px) translateX(10px) rotate(240deg) scale(0.8);
        opacity: 0.5;
    }
}

@keyframes float-spiral-3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.4;
    }
    20% {
        transform: translateY(-30px) translateX(20px) rotate(72deg);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-15px) translateX(-10px) rotate(144deg);
        opacity: 0.3;
    }
    60% {
        transform: translateY(10px) translateX(15px) rotate(216deg);
        opacity: 0.7;
    }
    80% {
        transform: translateY(25px) translateX(-5px) rotate(288deg);
        opacity: 0.5;
    }
}

/* Hero Section Divider */
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--glass-border) 20%, var(--glow-primary) 50%, var(--glass-border) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Crosshairs Section */
.crosshairs-premium {
    padding: 8rem 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    margin-bottom: 1.5rem;
    color: var(--glow-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.crosshair-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--card-bg);
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gradient);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.crosshair-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.crosshair-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.crosshair-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.crosshair-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.crosshair-card-premium:hover::before {
    opacity: 0.1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.crosshair-card-premium:hover .card-glow {
    opacity: 1;
}

.card-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.crosshair-preview-premium {
    width: 160px;
    height: 160px;
    background: var(--dark-glass);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--glass-border);
}

.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

.crosshair-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crosshair-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
}

.crosshair-image:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
}

.crosshair-fallback {
    color: #ff6b6b;
    font-size: 11px;
    text-align: center;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.crosshair-dot {
    width: 8px;
    height: 8px;
    background: var(--glow-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--glow-primary);
}

.crosshair-dot.small {
    width: 4px;
    height: 4px;
}

.crosshair-dot.large {
    width: 12px;
    height: 12px;
}

.crosshair-dot.medium {
    width: 10px;
    height: 10px;
}

.crosshair-dot.tiny {
    width: 3px;
    height: 3px;
}

.crosshair-line {
    background: var(--glow-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--glow-primary);
}

.crosshair-line.vertical {
    width: 2px;
    height: 40px;
}

.crosshair-line.horizontal {
    width: 40px;
    height: 2px;
}

.crosshair-line.thick {
    width: 4px;
}

.crosshair-line.thick.horizontal {
    height: 4px;
}

.crosshair-line.thin {
    width: 1px;
}

.crosshair-line.thin.horizontal {
    height: 1px;
}

.crosshair-line.ultra-thin {
    width: 0.5px;
}

.crosshair-line.ultra-thin.horizontal {
    height: 0.5px;
}

.crosshair-line.medium {
    width: 3px;
}

.crosshair-line.medium.horizontal {
    height: 3px;
}

.crosshair-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border: 2px solid rgba(0, 0, 0, 0.8);
    background: transparent;
    z-index: 1;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.crosshair-preview-premium:hover .preview-overlay {
    opacity: 1;
}

.preview-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--accent-gradient);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

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

.card-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.badge {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge.pro {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

.badge.popular {
    background: var(--glow-secondary);
    color: var(--text-primary);
}

.badge.minimal {
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.badge.new {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: var(--text-primary);
    animation: pulse 2s ease-in-out infinite;
}

.badge.community {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: var(--text-primary);
}

.badge.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: var(--text-primary);
}

.badge.dot {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--text-primary);
}

.badge.classic {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: var(--text-primary);
}

.badge.advanced {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--text-primary);
}

.badge.special {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: var(--text-primary);
}

.badge.wide {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: var(--text-primary);
}

.badge.long {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--text-primary);
}

.card-content {
    flex: 1;
}

.card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.score {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.crosshair-details {
    margin-bottom: 1.5rem;
    background: var(--dark-glass);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--glass-border);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.card-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--glow-primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.crosshair-code-premium {
    background: var(--dark-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.code-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.code-type {
    padding: 0.2rem 0.8rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.code-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    pointer-events: none;
}

.code-content code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--glow-primary);
    flex: 1;
    word-break: break-all;
    line-height: 1.4;
    user-select: text;
    cursor: text;
    pointer-events: none;
}

.copy-btn-premium {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.copy-btn-premium:hover {
    background: var(--accent-gradient);
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Pro Players Section */
.pros-premium {
    padding: 8rem 0;
    background: var(--dark-glass);
}

.pros-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pro-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.pro-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pro-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.pro-card-premium:hover::before {
    opacity: 0.1;
}

.pro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pro-card-premium:hover .pro-bg {
    opacity: 1;
}

.pro-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pro-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--glow-primary);
    border-radius: 50%;
}

.avatar-image {
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pro-info {
    text-align: center;
}

.pro-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pro-team {
    color: var(--glow-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pro-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pro-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.pro-crosshair-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.crosshair-preview-small {
    width: 60px;
    height: 60px;
    background: var(--dark-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.pro-crosshair-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.crosshair-preview-small:hover .pro-crosshair-img {
    transform: scale(1.1);
    filter: brightness(1.3) contrast(1.2);
}

.crosshair-details-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.crosshair-rating {
    font-size: 0.8rem;
    color: var(--glow-primary);
    font-weight: 600;
}

.crosshair-usage {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.view-crosshair-btn {
    background: var(--accent-gradient);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.3rem;
}

.view-crosshair-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Animated Rope System */
.rope-system {
    position: relative;
    padding: 6rem 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
    margin-top: -8cm;
}

.rope-container {
    position: relative;
    width: 100%;
    height: 300px;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ana Halat */
.main-rope {
    position: relative;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 255, 136, 0.1) 0%, 
        rgba(0, 255, 136, 0.6) 20%, 
        rgba(0, 255, 136, 0.8) 40%, 
        rgba(0, 255, 136, 1) 60%, 
        rgba(0, 255, 136, 0.8) 80%, 
        rgba(0, 255, 136, 0.1) 100%
    );
    border-radius: 4px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.6),
        inset 0 0 10px rgba(0, 255, 136, 0.3);
    animation: rope-pulse 3s ease-in-out infinite;
}

.main-rope::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 255, 136, 0.1) 20%, 
        rgba(0, 255, 136, 0.2) 50%, 
        rgba(0, 255, 136, 0.1) 80%, 
        transparent 100%
    );
    transform: translateX(-50%);
    border-radius: 8px;
    animation: rope-glow 2s ease-in-out infinite;
}

.rope-segment {
    position: absolute;
    width: 100%;
    height: 12.5%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 255, 136, 0.8) 50%, 
        transparent 100%
    );
    border-radius: 2px;
    animation: rope-segment-flow 4s ease-in-out infinite;
}

.rope-segment:nth-child(1) { top: 0%; animation-delay: 0s; }
.rope-segment:nth-child(2) { top: 12.5%; animation-delay: 0.5s; }
.rope-segment:nth-child(3) { top: 25%; animation-delay: 1s; }
.rope-segment:nth-child(4) { top: 37.5%; animation-delay: 1.5s; }
.rope-segment:nth-child(5) { top: 50%; animation-delay: 2s; }
.rope-segment:nth-child(6) { top: 62.5%; animation-delay: 2.5s; }
.rope-segment:nth-child(7) { top: 75%; animation-delay: 3s; }
.rope-segment:nth-child(8) { top: 87.5%; animation-delay: 3.5s; }

/* Yukarı Çıkan Parçacıklar */
.rope-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 255, 136, 1) 0%, transparent 70%);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: particle-flow 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

.particle:nth-child(1) { left: 48%; animation-delay: 0s; }
.particle:nth-child(2) { left: 52%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 47%; animation-delay: 1s; }
.particle:nth-child(4) { left: 53%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 49%; animation-delay: 2s; }
.particle:nth-child(6) { left: 51%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 48.5%; animation-delay: 3s; }
.particle:nth-child(8) { left: 51.5%; animation-delay: 3.5s; }

/* Halat Bağlantı Noktaları */
.rope-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.connection-point {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.connection-point.top {
    top: -20px;
}

.connection-point.bottom {
    bottom: -20px;
}

.point-core {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 1) 0%, rgba(0, 255, 136, 0.5) 70%, transparent 100%);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: point-pulse 2s ease-in-out infinite;
}

.point-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: point-glow-expand 3s ease-in-out infinite;
}

/* Enerji Akışı */
.energy-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to top, 
        transparent 0%, 
        rgba(0, 255, 136, 0.3) 20%, 
        rgba(0, 255, 136, 0.6) 40%, 
        rgba(0, 255, 136, 0.3) 60%, 
        transparent 100%
    );
    animation: flow-line-move 2s ease-in-out infinite;
}

.flow-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: flow-pulse-move 3s ease-in-out infinite;
}

/* Animasyonlar */
@keyframes rope-pulse {
    0%, 100% { 
        transform: scaleY(1);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
    50% { 
        transform: scaleY(1.02);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

@keyframes rope-glow {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes rope-segment-flow {
    0%, 100% { 
        opacity: 0.3;
        transform: scaleY(0.8);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes particle-flow {
    0% { 
        bottom: 0%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% { 
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% { 
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    100% { 
        bottom: 100%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
}

@keyframes point-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
    }
}

@keyframes point-glow-expand {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}

@keyframes flow-line-move {
    0%, 100% { 
        transform: translateX(-50%) translateY(0%);
        opacity: 0.4;
    }
    50% { 
        transform: translateX(-50%) translateY(-10%);
        opacity: 0.8;
    }
}

@keyframes flow-pulse-move {
    0% { 
        bottom: 0%;
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    20% { 
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% { 
        opacity: 1;
        transform: translateX(-50%) scale(1.5);
    }
    100% { 
        bottom: 100%;
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
}

/* Tools Section */
.tools-premium {
    padding: 4rem 0;
    margin-top: -3cm;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

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

.tool-icon {
    margin-bottom: 1.5rem;
}

.tool-icon svg {
    filter: drop-shadow(0 0 20px var(--glow-primary));
}

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.tool-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    background: var(--glass-bg);
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    text-align: center;
}

.tool-btn:hover {
    background: var(--accent-gradient);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tool-btn.active {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.tool-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

/* Footer */
.footer-premium {
    background: var(--dark-glass);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-icon {
    position: relative;
}

.footer-logo .logo-icon svg {
    filter: drop-shadow(0 0 20px var(--glow-primary));
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-logo .logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--glow-primary);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-developer {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-developer:hover {
    opacity: 1;
}

.cihatsoft-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cihatsoft-logo:hover {
    color: #6b7280;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(107, 114, 128, 0.2);
    transform: translateY(-2px);
}

.cihatsoft-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.cihatsoft-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.cihatsoft-logo:hover .cihatsoft-icon svg {
    color: #6b7280;
    transform: scale(1.1);
}

.cihatsoft-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cihatsoft-main {
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
}

.cihatsoft-sub {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Crosshair Controls */
.crosshair-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.search-container {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.sort-container {
    min-width: 200px;
}

.sort-select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.sort-select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Loading State */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 500;
}

/* Crosshair Visual Renderer */
.crosshair-visual {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crosshair-dot {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.crosshair-dot.tiny {
    width: 2px;
    height: 2px;
}

.crosshair-dot.small {
    width: 4px;
    height: 4px;
}

.crosshair-dot.medium {
    width: 6px;
    height: 6px;
}

.crosshair-dot.large {
    width: 8px;
    height: 8px;
}

.crosshair-line {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.crosshair-line.vertical {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.crosshair-line.horizontal {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.crosshair-line.thin {
    width: 1px;
}

.crosshair-line.thin.horizontal {
    height: 1px;
}

.crosshair-line.thick {
    width: 3px;
}

.crosshair-line.thick.horizontal {
    height: 3px;
}

.crosshair-line.ultra-thin {
    width: 0.5px;
}

.crosshair-line.ultra-thin.horizontal {
    height: 0.5px;
}

.crosshair-outline {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Preview Modal */
.crosshair-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.modal-header h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: white;
    transform: scale(1.1);
}

.modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.preview-crosshair-large {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(79, 70, 229, 0.05) 50%, 
        transparent 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.preview-crosshair-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="rgba(255,255,255,0.02)"/><rect x="10" y="0" width="10" height="10" fill="rgba(255,255,255,0.01)"/><rect x="0" y="10" width="10" height="10" fill="rgba(255,255,255,0.01)"/></svg>');
    opacity: 0.5;
}

.preview-crosshair-large .crosshair-visual {
    width: 100px;
    height: 100px;
    position: relative;
}

.crosshair-image-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: brightness(1.3) contrast(1.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.preview-crosshair-large .crosshair-dot {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.preview-crosshair-large .crosshair-line {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.preview-crosshair-large .crosshair-line.vertical {
    height: 40px;
}

.preview-crosshair-large .crosshair-line.horizontal {
    width: 40px;
}

.preview-details {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.preview-details p {
    margin: 10px 0;
    font-size: 14px;
}

.preview-details strong {
    color: white;
    font-weight: 600;
}

.preview-details code {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #8b5cf6;
    word-break: break-all;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-copy {
    padding: 15px 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-copy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Enhanced Badges */
.badge.legendary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #1a1a1a;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.badge.epic {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    font-weight: 600;
}

.badge.trending {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    font-weight: 600;
    animation: glow 2s infinite alternate;
}

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

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255, 107, 107, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8); }
}

/* Crosshair Builder Modal */
.crosshair-builder-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.crosshair-builder-modal.active {
    display: flex;
}

.builder-modal-content {
    position: relative;
    background: rgba(15, 15, 35, 0.95);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    height: 700px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.builder-header {
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.builder-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.builder-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-close:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
    transform: scale(1.1);
}

.builder-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    overflow-y: auto;
}

.builder-preview-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.builder-preview-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.builder-background {
    flex: 1;
    background: radial-gradient(circle at center, 
        rgba(0, 255, 136, 0.05) 0%, 
        rgba(255, 0, 128, 0.03) 50%, 
        transparent 100%);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.builder-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="rgba(255,255,255,0.02)"/><rect x="10" y="0" width="10" height="10" fill="rgba(255,255,255,0.01)"/><rect x="0" y="10" width="10" height="10" fill="rgba(255,255,255,0.01)"/></svg>');
    opacity: 0.3;
}

.builder-crosshair {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.builder-crosshair .crosshair-center {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.builder-crosshair .crosshair-line {
    position: absolute;
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.builder-crosshair .crosshair-line.horizontal {
    width: 20px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.builder-crosshair .crosshair-line.vertical {
    width: 4px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.builder-crosshair .crosshair-outline {
    position: absolute;
    border: 2px solid #000000;
    border-radius: 2px;
}

.builder-crosshair .crosshair-outline.horizontal {
    width: 24px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.builder-crosshair .crosshair-outline.vertical {
    width: 8px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.builder-preview-info {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.builder-preview-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.builder-preview-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.builder-controls-section {
    overflow-y: auto;
    max-height: 100%;
}

.builder-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-group {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.control-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.control-row:last-child {
    margin-bottom: 0;
}

.control-row label {
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
}

.control-row input[type="color"] {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: none;
}

.control-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--glow-primary);
}

.control-row input[type="range"] {
    flex: 1;
    max-width: 120px;
    margin: 0 1rem;
    accent-color: var(--glow-primary);
}

.control-row span {
    min-width: 30px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    background: var(--glass-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.preset-btn {
    padding: 0.8rem 1rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.preset-btn:hover {
    background: var(--accent-gradient);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.builder-footer {
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.builder-code {
    flex: 1;
}

.builder-code h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.code-display {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.code-display code {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--glow-primary);
    word-break: break-all;
}

.copy-code-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    white-space: nowrap;
}

.copy-code-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.builder-actions {
    display: flex;
    gap: 1rem;
}

.builder-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.builder-btn.secondary {
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.builder-btn.secondary:hover {
    background: var(--card-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.builder-btn.primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.builder-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .crosshair-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-container {
        min-width: 100%;
    }
    
    .sort-container {
        min-width: 100%;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .modal-body {
        flex-direction: column;
        gap: 20px;
    }
    
    .preview-crosshair-large {
        width: 120px;
        height: 120px;
    }
    
    .preview-crosshair-large .crosshair-visual {
        width: 80px;
        height: 80px;
    }
    
    /* Crosshair Builder Mobile Responsive */
    .builder-modal-content {
        width: 95vw;
        height: 95vh;
        max-width: none;
        max-height: none;
    }
    
    .builder-header {
        padding: 1rem;
    }
    
    .builder-header h2 {
        font-size: 1.4rem;
    }
    
    .builder-body {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .builder-background {
        min-height: 250px;
    }
    
    .builder-crosshair {
        width: 80px;
        height: 80px;
    }
    
    .control-group {
        padding: 1rem;
    }
    
    .control-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .control-row input[type="range"] {
        max-width: 100%;
        width: 100%;
    }
    
    .preset-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .builder-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .code-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .code-display code {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .builder-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Improvements */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.crosshair-card-premium {
    animation: fadeIn 0.6s ease;
}

/* Loading Animation */
.loading-state::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #8b5cf6;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Navigation Styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--glow-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu-content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
    background: var(--card-bg);
    border-color: var(--glass-border);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.mobile-nav-actions .nav-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 2rem;
    }

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

    .crosshair-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .tools-premium {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .rope-system {
        padding: 4rem 0;
        min-height: 300px;
    }
    
    .rope-container {
        height: 240px;
    }
    
    .main-rope {
        width: 6px;
    }
    
    .particle {
        width: 4px;
        height: 4px;
    }
    
    .connection-point {
        width: 30px;
        height: 30px;
    }
    
    .point-core {
        width: 16px;
        height: 16px;
    }
    
    .point-glow {
        width: 45px;
        height: 45px;
    }
    
    .professional-crosshair-display {
        width: 350px;
        height: 350px;
    }
    
    .crosshair-showcase {
        width: 280px;
        height: 280px;
    }
    
    .crosshair-target {
        width: 160px;
        height: 160px;
    }
    
    .target-ring.ring-1 {
        width: 60px;
        height: 60px;
    }
    
    .target-ring.ring-2 {
        width: 100px;
        height: 100px;
    }
    
    .target-ring.ring-3 {
        width: 140px;
        height: 140px;
    }
    
    .professional-stats {
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.2rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    
    .nav-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    
    /* Quantum Divider Mobile */
    .precision-divider {
        top: 80px;
        height: calc(100% - 80px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .crosshair-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .pros-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pro-card-premium {
        min-height: auto;
        padding: 1rem;
    }

    .pro-crosshair-info {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .crosshair-details-small {
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-logo .logo-main {
        font-size: 1.2rem;
    }
    
    .footer-logo .logo-sub {
        font-size: 0.7rem;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }

    .footer-copyright {
        gap: 0.3rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .tools-premium {
        padding: 2rem 0;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .crosshair-connections {
        height: 70px;
    }
    
    .crosshair-grid {
        gap: 40px;
    }
    
    .crosshair-column {
        gap: 12px;
    }
    
    .crosshair-node {
        width: 14px;
        height: 14px;
    }
    
    .aim-dot {
        width: 4px;
        height: 4px;
    }
    
    .aim-dot::before {
        width: 8px;
    }
    
    .aim-dot::after {
        height: 8px;
    }
    
    .vertical-line {
        height: 18px;
        width: 1px;
    }
    
    .accuracy-indicators {
        bottom: 10px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 2px;
    }
    
    .professional-crosshair-display {
        width: 300px;
        height: 300px;
    }
    
    .crosshair-showcase {
        width: 250px;
        height: 250px;
    }
    
    .crosshair-target {
        width: 130px;
        height: 130px;
    }
    
    .target-ring.ring-1 {
        width: 50px;
        height: 50px;
    }
    
    .target-ring.ring-2 {
        width: 80px;
        height: 80px;
    }
    
    .target-ring.ring-3 {
        width: 110px;
        height: 110px;
    }
    
    .professional-stats {
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .stat-card {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

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

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

    .section-title {
        font-size: 2rem;
    }
    
    .crosshair-filters {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        min-height: 56px;
    }
    
    .hamburger-menu {
        width: 28px;
        height: 22px;
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .tools-premium {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .rope-system {
        padding: 2.5rem 0;
        min-height: 200px;
    }
    
    .rope-container {
        height: 160px;
    }
    
    .main-rope {
        width: 4px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .connection-point {
        width: 20px;
        height: 20px;
    }
    
    .point-core {
        width: 10px;
        height: 10px;
    }
    
    .point-glow {
        width: 30px;
        height: 30px;
    }
    
    .flow-pulse {
        width: 12px;
        height: 12px;
    }
    
    .aim-dot {
        width: 3px;
        height: 3px;
    }
    
    .aim-dot::before {
        width: 6px;
    }
    
    .aim-dot::after {
        height: 6px;
    }
    
    .vertical-line {
        height: 12px;
        width: 1px;
    }
    
    .accuracy-indicators {
        bottom: 5px;
        gap: 4px;
    }
    
    .indicator {
        width: 4px;
        height: 1px;
    }
    
    .connections-container {
        padding: 0 1rem;
    }
    
    .professional-crosshair-display {
        width: 280px;
        height: 280px;
    }
    
    .crosshair-showcase {
        width: 220px;
        height: 220px;
    }
    
    .crosshair-target {
        width: 110px;
        height: 110px;
    }
    
    .target-ring.ring-1 {
        width: 40px;
        height: 40px;
    }
    
    .target-ring.ring-2 {
        width: 70px;
        height: 70px;
    }
    
    .target-ring.ring-3 {
        width: 100px;
        height: 100px;
    }
    
    .precision-crosshair {
        width: 40px;
        height: 40px;
    }
    
    .professional-stats {
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .stat-card {
        padding: 0.75rem;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        margin-right: 0;
    }
}