/* Variables */
:root {
    --primary: #ff0055;
    --secondary: #ff0055;
    --accent: #00ccff;
    --warning: #ffaa00;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-accent: #ff0055;
    --border: #222222;
    --glow-primary: rgba(255, 0, 85, 0.5);
    --glow-secondary: rgba(255, 0, 85, 0.5);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: crosshair;
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.matrix-rain::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-darker) 100%);
}

/* Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 85, 0.03) 2px,
        rgba(255, 0, 85, 0.03) 4px
    );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow-primary);
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.nav-link:hover {
    color: transparent;
}

.nav-link:hover::before {
    transform: translateY(0);
}

/* Discord Button */
.discord-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.discord-button:hover::before {
    left: 100%;
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--glow-primary);
    border-color: var(--accent);
}

.discord-icon {
    width: 20px;
    height: 20px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 0, 85, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 0, 85, 0.1) 60deg,
        transparent 120deg,
        rgba(255, 0, 85, 0.1) 180deg,
        transparent 240deg,
        rgba(0, 204, 255, 0.1) 300deg,
        transparent 360deg
    );
    animation: rotate 30s linear infinite;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--primary);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-days {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 900;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.glitch {
    position: relative;
    color: var(--primary);
    text-shadow: 0 0 30px var(--glow-primary);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--secondary);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 30px var(--glow-primary); }
    20% { text-shadow: 3px 0 30px var(--glow-secondary); }
    40% { text-shadow: -3px 0 30px var(--glow-primary); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(20% 0 40% 0); transform: translate(2px, -2px); }
}

