/* ===================================
   SYSTEM SPOOFER MAIN STYLES
   ================================== */

/* Root Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --bg-card: #161616;
    --text-primary: #e5e5e5;
    --text-secondary: #a0a0a0;
    --text-tertiary: #707070;
    --accent: #ff6b00;
    --accent-hover: #ff8533;
    --accent-dark: #cc5500;
    --border: #2a2a2a;
    --border-light: #333333;
    --success: #00ff88;
    --warning: #ffaa00;
    --error: #ff3333;
    --shadow: rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 0;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) var(--bg-primary);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Selection */
::selection {
    background: var(--accent);
    color: white;
}

::-moz-selection {
    background: var(--accent);
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

code {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    background: var(--bg-tertiary);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--accent);
}

/* Navigation */
nav {
    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: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--text-primary);
}

.logo-net {
    color: var(--accent);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease;
    font-family: 'IBM Plex Mono', monospace;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-dot {
    color: var(--accent);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-tertiary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Quick Info Section */
.quick-info {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.info-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 0.5rem;
}

.info-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Section Styling */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features Section */
#features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-details-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-details-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.feature-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.feature-details.hidden {
    display: none;
}

.feature-details ul {
    list-style: none;
    padding: 0;
}

.feature-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Technical Section */
.tech-section {
    background: var(--bg-secondary);
}

.tech-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tech-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.tech-card-large:hover {
    border-color: var(--accent);
}

.tech-card-large h3 {
    font-size: 1.3rem;
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.tech-card-large h3 i {
    color: var(--accent);
}

.tech-card-large p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-specs-list {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-key {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.tech-breakdown {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.tech-breakdown h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.tech-breakdown-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.tech-operations {
    display: grid;
    gap: 1.5rem;
}

.tech-op {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.tech-op:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.op-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.op-content h4 {
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 0.7rem;
    color: var(--text-primary);
}

.op-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.tech-footer-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-footer-note i {
    font-size: 1.8rem;
    color: var(--accent);
}

.tech-footer-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Download Section */
.download-section {
    background: var(--bg-primary);
}

.download-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.download-box {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.download-main {
    padding: 3rem;
}

.download-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.download-header h3 {
    font-size: 1.8rem;
    font-family: 'IBM Plex Mono', monospace;
}

.version-badge {
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'IBM Plex Mono', monospace;
}

.download-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.download-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.download-btn i {
    font-size: 1.3rem;
}

.download-btn small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
    margin-left: auto;
}

.download-specs {
    display: grid;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.spec {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.spec i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.2rem;
}

.spec div {
    display: flex;
    flex-direction: column;
}

.spec strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 0.3rem;
}

.spec span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Hash Box */
.hash-box {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
    padding: 2.5rem 3rem;
}

.hash-box h4 {
    font-size: 1.1rem;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hash-desc {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.hash-value {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.hash-value code {
    font-size: 0.85rem;
    word-break: break-all;
    color: var(--text-primary);
    background: transparent;
    padding: 0;
    line-height: 1.6;
}

.hash-verified {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--success);
    font-size: 0.9rem;
    font-family: 'IBM Plex Mono', monospace;
}

.hash-verified i {
    font-size: 1.2rem;
}

/* Real Talk Section */
.real-talk-section {
    background: var(--bg-secondary);
}

.real-talk-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.talk-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
}

.talk-box.warning {
    border-color: rgba(255, 170, 0, 0.3);
    background: rgba(255, 170, 0, 0.03);
}

.talk-box.info {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.03);
}

.talk-icon {
    flex-shrink: 0;
}

.talk-icon i {
    font-size: 2.5rem;
}

.talk-box.warning .talk-icon i {
    color: var(--warning);
}

.talk-box.info .talk-icon i {
    color: var(--success);
}

.talk-box .talk-icon i {
    color: var(--accent);
}

.talk-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.talk-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.talk-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.talk-text li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.talk-text li strong {
    color: var(--text-primary);
}

.talk-note {
    background: var(--bg-tertiary);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--accent);
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.footer-logo {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo .logo-net {
    color: var(--accent);
    font-weight: 700;
}

.footer-left p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tech-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .talk-box {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tech-op {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .op-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
        align-items: flex-start;
        box-shadow: -10px 0 30px var(--shadow);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 8rem 2rem 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .download-main {
        padding: 2rem;
    }

    .hash-box {
        padding: 2rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .container-custom {
        padding: 0 1.5rem;
    }

    .tech-main-grid {
        grid-template-columns: 1fr;
    }

    .tech-breakdown {
        padding: 2rem 1.5rem;
    }

    .tech-card-large {
        padding: 2rem 1.5rem;
    }

    .tech-op {
        padding: 1.2rem;
    }
}
.download-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* spacing between links */
}

.download-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff; /* main text white for dark theme */
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
}

.download-links a i {
    font-size: 1.3rem;
    color: orange; /* orange icon */
    margin-top: 0.1rem;
}

.download-links a:hover {
    color: #f0d97a; /* optional subtle hover text color */
}
