body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    font-weight: normal;
    color: #00eaff;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.links a {
    display: block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.links a:hover {
    background: #00eaff;
    color: #000000;
    transform: translateY(-4px);
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}