.outline-text {
    -webkit-text-stroke: 2px var(--text-primary);
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow-primary);
    margin-bottom: 0.25rem;
    min-width: 120px;
    display: inline-block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-button {
    position: relative;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.cta-button.primary {
    border-color: var(--primary);
    color: var(--primary);
}

.cta-button.secondary {
    border-color: var(--text-secondary);
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button.primary:hover .button-bg {
    left: 0;
}

.cta-button.primary:hover {
    color: var(--bg-darker);
    box-shadow: 0 0 30px var(--glow-primary);
}

.cta-button.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.cyber-grid {
    position: absolute;
    inset: 0;
    transform: perspective(500px) rotateX(60deg);
    transform-style: preserve-3d;
}

.grid-line {
    position: absolute;
    background: var(--primary);
    opacity: 0.2;
    box-shadow: 0 0 10px var(--glow-primary);
}

.grid-line:nth-child(1),
.grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line:nth-child(1) { left: 25%; }
.grid-line:nth-child(2) { left: 75%; }

.grid-line:nth-child(3),
.grid-line:nth-child(4) {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line:nth-child(3) { top: 25%; }
.grid-line:nth-child(4) { top: 75%; }

.floating-ui {
    position: absolute;
    inset: 0;
}

.ui-element {
    position: absolute;
}

.crosshair {
    top: 30%;
    left: 60%;
    width: 80px;
    height: 80px;
    animation: float 6s ease-in-out infinite;
}

.crosshair-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-secondary);
}

.crosshair-line {
    position: absolute;
    background: var(--secondary);
    opacity: 0.5;
}

.crosshair-line.top,
.crosshair-line.bottom {
    width: 2px;
    height: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.crosshair-line.top { top: 10px; }
.crosshair-line.bottom { bottom: 10px; }

.crosshair-line.left,
.crosshair-line.right {
    width: 20px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.crosshair-line.left { left: 10px; }
.crosshair-line.right { right: 10px; }

.radar {
    bottom: 20%;
    right: 20%;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    overflow: hidden;
    animation: float 8s ease-in-out infinite reverse;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
    transform-origin: left center;
    animation: sweep 3s linear infinite;
}

@keyframes sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-secondary);
}

.radar-dot:nth-child(2) { top: 30%; left: 40%; }
.radar-dot:nth-child(3) { top: 60%; left: 70%; }
.radar-dot:nth-child(4) { top: 70%; left: 30%; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Arsenal Section */
.arsenal {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.arsenal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.title-accent {
    color: var(--primary);
    text-shadow: 0 0 30px var(--glow-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 2rem;
}

.weapon-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    overflow: visible;
    transition: all 0.3s;
    z-index: 1;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.weapon-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.3);
}

.weapon-card.locked {
    opacity: 0.5;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 0, 85, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.weapon-card:hover .card-background {
    opacity: 1;
}

.card-border {
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.weapon-card.active:hover .card-border {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-badge.developing {
    background: rgba(255, 204, 0, 0.1);
    border-color: #ffcc00;
    color: #ffcc00;
}

.status-badge.developing .pulse {
    background: #ffcc00;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.feature-item:hover {
    background: rgba(255, 0, 85, 0.05);
    border-color: rgba(255, 0, 85, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-item > span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow-primary);
}

.price-period {
    color: var(--text-secondary);
}

.deploy-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
    pointer-events: auto;
}

.deploy-button .button-text {
    position: relative;
    z-index: 2;
}

.deploy-button:hover {
    color: var(--bg-darker);
    box-shadow: 0 0 30px var(--glow-primary);
    transform: scale(1.02);
}

.deploy-button:active {
    transform: scale(0.98);
}

.deploy-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.button-glow {
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.deploy-button:hover .button-glow {
    transform: translateY(0);
}

.locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.lock-icon {
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    opacity: 0.5;
}

.locked-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.5;
}

.locked-status {
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.feature-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

/* Purchase Card Button - Matching deploy-button style */
.purchase-card-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 0.75rem;
    transition: all 0.3s;
    z-index: 1;
    pointer-events: auto;
}

.purchase-card-button .button-text {
    position: relative;
    z-index: 2;
}

.purchase-card-button:hover {
    color: var(--bg-darker);
    box-shadow: 0 0 30px var(--glow-primary);
    transform: scale(1.02);
}

.purchase-card-button:active {
    transform: scale(0.98);
}

.purchase-card-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.purchase-card-button .button-glow {
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: -1;
}

.purchase-card-button:hover .button-glow {
    transform: translateY(0);
}

/* Card Purchase Overlay */
.card-purchase-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.card-purchase-overlay.active {
    display: flex;
    opacity: 1;
}

.overlay-content {
    background: var(--bg-darker);
    border: 1px solid var(--primary);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 50px var(--glow-primary);
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.card-purchase-overlay.active .overlay-content {
    transform: scale(1);
}

.overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.overlay-close:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

.overlay-close svg {
    width: 20px;
    height: 20px;
}

.overlay-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-align: center;
}

.overlay-desc {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.resellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reseller-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.reseller-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
    transform: translateY(-2px);
}

.reseller-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.reseller-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reseller-button {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.reseller-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.3s;
    z-index: -1;
}

.reseller-button:hover::before {
    left: 0;
}

.reseller-button:hover {
    color: var(--bg-darker);
    box-shadow: 0 0 20px var(--glow-primary);
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 16px;
    height: 16px;
    background: var(--border);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--glow-primary);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-name {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--primary);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow-primary);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Boot Terminal */
.boot-terminal {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.terminal-window {
    background: #000;
    border: 1px solid var(--primary);
    border-radius: 8px;
    width: 600px;
    box-shadow: 0 0 50px var(--glow-primary);
    overflow: hidden;
}

.terminal-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-content {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.terminal-line {
    color: var(--primary);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.terminal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.terminal-line::before {
    content: '> ';
    color: var(--text-secondary);
}

.boot-terminal.fade-out {
    opacity: 0;
    transition: opacity 1s;
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.stream-line {
    position: absolute;
    top: -100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.1;
    animation: dataFlow 10s linear infinite;
    writing-mode: vertical-rl;
}

@keyframes dataFlow {
    to {
        transform: translateY(calc(100vh + 100px));
    }
}

/* Holographic Effect */
.weapon-card.active {
    --mouse-x: 0.5;
    --mouse-y: 0.5;
}

.weapon-card.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at calc(var(--mouse-x) * 100%) calc(var(--mouse-y) * 100%),
        rgba(255, 0, 85, 0.2) 0%,
        transparent 50%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.weapon-card.active:hover::after {
    opacity: 1;
}

/* Circuit Pattern */
.circuit-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.03;
}

.circuit-path {
    position: absolute;
    width: 200px;
    height: 2px;
    background: var(--primary);
    transform-origin: left center;
}

.circuit-path::before,
.circuit-path::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: -3px;
}

.circuit-path::before { left: 0; }
.circuit-path::after { right: 0; }

.circuit-path:nth-child(odd) {
    animation: circuitPulse 4s ease-in-out infinite;
}

.circuit-path:nth-child(even) {
    animation: circuitPulse 4s ease-in-out infinite reverse;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .arsenal-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-status {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 auto;
        min-width: 100px;
    }
    
    .stat-value {
        font-size: 1.5rem;
        min-width: 90px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .arsenal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .weapon-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .terminal-window {
        width: 90%;
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-grid {
        gap: 0.75rem;
    }
    
    .discord-button span {
        display: none;
    }
    
    .discord-button {
        padding: 0.5rem;
    }
    
    .discord-icon {
        width: 24px;
        height: 24px;
    }
}

/* Enhanced Animations */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-primary),
                    inset 0 0 20px rgba(255, 0, 85, 0.1);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-primary),
                    inset 0 0 40px rgba(255, 0, 85, 0.2);
    }
}

.weapon-card.active:hover {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Hacker Text Effect */
@keyframes hackerText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: slideRight 3s linear infinite;
}

/* Cyber Lines */
.cyber-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.02;
}

.cyber-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 1px;
}

/* Additional Visual Effects */
.hero-content {
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

/* Neon Text Shadow */
.glitch {
    text-shadow: 
        0 0 10px var(--glow-primary),
        0 0 20px var(--glow-primary),
        0 0 30px var(--glow-primary),
        0 0 40px var(--glow-primary);
}

/* Card Hover States */
.weapon-card {
    transform-style: preserve-3d;
    transition: transform 0.3s, box-shadow 0.3s;
}

.weapon-card:hover {
    transform: translateY(-10px) rotateX(5deg);
}

/* Loading Animation */
@keyframes loadingBar {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--primary);
    animation: loadingBar 3s ease-in-out infinite;
    z-index: 10001;
}

/* Cyber Line Animations */
@keyframes slideRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@keyframes slideLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hex-frame {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.hex-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--primary);
    transform: rotate(45deg);
}

