.as-hero {
    position: relative;
    padding: 80px 0 60px;
    background: #f6f7fb;
    border-bottom: 1px solid #e6ebf3;
    overflow: hidden;
}

.as-hero-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.as-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 22px;
}

.as-hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a202c;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.as-hero-desc {
    font-size: 16.5px;
    line-height: 1.7;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
}

.as-section {
    position: relative;
    padding: 56px 0 90px;
    background: #ffffff;
}

.as-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.as-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 24px;
    padding: 48px 44px 40px;
    box-shadow: 0 20px 50px rgba(21, 101, 192, 0.07);
    text-align: center;
}

[data-theme="dark"] .as-hero {
    background: #14171f;
    border-bottom-color: #333949;
}

[data-theme="dark"] .as-hero-eyebrow {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .as-hero-title {
    color: #e6eaf2;
}

[data-theme="dark"] .as-hero-desc {
    color: #a2acc0;
}

[data-theme="dark"] .as-section {
    background: #1a1e29;
}

[data-theme="dark"] .as-card {
    background: #1f2430;
    border-color: #333949;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .as-hero {
        padding: 56px 0 44px;
    }

    .as-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .as-section {
        padding: 40px 0 64px;
    }

    .as-card {
        padding: 34px 22px 28px;
        border-radius: 18px;
    }
}

.status-icon-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.14);
    animation: asPulse 2s ease-out infinite;
}

.status-icon-pulse.status-pending {
    background: rgba(234, 179, 8, 0.16);
}

.status-icon-pulse.status-rejected {
    background: rgba(220, 38, 38, 0.14);
}

.status-icon-pulse.status-deleted {
    background: rgba(100, 116, 139, 0.16);
}

@keyframes asPulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

.status-icon-container {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon-container.status-pending {
    background: rgba(234, 179, 8, 0.12);
}

.status-icon-container.status-rejected {
    background: rgba(220, 38, 38, 0.1);
}

.status-icon-container.status-deleted {
    background: rgba(100, 116, 139, 0.12);
}

.status-icon {
    font-size: 38px;
    color: #1565C0;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.status-icon.pending {
    color: #ca8a04;
}

.status-icon.success {
    color: #16a34a;
}

.status-icon.rejected {
    color: #dc2626;
}

.status-icon.deleted,
.status-icon.unknown {
    color: #64748b;
}

.status-icon.animate-in {
    opacity: 1;
    transform: scale(1);
}

.status-message {
    margin-bottom: 34px;
}

.status-message h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.status-message p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.animated-title.animate-in,
.animated-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.application-info {
    text-align: left;
    background: #f6f8fc;
    border: 1px solid #eaeef5;
    border-radius: 18px;
    padding: 24px 26px;
    margin-bottom: 26px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eaeef5;
}

.info-header i {
    color: #1565C0;
    font-size: 16px;
}

.info-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-row {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.info-row.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.info-row + .info-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #dbe3ef;
}

.info-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.info-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    font-size: 12.5px;
    color: #94a3b8;
    font-weight: 600;
}

.info-value {
    font-size: 14.5px;
    color: #1a202c;
    font-weight: 600;
    word-break: break-word;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
}

.status-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.status-badge.pending {
    background: rgba(234, 179, 8, 0.12);
    color: #ca8a04;
}

