body {
    margin: 0;
    background: black;
    color: white;
    font-family: monospace;
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

h1 {
    color: #2ecc71;
    font-size: 3rem;
    text-shadow:
        0 0 10px #2ecc71,
        0 0 20px #2ecc71,
        0 0 40px #2ecc71;
    margin-bottom: 50px;
    letter-spacing: 5px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    width: 100%;
}

.card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all .3s;
}

.card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-bottom: 2px solid #333;
}

.card-info {
    padding: 20px;
    text-align: center;
}

.card h3 {
    color: #2ecc71;
    margin: 0;
}

.card p {
    color: #aaa;
    font-size: 0.9rem;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #2ecc71;
    box-shadow: 0 0 20px #2ecc71;
}