/* =====================================================
   Auto Shortlink Ultimate — Frontend Styles v1.0.3
   ===================================================== */

.asu-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Card */
.asu-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(102, 126, 234, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    box-sizing: border-box;
}

/* Shimmer */
.asu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    pointer-events: none;
}

/* Icon */
.asu-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    margin-bottom: 14px;
}

.asu-icon {
    width: 26px;
    height: 26px;
    color: #fff;
}

/* Label */
.asu-label {
    margin: 0 0 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* Button */
.asu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #5a3e9b;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    word-break: break-all;
    transition:
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.22s ease,
        background 0.2s ease,
        color 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    max-width: 100%;
}

.asu-btn:hover,
.asu-btn:focus {
    background: #f0ebff;
    color: #4527a0;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    outline: none;
}

.asu-btn:active {
    transform: translateY(0) scale(0.98);
}

.asu-btn-icon {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    opacity: 0.6;
}

/* Secure message */
.asu-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 20px 0 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Error variant */
.asu-card--error {
    background: linear-gradient(135deg, #ff6b6b 0%, #c0392b 100%);
    box-shadow:
        0 10px 40px rgba(192, 57, 43, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 28px 28px 24px;
}

.asu-error-msg {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 540px) {
    .asu-card {
        padding: 28px 18px 22px;
        border-radius: 14px;
    }
    .asu-btn {
        font-size: 0.85rem;
        padding: 12px 18px;
    }
}