.status-badge.approved {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.status-badge.rejected {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.status-badge.deleted,
.status-badge.unknown {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
}

.security-message {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(21, 101, 192, 0.05);
    color: #475569;
    font-size: 13.5px;
    font-weight: 500;
}

.security-message i {
    color: #1565C0;
}

[data-theme="dark"] .status-icon-pulse {
    background: rgba(66, 165, 245, 0.16);
}

[data-theme="dark"] .status-icon-container {
    background: rgba(66, 165, 245, 0.12);
}

[data-theme="dark"] .status-icon {
    color: #6cb6f5;
}

[data-theme="dark"] .status-message h2 {
    color: #e6eaf2;
}

[data-theme="dark"] .status-message p {
    color: #a2acc0;
}

[data-theme="dark"] .application-info {
    background: #1c2029;
    border-color: #333949;
}

[data-theme="dark"] .info-header {
    border-bottom-color: #333949;
}

[data-theme="dark"] .info-header i {
    color: #6cb6f5;
}

[data-theme="dark"] .info-header h3 {
    color: #e6eaf2;
}

[data-theme="dark"] .info-row + .info-row {
    border-top-color: #373d4c;
}

[data-theme="dark"] .info-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .info-label {
    color: #8b93a5;
}

[data-theme="dark"] .info-value {
    color: #e6eaf2;
}

[data-theme="dark"] .security-message {
    background: rgba(66, 165, 245, 0.08);
    color: #a2acc0;
}

[data-theme="dark"] .security-message i {
    color: #6cb6f5;
}

.info-value-copy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-hash {
    word-break: break-all;
}

.info-copy-btn {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #eaeef5;
    border-radius: 9px;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.info-copy-btn:hover {
    background: rgba(21, 101, 192, 0.06);
    border-color: #cdd9ec;
    color: #1565C0;
}

.info-copy-btn.copied {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

.as-lookup-card {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 24px;
    padding: 48px 44px 44px;
    box-shadow: 0 20px 50px rgba(21, 101, 192, 0.07);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.as-lookup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: rgba(21, 101, 192, 0.08);
    color: #1565C0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.as-lookup-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 10px;
}

.as-lookup-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 auto 28px;
    max-width: 400px;
}

.as-lookup-form {
    text-align: left;
}

.as-lookup-field {
    position: relative;
}

.as-lookup-field > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
}

.as-lookup-field input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid #dce4f0;
    border-radius: 12px;
    background: #ffffff;
    font-size: 15px;
    color: #1a202c;
    outline: none;
    letter-spacing: 0.5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.as-lookup-field input:focus {
    border-color: #1565C0;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.as-lookup-field input::placeholder {
    color: #9aa7bd;
    letter-spacing: normal;
}


.as-lookup-captcha {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.as-lookup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 14px 28px;
    border: 0;
    border-radius: 12px;
    background: #1565C0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.as-lookup-btn:hover:not(:disabled) {
    background: #0d47a1;
    transform: translateY(-2px);
}

.as-lookup-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.as-lookup-btn.loading i {
    animation: asSpin 0.7s linear infinite;
}

@keyframes asSpin {
    to { transform: rotate(360deg); }
}

[data-theme="dark"] .info-copy-btn {
    background: #1c2029;
    border-color: #373d4c;
    color: #a2acc0;
}

[data-theme="dark"] .info-copy-btn:hover {
    background: rgba(66, 165, 245, 0.1);
    border-color: #33507a;
    color: #6cb6f5;
}

[data-theme="dark"] .info-copy-btn.copied {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

[data-theme="dark"] .as-lookup-card {
    background: #1f2430;
    border-color: #333949;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .as-lookup-icon {
    background: rgba(66, 165, 245, 0.12);
    color: #6cb6f5;
}

[data-theme="dark"] .as-lookup-title {
    color: #e6eaf2;
}

[data-theme="dark"] .as-lookup-desc {
    color: #a2acc0;
}

[data-theme="dark"] .as-lookup-field input {
    background: #1c2029;
    border-color: #373d4c;
    color: #e6eaf2;
}

[data-theme="dark"] .as-lookup-field input:focus {
    border-color: #42A5F5;
    box-shadow: 0 0 0 4px rgba(66, 165, 245, 0.12);
}

[data-theme="dark"] .as-lookup-field input::placeholder {
    color: #6b7488;
}

@media (max-width: 640px) {
    .status-message h2 {
        font-size: 20px;
    }

    .application-info {
        padding: 20px 18px;
    }

    .as-lookup-card {
        padding: 34px 22px 28px;
        border-radius: 18px;
    }
}
