@font-face {
    font-family: "NSS05";
    src: url(PixeloidSans-E40en.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'NSS05', sans-serif;
    background-color: #1e1e1e;
    color: #f0f0f0;
}

/* Flex layout to push footer down */
body {
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background-color: #2e222f;
    padding: 20px 0;
    text-align: center;
}

header h1 a{
    text-decoration: none;
    font-size: 2.5rem;
    color: #fff;
}

/* Main content */
content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Card styling with modern glass look */
content > div {
    background: rgba(44, 31, 42, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 13px;
    padding: 1.0rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

content > div:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Hero section */
.hero {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #323353, #905ea9);
    text-align: center;
    padding: 4rem 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 2rem;
    line-height: 1.5;
}

/* Individual cards */
.about {
    background: linear-gradient(135deg, #905ea9, #a884f3);
    font-size: 1.15rem;
}

.game {
    background: linear-gradient(135deg, #a884f3, #eaaded);
    color: #111;
    font-size: 1.15rem;
}

.notice {
    background: linear-gradient(135deg, #eaaded, #c32454);
    font-size: 1.15rem;
}

/* Footer */
footer {
    background-color: #2e222f;
    text-align: center;
    padding: 10px 20px;
    margin-top: auto;
    color: #ccc;
}

footer .social-icons a {
    color: #9e8aa1;
    font-size: 28px;
    margin: 0 12px;
    transition: transform 0.2s, color 0.2s;
}

footer .social-icons a:hover {
    color: #fff;
    transform: scale(1.3);
}

footer a {
    color: #9e8aa1;
    text-decoration: none;
    font-size: 1.4rem;
}

footer a:hover {
    color: #fff;
}

