@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg-deep: #020202;
    --bg-panel: #0b0b0b;
    --primary: #ffb000; /* Amber */
    --primary-dim: rgba(255, 176, 0, 0.1);
    --primary-glow: rgba(255, 176, 0, 0.6);
    --text-main: #b0b0b0;
    --text-white: #ffffff;
    --grid-line: rgba(255, 176, 0, 0.05);
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-deep);
    /* Cyber Grid Background */
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-main);
    font-family: 'Share Tech Mono', monospace;
    margin: 0; line-height: 1.7; font-size: 16px;
    overflow-x: hidden;
}

/* CRT Scanline Effect */
body::before {
    content: " "; display: block; position: fixed; top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255,0,0,0.06), rgba(0,255,0,0.02), rgba(0,0,255,0.06));
    z-index: 999; background-size: 100% 2px, 3px 100%; pointer-events: none;
}

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; text-transform: uppercase; color: var(--text-white); margin-top: 0; letter-spacing: 1px; }

h1 { 
    font-size: 3.5rem; color: var(--primary); 
    text-shadow: 0 0 20px var(--primary-glow);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px; margin-bottom: 40px;
}

h2 { font-size: 2rem; border-left: 5px solid var(--primary); padding-left: 15px; margin-top: 40px; color: var(--primary); }

a { color: var(--text-white); text-decoration: none; transition: 0.3s; position: relative; }
a:hover { color: var(--primary); text-shadow: 0 0 8px var(--primary); }

.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
.highlight { color: var(--primary); font-weight: bold; border-bottom: 1px dotted var(--primary); }

/* HEADER */
header {
    background: rgba(5, 5, 5, 0.95); border-bottom: 2px solid var(--primary); padding: 15px 0;
    position: sticky; top: 0; z-index: 100; backdrop-filter: blur(5px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.8);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo-img { height: 50px; filter: grayscale(100%) sepia(100%) hue-rotate(5deg) saturate(500%) contrast(1.2) drop-shadow(0 0 5px var(--primary)); transition:0.3s; }
.logo-img:hover { transform: scale(1.05); }

.nav-links a { 
    margin-left: 20px; font-size: 1rem; font-weight: 700; 
    padding: 5px 10px; border: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { 
    border-color: var(--primary); background: var(--primary-dim); color: var(--primary); 
    box-shadow: 0 0 10px var(--primary-dim);
}

/* HERO SECTION */
.hero { 
    text-align: center; padding: 100px 0; 
    background: radial-gradient(circle at center, rgba(255,176,0,0.08) 0%, transparent 70%);
    border-bottom: 1px solid #222; margin-bottom: 50px; position: relative;
}
.hero-subtitle { font-size: 1.2rem; max-width: 800px; margin: 20px auto; color: #ddd; }

.cta-btn {
    display: inline-block; background: var(--primary); color: #000; 
    font-size: 1.4rem; font-weight: 800; padding: 18px 50px; margin-top: 30px; 
    border: 2px solid var(--primary); clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    box-shadow: 0 0 20px var(--primary-glow); animation: pulse 2s infinite; text-transform: uppercase;
}
.cta-btn:hover { background: #000; color: var(--primary); box-shadow: 0 0 40px var(--primary-glow); }
@keyframes pulse { 0% { box-shadow: 0 0 10px var(--primary-glow); } 50% { box-shadow: 0 0 25px var(--primary); } 100% { box-shadow: 0 0 10px var(--primary-glow); } }

/* CARDS & PANELS */
.panel {
    background: var(--bg-panel); border: 1px solid #333; padding: 40px; margin-bottom: 40px; 
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.panel:hover { border-color: var(--primary); box-shadow: 0 0 15px var(--primary-dim); }

.panel::after {
    content: ""; position: absolute; top: 0; right: 0; width: 30px; height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--primary) 50%);
    opacity: 0.5;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }

/* STATS WIDGETS */
.stat-card { 
    background: #0e0e0e; border: 1px solid #333; padding: 20px; text-align: center;
    position: relative;
}
.stat-card:hover { border-color: var(--primary); }
.stat-val { font-size: 2.5rem; color: var(--primary); font-family: 'Rajdhani'; font-weight: 800; }
.stat-label { font-size: 0.8rem; letter-spacing: 2px; color: #666; }

/* TABLE STYLES */
table { width: 100%; border-collapse: separate; border-spacing: 0 5px; margin-top: 20px; }
th { text-align: left; background: #1a1a1a; color: var(--primary); padding: 15px; border-bottom: 2px solid var(--primary); }
td { background: #0f0f0f; padding: 15px; border: 1px solid #222; }
tr:hover td { background: #151515; border-color: #444; }

/* FAQ & REVIEWS */
.faq-item { background: #0e0e0e; border-left: 3px solid #333; padding: 20px; margin-bottom: 15px; transition: 0.3s; }
.faq-item:hover { border-left-color: var(--primary); background: #121212; }
.faq-q { color: var(--text-white); font-weight: bold; font-size: 1.1rem; margin-bottom: 10px; cursor: pointer; display: flex; align-items: center; }
.faq-q::before { content: "[?]"; color: var(--primary); margin-right: 10px; font-family: monospace; }

.review-card { background: #0f0f0f; padding: 25px; border: 1px solid #222; position: relative; }
.stars { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }

/* FOOTER */
footer {
    border-top: 1px solid #333; margin-top: 80px; padding: 40px 0; 
    background: #080808; text-align: center; font-size: 0.9rem; color: #555;
}
footer a { margin: 0 15px; color: #888; text-transform: uppercase; border-bottom: 1px solid transparent; }
footer a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
    .nav-flex { flex-direction: column; }
    .nav-links { margin-top: 20px; display: flex; flex-direction: column; width: 100%; }
    .nav-links a { margin: 5px 0; border: 1px solid #333; text-align: center; }
}
