* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: #fff;
    background:
        radial-gradient(circle at top, rgba(229, 9, 20, 0.25) 0%, transparent 38%),
        linear-gradient(135deg, #000, #130000, #000);
    padding: 22px;
    padding-bottom: 45px;
}

.header {
    max-width: 850px;
    margin: 0 auto 24px;
    text-align: center;
    padding-top: 10px;
}

.logo {
    display: block;
    width: 78px;
    height: 78px;
    max-width: 78px;
    max-height: 78px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 14px;
    box-shadow: 0 0 22px rgba(229, 9, 20, 0.35);
    border: 2px solid rgba(229, 9, 20, 0.45);
}

.header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.header p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}

.card {
    max-width: 850px;
    margin: 0 auto 18px;
    background: rgba(15, 15, 15, 0.88);
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.card h2 {
    font-size: 21px;
    margin-bottom: 13px;
    color: #fff;
}

.card p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.65;
}

.card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.card li {
    position: relative;
    padding-left: 20px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.55;
}

.card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e50914;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.7);
}

.card strong {
    color: #fff;
}

.btn {
    display: inline-block;
    margin-top: 16px;
    padding: 11px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e50914, #a80009);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 8px 22px rgba(229, 9, 20, 0.28);
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.small {
    max-width: 850px;
    margin: 22px auto 0;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 600px) {
    body {
        padding: 16px;
        padding-bottom: 38px;
    }

    .header {
        margin-bottom: 18px;
        padding-top: 8px;
    }

    .logo {
        width: 66px;
        height: 66px;
        max-width: 66px;
        max-height: 66px;
        border-radius: 50%;
    }

    .header h1 {
        font-size: 26px;
    }

    .header p {
        font-size: 14px;
    }

    .card {
        padding: 18px;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    .card h2 {
        font-size: 18px;
    }

    .card li,
    .card p {
        font-size: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .small {
        font-size: 12px;
    }
}
