body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #121212;
    color: #f1f1f1;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 30px;
}

.logo {
    max-height: 100px;
    height: auto;
    margin-bottom: 10px;
    filter: invert(0) drop-shadow(0 0 1px #000);
}


.logo-title {
    font-size: 28px;
    font-weight: bold;
    color: #f1f1f1;
}

.link-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.link-card {
    display: block;
    padding: 20px;
    border-radius: 10px;
    background: #1e1e1e;
    color: #fff;
    text-decoration: none;
    border: 1px solid #333;
    transition: transform 0.2s, background 0.2s;
}

.link-card:hover {
    background: #2a2a2a;
    transform: scale(1.03);
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.6;
}