/* TechniqueHow Snapchat Online or Age Checker Styles */

.thsnponlcre-wrapper {
    max-width: 640px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.thsnponlcre-tool {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
    text-align: center;
}

.thsnponlcre-label {
    font-weight: 600;
    font-size: 1rem;
}

.thsnponlcre-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    border: 2px solid #ffd54f;
    outline: none;
    font-size: 16px; /* prevent zoom on mobile */
    box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.2);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
    background: linear-gradient(135deg, #fffaf0, #fff);
}

.thsnponlcre-input:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.25);
    transform: translateY(-1px);
}

.thsnponlcre-button {
    margin: 0.2rem auto 0;
    padding: 0.7rem 2.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    background-image: linear-gradient(135deg, #ff9800, #ff4081);
    color: #fff;
    box-shadow: 0 10px 18px rgba(255, 152, 0, 0.35);
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
}

.thsnponlcre-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(255, 152, 0, 0.4);
    filter: brightness(1.05);
}

.thsnponlcre-button:active {
    transform: translateY(1px);
    box-shadow: 0 6px 12px rgba(255, 152, 0, 0.3);
}

.thsnponlcre-brand {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff5722;
}

/* Spinner (circular, visible only while loading) */
.thsnponlcre-spinner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid rgba(255, 193, 7, 0.25);
    border-top-color: #ff4081;
    margin: 0.3rem auto;
    animation: thsnponlcre-spin 0.7s linear infinite;
}

@keyframes thsnponlcre-spin {
    to { transform: rotate(360deg); }
}

.thsnponlcre-message {
    min-height: 1.2rem;
    font-size: 0.9rem;
    color: #e53935;
}

/* Result card */
.thsnponlcre-results {
    margin-top: 1.2rem;
}

.thsnponlcre-card {
    border-radius: 1.4rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, #ffecb3, #ffccbc, #f8bbd0);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
    color: #212121;
}

.thsnponlcre-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.6rem;
}

.thsnponlcre-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    background: #fff;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
}

.thsnponlcre-title-wrap {
    flex: 1;
    text-align: left;
}

.thsnponlcre-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.thsnponlcre-followers {
    font-size: 0.88rem;
    margin-top: 0.2rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: #e91e63;
}

/* Info list */
.thsnponlcre-info-list {
    list-style: none;
    padding: 0.4rem 0 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem 1rem;
}

.thsnponlcre-info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1rem;
    padding: 0.5rem 0.65rem;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.45);
}

.thsnponlcre-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
    margin-bottom: 0.15rem;
}

.thsnponlcre-info-value {
    font-size: 0.94rem;
    font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .thsnponlcre-wrapper {
        padding: 0 0.4rem;
    }

    .thsnponlcre-card {
        padding: 0.9rem 0.8rem;
    }

    .thsnponlcre-name {
        font-size: 1rem;
    }

    .thsnponlcre-followers {
        font-size: 0.78rem;
    }

    .thsnponlcre-info-list {
        grid-template-columns: 1fr;
    }

    .thsnponlcre-info-item {
        padding: 0.45rem 0.6rem;
    }

    .thsnponlcre-info-value {
        font-size: 0.9rem;
    }
}
