body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a192f;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 960px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 40px;
    text-shadow: 0 0 5px #64ffda, 0 0 10px #ffc107;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background: #112240;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.5);
}

.card a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    padding: 40px 20px;
}

.card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
}