/* --- GLOBALA STILAR --- */
:root {
    --bg-color: #0a0a0c;
    --card-bg: #121216;
    --matrix-red: #ff2a2a;
    --matrix-red-glow: rgba(255, 42, 42, 0.3);
    --text-main: #e2e2e9;
    --text-muted: #666675;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Share Tech Mono', monospace; /* Hacker-typsnitt för brödtext */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem;
}

/* --- HEADER & LOGO --- */
header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px id solid var(--text-muted);
    padding-bottom: 1.5rem;
}

.logo {
    font-family: 'Permanent Marker', cursive; /* Graffiti-känsla */
    font-size: 3.5rem;
    color: var(--matrix-red);
    text-shadow: 0 0 10px var(--matrix-red-glow), 0 0 20px var(--matrix-red-glow);
    letter-spacing: 2px;
}

.logo .studio {
    font-family: 'Orbitron', sans-serif; /* Renare IT-känsla för "Studio" */
    color: var(--text-main);
    font-size: 2.5rem;
    text-transform: uppercase;
    text-shadow: none;
}

.status-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* --- GRID & KORT (RESPONSIV) --- */
main, main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid #1f1f26;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover-effekt (Cyber-glöd) */
.card:hover {
    transform: translateY(-5px);
    border-color: var(--matrix-red);
    box-shadow: 0 10px 20px var(--matrix-red-glow);
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card:hover h2 {
    color: var(--matrix-red);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.directory-path {
    font-size: 0.8rem;
    color: var(--matrix-red);
    opacity: 0.6;
    display: block;
    border-top: 1px dashed #1f1f26;
    padding-top: 0.5rem;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #1f1f26;
}
