:root {
    --bg-color: #050505;
    --text-color: #00ff41;
    /* Tech Green */
    --accent-color: #00ff41;
    --dim-color: #003b00;
    --grid-line: rgba(0, 255, 65, 0.1);
    --font-mono: 'Share Tech Mono', monospace;
}

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

/* CRT Scanline Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--dim-color);
    background: rgba(5, 5, 5, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--accent-color);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.nav a:hover {
    text-shadow: 0 0 10px var(--accent-color);
    background-color: var(--dim-color);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, rgba(5, 5, 5, 1) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.crypto-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

.hero h1 {
    font-size: 4rem;
    margin: 20px 0;
    text-shadow: 2px 2px 0px #ff00ff, -2px -2px 0px #00ffff;
    /* Glitch aesthetic colors */
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.terminal-box {
    background: rgba(0, 20, 0, 0.8);
    border: 1px solid var(--accent-color);
    padding: 20px;
    text-align: left;
    font-family: monospace;
    margin: 0 auto 40px;
    max-width: 500px;
    box-shadow: 0 0 15px var(--dim-color);
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.btn-line-neon {
    border: 2px solid #06C755;
    color: #06C755;
    font-size: 1.2rem;
    padding: 20px 50px;
}

.btn-line-neon:hover {
    background: #06C755;
    color: #000;
    box-shadow: 0 0 30px #06C755;
}

/* Sections */
.section {
    padding: 80px 0;
    border-top: 1px solid var(--dim-color);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
}

.content-box {
    border: 1px solid var(--dim-color);
    padding: 30px;
    background: rgba(0, 50, 0, 0.1);
}

/* Matrix/Grid Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-card {
    border: 1px solid var(--dim-color);
    padding: 20px;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: var(--accent-color);
    background: rgba(0, 255, 65, 0.05);
}

.tech-card h3 {
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Profile */
.profile-box {
    display: flex;
    gap: 40px;
    border: 1px solid var(--accent-color);
    padding: 30px;
}

.stats {
    border-left: 1px solid var(--dim-color);
    padding-left: 40px;
    min-width: 200px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.label {
    opacity: 0.7;
}

/* Pricing Table */
.terminal-table {
    border: 1px solid var(--dim-color);
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--dim-color);
}

.row:last-child {
    border-bottom: none;
}

.col-head {
    color: var(--bg-color);
    background-color: var(--accent-color);
    padding: 5px 10px;
}

.green {
    color: #fff;
}

/* Contact */
.text-center {
    text-align: center;
}

.line-container {
    margin: 40px 0;
}

.address-text {
    color: #555;
    font-size: 0.8rem;
    margin-top: 50px;
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid var(--dim-color);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .profile-box {
        flex-direction: column;
    }

    .stats {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--dim-color);
        padding-top: 20px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
        margin-top: 15px;
    }

    .header-container {
        flex-direction: column;
    }
}