/* style.css - Terminal Theme for sdfrgtyhujkolp.com */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600;700&family=Share+Tech+Mono&display=swap');

:root {
    --bg-main: #05080c;
    --bg-card: #090e14;
    --primary: #00ff66; /* Terminal Green */
    --secondary: #00ffff; /* Terminal Cyan */
    --border-color: rgba(0, 255, 102, 0.2);
    --text-main: #33ff33;
    --text-muted: #1f9c3e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-main);
    background-image: linear-gradient(rgba(0, 255, 102, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 255, 102, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-main);
    font-family: 'Share Tech Mono', monospace;
    line-height: 1.6;
}

header {
    background: var(--bg-card);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px var(--primary);
}

.container { max-width: 1200px; margin: 4rem auto; padding: 0 1.5rem; }

.hero {
    padding: 5rem 2rem;
    background: rgba(9, 14, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(0, 255, 102, 0.1);
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(0, 255, 102, 0.15);
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn:hover {
    background: var(--primary);
    color: var(--bg-main);
    box-shadow: 0 0 15px var(--primary);
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    background: #030508;
    margin-top: 6rem;
}
