:root {
    --green: #18A558;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: linear-gradient(165deg, #2DD881, #1FAF5F, var(--green));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    text-align: center;
    padding: 3rem;
    max-width: 650px;
}

.logo {
    width: 80px;
    margin: 0 auto 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle,
.description {
    color: var(--white-90);
    margin-bottom: 2.5rem;
}

.description {
    line-height: 1.7;
}

.swagger-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--green);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.swagger-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.swagger-link svg {
    width: 20px;
    height: 20px;
}

.footer {
    margin-top: 3rem;
    color: var(--white-70);
    font-size: 0.85rem;
}
