/*
Theme Name: HIN QITU
Author: NE AGENCY
Description: Luxury dark influencer application theme with motion.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #1a1a2e, #0b0b0f);
    color: #ffffff;
    overflow-x: hidden;
}

/* BACKGROUND MOTION */
body::before {
    content: "";
    position: fixed;
    inset: -50%;
    background: radial-gradient(circle, rgba(120,120,255,0.15), transparent 60%);
    animation: floatBg 20s linear infinite;
    z-index: -1;
}

@keyframes floatBg {
    0% { transform: translate(0,0); }
    50% { transform: translate(10%,10%); }
    100% { transform: translate(0,0); }
}

/* HEADER */
header {
    text-align: center;
    padding: 60px 20px 20px;
}

header h1 {
    letter-spacing: 4px;
    font-weight: 700;
}

header p {
    opacity: 0.6;
    letter-spacing: 2px;
    font-size: 13px;
}

/* FORM CARD */
.form-card {
    max-width: 520px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(120,120,255,0.25);
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* INPUTS */
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: rgba(160,160,255,0.8);
    box-shadow: 0 0 12px rgba(160,160,255,0.6);
}

/* BUTTON */
.form-card button {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #ffffff, #cfcfff);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.form-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(200,200,255,0.8);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    opacity: 0.5;
    font-size: 13px;
}