﻿.info-page {
    padding: 20px 0 32px;
}

.info-card {
    background: linear-gradient(180deg, #17171c, #131317);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 8px;
}

.info-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: white;
    margin: 0 0 16px;
}

.info-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d5d5da;
    margin: 0;
}

    .info-intro strong {
        color: #ff5b68;
    }

.info-body {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .info-body p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #d5d5da;
        margin: 0;
    }

    .info-body strong {
        color: #ff5b68;
    }

.support-callout {
    margin-top: 24px;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(193,18,31,0.14), rgba(193,18,31,0.04));
    border: 1px solid rgba(193,18,31,0.4);
    border-radius: 14px;
    box-shadow: 0 0 24px rgba(193,18,31,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.support-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    color: white;
    margin: 0;
}

.support-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #d5d5da;
    margin: 0;
}

.support-link {
    color: #ff5b68;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,91,104,0.5);
    transition: border-color 0.15s;
}

    .support-link:hover {
        border-color: #ff5b68;
    }

.support-btn {
    align-self: flex-start;
    text-decoration: none;
}

.info-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .info-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 16px;
        background: #1b1b22;
        border: 1px solid #2a2a31;
        border-radius: 12px;
    }

.info-list-marker {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111114;
    border: 1px solid #2a2a31;
    color: #ff5b68;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-list-text {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #d5d5da;
    padding-top: 3px;
}

@media (max-width: 600px) {
    .info-card {
        padding: 18px 18px;
        border-radius: 14px;
    }

    .info-title {
        font-size: 1.4rem;
    }

    .info-list li {
        padding: 12px 14px;
        gap: 10px;
    }

    .info-list-marker {
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
    }

    .info-list-text {
        font-size: 0.88rem;
    }

    .support-callout {
        padding: 16px 16px;
        border-radius: 12px;
    }
}