.data-node {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: float 8s ease-in-out infinite;
}

.data-node::before,
.data-node::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
}

.data-node::before {
    animation: pulse 2s ease-in-out infinite;
}

.data-node::after {
    animation: pulse 2s ease-in-out infinite 0.5s;
}



/* Glitch Button Effect */
.deploy-button,
.purchase-card-button {
    position: relative;
    isolation: isolate;
}

.deploy-button::before,
.purchase-card-button::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translateX(-2px);
    opacity: 0;
    transition: opacity 0.3s;
}

.deploy-button:hover::before,
.purchase-card-button:hover::before {
    opacity: 0.8;
    animation: glitch-button 0.3s;
}

@keyframes glitch-button {
    0% { transform: translateX(-2px); }
    33% { transform: translateX(2px); }
    66% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

/* Status Badge Enhancement */
.status-badge {
    position: relative;
    overflow: hidden;
}

/* Green status indicators */
.status-indicator.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-badge.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
}

.status-badge.active .pulse {
    background: #00ff88;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 85, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

/* Feature Hint */
.feature-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Tooltip System */
.feature-item.has-tooltip {
    cursor: pointer;
}

.feature-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-darker);
    border: 1px solid var(--primary);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8),
                0 0 30px var(--glow-primary);
}

.feature-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--primary);
}

.feature-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-1px);
    border: 7px solid transparent;
    border-top-color: var(--bg-darker);
}

.feature-item.has-tooltip:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-header {
    font-family: 'Orbitron', monospace;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 0, 85, 0.3);
}

.tooltip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-list li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.tooltip-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0.6;
}

/* Large tooltip for ESP */
.feature-tooltip.large {
    min-width: 250px;
}

/* Adjust position for edge cases */
.feature-item:first-child .feature-tooltip {
    left: 0;
    transform: translateX(0);
}

.feature-item:first-child:hover .feature-tooltip {
    transform: translateX(0) translateY(-5px);
}

.feature-item:last-child .feature-tooltip {
    left: auto;
    right: 0;
    transform: translateX(0);
}

.feature-item:last-child:hover .feature-tooltip {
    transform: translateX(0) translateY(-5px);
}

/* Responsive tooltips */
@media (max-width: 768px) {
    .feature-tooltip {
        position: fixed;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-10px) !important;
        max-width: 90vw;
    }
    
    .feature-item:hover .feature-tooltip {
        transform: translateX(-50%) translateY(-15px) !important;
    }
}