.anti-fraud-page {
    min-height: 100vh;
    color: #334155;
    background: var(--gmp-light);
    line-height: 1.8;
}

.anti-fraud-page form {
    margin: 0;
}

.anti-fraud-page .anti-fraud-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 80px;
    border-bottom: 1px solid rgba(193, 39, 45, 0.05);
    background:
        radial-gradient(circle at 80% 20%, rgba(193, 39, 45, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(var(--gmp-primary-rgb), 0.05) 0%, transparent 30%),
        var(--gmp-warm);
}

.anti-fraud-page .anti-fraud-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    color: var(--gmp-secondary);
    background: rgba(193, 39, 45, 0.1);
    font-size: 0.875rem;
    font-weight: 700;
}

.anti-fraud-page .anti-fraud-hero__title {
    margin: 0 0 15px;
    color: var(--gmp-dark-deep);
    font-family: 'Outfit', 'Noto Sans TC', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

.anti-fraud-page .anti-fraud-hero__title span {
    background: linear-gradient(135deg, var(--gmp-secondary) 0%, #e11d48 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.anti-fraud-page .anti-fraud-hero__summary {
    max-width: 820px;
    margin: 0;
    color: var(--gmp-slate);
}

.anti-fraud-page .anti-fraud-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 9px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--gmp-white);
    background: var(--gmp-secondary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.anti-fraud-page .anti-fraud-call-button:hover {
    border-color: var(--gmp-secondary);
    color: var(--gmp-secondary);
    background: transparent;
    transform: translateY(-2px);
}

.anti-fraud-page .anti-fraud-call-button:focus-visible,
.anti-fraud-page .anti-fraud-contact a:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(193, 39, 45, 0.28);
    outline-offset: 3px;
}

.anti-fraud-page .anti-fraud-content {
    padding: 3rem 0;
    background: var(--gmp-white);
}

.anti-fraud-page .anti-fraud-bento {
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.anti-fraud-page .anti-fraud-card {
    height: 100%;
    padding: 35px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 24px;
    background: var(--gmp-white);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.anti-fraud-page .anti-fraud-card:hover {
    border-color: rgba(193, 39, 45, 0.12);
    box-shadow: 0 20px 40px rgba(193, 39, 45, 0.06);
    transform: translateY(-5px);
}

.anti-fraud-page .anti-fraud-card--alert {
    border-left: 5px solid var(--gmp-secondary);
}

.anti-fraud-page .anti-fraud-card--success {
    border-left: 5px solid var(--gmp-primary);
}

.anti-fraud-page .anti-fraud-card h2 {
    margin: 0 0 1rem;
    color: var(--gmp-dark-deep);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.45;
}

.anti-fraud-page .anti-fraud-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 15px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.anti-fraud-page .anti-fraud-tag--alert {
    color: var(--gmp-secondary);
    background: rgba(193, 39, 45, 0.1);
}

.anti-fraud-page .anti-fraud-tag--success {
    color: var(--gmp-primary);
    background: rgba(var(--gmp-primary-rgb), 0.1);
}

.anti-fraud-page .anti-fraud-card__muted {
    margin: 0 0 1rem;
    color: var(--gmp-slate);
}

.anti-fraud-page .anti-fraud-card__warning {
    margin: 0 0 1rem;
    color: var(--gmp-secondary);
    font-weight: 700;
}

.anti-fraud-page .anti-fraud-card__note {
    margin: 0;
    color: var(--gmp-slate);
    font-size: 0.875rem;
}

.anti-fraud-page .anti-fraud-clarification-images,
.anti-fraud-page .anti-fraud-scam-images,
.anti-fraud-page .anti-fraud-package-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anti-fraud-page .anti-fraud-clarification-images {
    flex-direction: column;
    gap: 1rem;
}

.anti-fraud-page .anti-fraud-clarification-images img {
    display: block;
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.anti-fraud-page .anti-fraud-clarification-images img:last-child {
    max-height: 50px;
}

.anti-fraud-page .anti-fraud-scam-images {
    gap: 1rem;
    margin-top: 1.5rem;
}

.anti-fraud-page .anti-fraud-scam-images img {
    display: block;
    width: calc(50% - 0.5rem);
    max-width: 190px;
    height: 120px;
    object-fit: contain;
}

.anti-fraud-page .anti-fraud-check-list {
    margin: 0;
    padding: 0;
    color: var(--gmp-slate);
    font-size: 0.9rem;
    list-style: none;
}

.anti-fraud-page .anti-fraud-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
}

.anti-fraud-page .anti-fraud-check-list i {
    margin-top: 0.45rem;
    color: var(--gmp-primary);
}

.anti-fraud-page .anti-fraud-package-image {
    margin-top: 1.5rem;
}

.anti-fraud-page .anti-fraud-package-image img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: 120px;
    object-fit: contain;
}

.anti-fraud-page .anti-fraud-statement {
    margin-top: 1rem;
    padding: 1rem;
    border-left: 3px solid var(--gmp-secondary);
    border-radius: 8px;
    color: var(--gmp-secondary);
    background: rgba(193, 39, 45, 0.1);
}

.anti-fraud-page .anti-fraud-statement h3 {
    margin: 0 0 0.25rem;
    color: var(--gmp-secondary);
    font-size: 1rem;
    font-weight: 800;
}

.anti-fraud-page .anti-fraud-statement p {
    margin: 0;
    font-size: 0.9rem;
}

.anti-fraud-page .anti-fraud-employee-image {
    display: block;
    width: 100%;
    max-width: 320px;
    max-height: 180px;
    margin: 0 auto;
    object-fit: contain;
}

.anti-fraud-page .anti-fraud-poster-card {
    text-align: center;
}

.anti-fraud-page .anti-fraud-poster-card h2 i {
    margin-right: 0.5rem;
    color: var(--gmp-primary);
}

.anti-fraud-page .anti-fraud-poster {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.anti-fraud-page .anti-fraud-contact {
    margin: 1.5rem 0 0;
    color: var(--gmp-slate);
    font-size: 0.9rem;
}

.anti-fraud-page .anti-fraud-contact a {
    color: var(--gmp-primary);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.anti-fraud-page .anti-fraud-contact a:hover {
    color: #005f31;
}

.anti-fraud-page + footer {
    margin-top: 100px;
}

@media (max-width: 991.98px) {
    .anti-fraud-page .anti-fraud-hero {
        padding-top: 150px;
    }

}

@media (max-width: 767.98px) {
    .anti-fraud-page .anti-fraud-hero {
        padding: 130px 0 90px;
    }

    .anti-fraud-page .anti-fraud-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .anti-fraud-page .anti-fraud-card:hover {
        transform: none;
    }

    .anti-fraud-page .anti-fraud-card h2 {
        font-size: 1.3rem;
    }

    .anti-fraud-page .anti-fraud-call-button {
        width: 100%;
        max-width: 320px;
    }

    .anti-fraud-page .anti-fraud-clarification-images img {
        max-width: 480px;
    }
}

@media (max-width: 419.98px) {
    .anti-fraud-page .anti-fraud-hero__title {
        font-size: 2rem;
    }

    .anti-fraud-page .anti-fraud-card {
        padding: 26px 16px;
    }

    .anti-fraud-page .anti-fraud-scam-images {
        align-items: stretch;
        flex-direction: column;
    }

    .anti-fraud-page .anti-fraud-scam-images img {
        width: 100%;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .anti-fraud-page .anti-fraud-card,
    .anti-fraud-page .anti-fraud-call-button {
        transition: none;
    }
}
