/* Card */
.form-card-advanced {
    background: radial-gradient(circle at top right, rgba(168,85,247,0.25), transparent 40%),
                #0f0f14;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 0 80px rgba(168,85,247,0.25);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Avatar */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Labels */
form label {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
}

/* Inputs */
form input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* Focus */
form input:focus {
    border-color: #a855f7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(168,85,247,0.2);
}

/* Placeholder */
form input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* Button */
form button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg,#a855f7,#ec4899,#3b82f6);
    box-shadow: 0 10px 30px rgba(168,85,247,0.4);
    transition: 0.3s;
}

/* Hover */
form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(168,85,247,0.6);
}

/* Privacy text */
.privacy {
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* Small text */
.small-text {
    color: #aaa;
}
body {
    background: #0b0b0f;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.badge-custom {
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.main-heading {
    font-size: 42px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg,#a855f7,#ec4899,#3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    color: #aaa;
}

.features p {
    color: #00ffae;
}

.form-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(168,85,247,0.3);
}

.form-control {
    background: #1a1a1f;
    border: none;
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-gradient {
    background: linear-gradient(90deg,#a855f7,#ec4899,#3b82f6);
    border: none;
    color: #fff;
}

/* Glass card */
.form-glass {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* Animated gradient border */
.form-glass::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(90deg,#a855f7,#ec4899,#3b82f6);
    z-index: -1;
    animation: borderMove 4s linear infinite;
}

@keyframes borderMove {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Inputs */
.input-group-custom input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: 0.3s;
}

/* Placeholder */
.input-group-custom input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* Focus glow */
.input-group-custom input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168,85,247,0.5);
}

/* Button */
.btn-glow {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg,#a855f7,#ec4899,#3b82f6);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

/* Hover */
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168,85,247,0.5);
}

/* Ripple effect */
.btn-glow::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-glow:active::after {
    width: 300px;
    height: 300px;
}

/* Audio */
.custom-audio {
    border-radius: 10px;
    padding: 10px;
    background: #000;
}

/* Text */
.subtext {
    color: #aaa;
}

.privacy {
    font-size: 12px;
    color: #777;
    text-align: center;
}