/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    
    --accent-primary: #00f0ff;
    --accent-secondary: #7c3aed;
    --accent-tertiary: #f472b6;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-primary: 0 0 30px rgba(0, 240, 255, 0.3);
    --glow-secondary: 0 0 30px rgba(124, 58, 237, 0.3);
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Particle Background ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    color: var(--accent-primary);
    font-size: 1.75rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-primary); }
    50% { text-shadow: 0 0 20px var(--accent-primary), 0 0 40px var(--accent-primary); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    box-shadow: var(--glow-primary);
}

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

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-tertiary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-primary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(36px, 9999px, 9px, 0); }
    5% { clip: rect(25px, 9999px, 99px, 0); }
    10% { clip: rect(50px, 9999px, 102px, 0); }
    15% { clip: rect(10px, 9999px, 92px, 0); }
    20% { clip: rect(121px, 9999px, 13px, 0); }
    25% { clip: rect(40px, 9999px, 62px, 0); }
    30% { clip: rect(94px, 9999px, 53px, 0); }
    35% { clip: rect(58px, 9999px, 33px, 0); }
    40% { clip: rect(16px, 9999px, 89px, 0); }
    45% { clip: rect(2px, 9999px, 43px, 0); }
    50% { clip: rect(16px, 9999px, 68px, 0); }
    55% { clip: rect(12px, 9999px, 8px, 0); }
    60% { clip: rect(71px, 9999px, 46px, 0); }
    65% { clip: rect(138px, 9999px, 61px, 0); }
    70% { clip: rect(40px, 9999px, 96px, 0); }
    75% { clip: rect(47px, 9999px, 94px, 0); }
    80% { clip: rect(82px, 9999px, 30px, 0); }
    85% { clip: rect(23px, 9999px, 84px, 0); }
    90% { clip: rect(6px, 9999px, 23px, 0); }
    95% { clip: rect(53px, 9999px, 21px, 0); }
    100% { clip: rect(67px, 9999px, 74px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(42px, 9999px, 97px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.cyber-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.cyber-grid::before,
.cyber-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 50%;
}

.cyber-grid::before {
    width: 300px;
    height: 300px;
}

.cyber-grid::after {
    width: 200px;
    height: 200px;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    left: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green { background: var(--success); }
.status-dot.yellow { background: var(--warning); }
.status-dot.red { background: var(--danger); }

.card-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-profit {
    font-size: 0.9rem;
    color: var(--success);
}

/* ===== Dashboard Section ===== */
.dashboard-section {
    padding: 6rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.dashboard-grid {
    display: grid;
    gap: 1.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.stat-icon.blue { background: rgba(0, 240, 255, 0.1); color: var(--accent-primary); }
.stat-icon.purple { background: rgba(124, 58, 237, 0.1); color: var(--accent-secondary); }
.stat-icon.cyan { background: rgba(0, 240, 255, 0.1); color: var(--accent-primary); }
.stat-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--success); }

.stat-info {
    display: flex;
    flex-direction: column;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-number.green { color: var(--success); }
.stat-number.red { color: var(--danger); }

/* Table Cards */
.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.table-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.secondary {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-secondary);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(255, 255, 255, 0.02);
}

th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.empty-row td {
    padding: 3rem;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.empty-state svg {
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.empty-state span {
    font-size: 0.85rem;
}

/* Scanner Card */
.scanner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.scan-icon {
    color: var(--accent-primary);
    animation: spin 2s linear infinite;
}

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

.scanner-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.status-indicator.active {
    background: var(--success);
    animation: pulse 2s infinite;
}

.scanner-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    padding: 1.5rem;
}

.scanner-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scanner-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scanner-stat .label {
    color: var(--text-muted);
}

.scanner-stat .value {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent-primary);
}

.scanner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.radar::before,
.radar::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 50%;
}

.radar::before {
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
}

.radar::after {
    top: 37.5%;
    left: 37.5%;
    width: 25%;
    height: 25%;
}

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    transform-origin: left center;
    animation: radar-sweep 2s linear infinite;
}

@keyframes radar-sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== About Section ===== */
.about-section {
    padding: 6rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-primary);
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.tech-header {
    margin-bottom: 1.5rem;
}

.tech-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
}

.tech-item .tech-icon {
    font-size: 1.25rem;
}

.mode-cards {
    display: flex;
    gap: 1rem;
}

.mode-card {
    flex: 1;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
}

