body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: #eee;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    min-height: 100vh;
    background-attachment: fixed;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    animation: noise 8s infinite steps(12);
}

@keyframes noise {
    0%,100% { transform: translate(0,0); }
    10% { transform: translate(-2px,-2px); }
    20% { transform: translate(2px,2px); }
    30% { transform: translate(-1px,1px); }
    40% { transform: translate(1px,-1px); }
    50% { transform: translate(-3px,0); }
    60% { transform: translate(3px,0); }
    70% { transform: translate(0,-3px); }
    80% { transform: translate(0,3px); }
    90% { transform: translate(2px,-2px); }
}

h1 {
    text-align: center;
    padding: 40px 20px 20px;
    margin: 0;
    font-size: 2.6rem;
    background: linear-gradient(90deg, #ff0044, #ff8800, #ffff00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255,0,80,0.6);
}

p.intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #ffcccc;
    text-shadow: 0 1px 4px #000;
}

#grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    padding: 0 20px 60px;
    max-width: 1300px;
    margin: 0 auto;
}

#grid > div {
    background: rgba(20, 0, 0, 0.75);
    border: 1px solid #ff004488;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px rgba(255,0,68,0.18);
    transition: transform 0.15s, box-shadow 0.3s;
}

#grid > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255,0,80,0.35);
}

#grid > div > div:first-child {
    height: 190px;
    background: linear-gradient(to bottom, #222, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #888;
    border-bottom: 3px solid #ff0044;
}

#grid h2 {
    margin: 16px 16px 12px;
    font-size: 1.35rem;
    line-height: 1.35;
    color: #ffdd44;
    text-shadow: 0 1px 3px #000;
    min-height: 80px;
}

a.button {
    display: block;
    margin: 0 16px 20px;
    padding: 14px;
    background: linear-gradient(90deg, #ffd500, #ff3366);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255,0,68,0.4);
    transition: all 0.2s;
}

a.button:hover {
    background: linear-gradient(90deg, #ff3366, #ff6699);
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(255,51,102,0.6);
}