:root {
    --primary: #32cd32; /* Lime green */
    --secondary: #39ff14; /* Bright green */
    --background: #000000; /* Black */
    --text: #ffffff; /* White */
    --card: #0a0a0a; /* Very dark gray */
    --border: #333333; /* Dark gray */
}

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

body {
    font-family: "Source Code Pro", monospace;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.97)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500"><text x="0" y="15" fill="%23111" font-size="15">01010111 10101000 01010111 10101000 01010111 10101000 01010111 01010111 10101000 01010111 10101000</text></svg>');
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
    flex: 1;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    font-family: "Source Code Pro", monospace;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: lowercase;
    letter-spacing: 5px;
}

.logo:before {
    content: ">_";
    color: var(--primary);
    margin-right: 8px;
    font-weight: bold;
}

.tagline {
    color: var(--text);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.card {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 10px;
}

.card-title svg {
    margin-right: 0.5rem;
    stroke: var(--primary);
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

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

.label {
    font-weight: 500;
    color: var(--text);
}

.value {
    font-family: monospace;
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    text-shadow: 0 0 5px var(--secondary);
}

footer {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    color: var(--text);
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px var(--primary);
}

@media (max-width: 640px) {
    .data-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .logo {
        font-size: 2.5rem;
    }
}

/* Add a subtle pulse animation to the cards */
.card {
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px rgba(50, 205, 50, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(50, 205, 50, 0.4);
    }
}

/* Add typing cursor effect to quote */
.card:nth-child(3) .data-row::after {
    content: "|";
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