.mode-card.safe {
    border-color: var(--success);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.mode-card.balanced {
    border-color: var(--warning);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.mode-card.aggressive {
    border-color: var(--danger);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.mode-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mode-card.safe .mode-name { color: var(--success); }
.mode-card.balanced .mode-name { color: var(--warning); }
.mode-card.aggressive .mode-name { color: var(--danger); }

.mode-wr {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== How to Buy Section ===== */
.buy-section {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ca-container {
    margin-bottom: 4rem;
}

.ca-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--glow-primary);
}

.ca-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.ca-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--bg-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.ca-address span {
    font-family: monospace;
    font-size: 1rem;
    color: var(--text-primary);
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.copy-btn:hover {
    background: rgba(0, 240, 255, 0.1);
}

.ca-network {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.network-badge {
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--accent-secondary);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 0.25rem 1rem;
    border-radius: 50px;
}

.step-icon {
    margin: 1.5rem 0;
    color: var(--accent-primary);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.buy-cta {
    text-align: center;
}

/* ===== Community Section ===== */
.community-section {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s;
}

.social-card:hover {
    transform: translateY(-3px);
}

.social-card.twitter:hover {
    border-color: #1d9bf0;
    box-shadow: 0 0 30px rgba(29, 155, 240, 0.2);
}

.social-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.2);
}

.social-card.pumpfun:hover {
    border-color: var(--accent-secondary);
    box-shadow: var(--glow-secondary);
}

.social-card.dex:hover {
    border-color: var(--success);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

.social-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.social-card.twitter .social-icon { background: rgba(29, 155, 240, 0.1); color: #1d9bf0; }
.social-card.telegram .social-icon { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
.social-card.pumpfun .social-icon { background: rgba(124, 58, 237, 0.1); }
.social-card.dex .social-icon { background: rgba(34, 197, 94, 0.1); color: var(--success); }

.pump-icon {
    font-size: 1.75rem;
}

.social-info {
    flex: 1;
}

.social-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.social-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.3s;
}

.social-card:hover .social-arrow {
    transform: translateX(5px);
    color: var(--accent-primary);
}

/* ===== Footer ===== */
.footer {
    padding: 4rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .scanner-content {
        grid-template-columns: 1fr;
    }
    
    .scanner-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-section,
    .about-section,
    .buy-section,
    .community-section {
        padding: 4rem 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tech-list {
        grid-template-columns: 1fr;
    }
    
    .mode-cards {
        flex-direction: column;
    }
}

/* ===== Market Scanner Styles ===== */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-secondary);
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.highlight-card {
    border-color: rgba(245, 158, 11, 0.3) !important;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

.badge.hot {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.search-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.signal-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.signal-badge.buy {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.signal-badge.sell {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.signal-badge.hold {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.signal-badge.strong-buy {
    background: rgba(34, 197, 94, 0.3);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.6);
    animation: glow-green 2s infinite;
}

@keyframes glow-green {
    0%, 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.6); }
}

.confidence-bar {
    width: 80px;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.confidence-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.confidence-fill.high { background: linear-gradient(90deg, #22c55e, #4ade80); }
.confidence-fill.medium { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.confidence-fill.low { background: linear-gradient(90deg, #ef4444, #f87171); }

.price-cell {
    font-family: var(--font-display);
    font-weight: 600;
}

.price-cell.high { color: #22c55e; }
.price-cell.medium { color: #f59e0b; }
.price-cell.low { color: var(--text-secondary); }

.volume-cell {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.market-question {
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.time-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-secondary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gain-cell {
    font-family: var(--font-display);
    font-weight: 700;
}

.gain-cell.positive { color: #22c55e; }
.gain-cell.negative { color: #ef4444; }

.prediction-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prediction-badge.yes {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.prediction-badge.no {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* ===== Filter Section ===== */
.filter-section {
    margin-bottom: 1.5rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-color: transparent;
    color: var(--bg-primary);
    font-weight: 600;
}

/* ===== Enhanced Table Styles ===== */
.market-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.hot-badge {
    font-size: 0.8rem;
    animation: pulse-glow 1s infinite;
}

.hot-row {
    background: rgba(245, 158, 11, 0.05);
}

.hot-row:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* AI Score */
.ai-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-score .score-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    min-width: 28px;
}

.ai-score.high .score-value { color: #22c55e; }
.ai-score.medium .score-value { color: #f59e0b; }
.ai-score.low .score-value { color: #ef4444; }

.ai-score .score-bar {
    width: 50px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.ai-score .score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.ai-score .ai-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Sentiment Badge */
.sentiment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sentiment-badge.bullish {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.sentiment-badge.bearish {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.sentiment-badge.neutral {
    background: rgba(161, 161, 170, 0.15);
    color: #a1a1aa;
}

/* Risk Badge */
.risk-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-badge.verylow {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.risk-badge.low {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.risk-badge.medium {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.risk-badge.high {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.risk-badge.veryhigh {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    animation: pulse-badge 1.5s infinite;
}

/* Watch Signal */
.signal-badge.watch {
    background: rgba(124, 58, 237, 0.2);
    color: var(--accent-secondary);
    border: 1px solid rgba(124, 58, 237, 0.4);
}

/* Opportunity Row */
.opportunity-row {
    background: rgba(34, 197, 94, 0.03);
}

.opportunity-row:hover {
    background: rgba(34, 197, 94, 0.08);
}

/* Table Row Animation */
tbody tr {
    transition: all 0.2s ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Mode Info */
.mode-info {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mode-info strong {
    color: var(--accent-primary);
}

/* Fast Resolve */
.fast-resolve {
    background: rgba(245, 158, 11, 0.08) !important;
}

.fast-badge {
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.opp-badge {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.has-opportunity {
    background: rgba(34, 197, 94, 0.05);
}

.time-badge.urgent {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation: pulse-badge 1s infinite;
}

.profit-cell {
    font-family: var(--font-display);
    font-weight: 700;
}

.profit-cell.positive {
    color: #22c55e;
}

.size-cell {
    font-family: var(--font-display);
    color: var(--text-secondary);
}

/* Responsive Filter */
@media (max-width: 768px) {
    .filter-container {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .market-question {
        max-width: 150px;
    }
    
    .mode-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}
