body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #1d2671, #c33764);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: white;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.45);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    margin-top: 30px;
    color: #00e676;
}

p {
    line-height: 1.6;
}

ul {
    margin-left: 20px;
}

li {
    margin: 8px 0;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.links a {
    padding: 10px 18px;
    background: #00e676;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.2s ease;
}

.links a:hover {
    background: #00c853;
    transform: translateY(-2px);
}

code {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 5px;
    font-family: monospace;
}

footer {
    margin-top: 40px;
    text-align: center;
    opacity: 0.85;
    font-size: 14px;
}