:root {
    --primary: #ff3366;
    --secondary: #7000ff;
    --bg-dark: #0a0a14;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #8a8aa3;
    --success: #00e676;
    --error: #ff1744;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Glow Effects */
.background-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.background-glow::before, .background-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.background-glow::before {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -100px;
    right: -100px;
    animation: float 10s infinite alternate ease-in-out;
}

.background-glow::after {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: -50px;
    left: -50px;
    animation: float 8s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(20px) scale(1.1); }
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary), #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

h1 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

section.policy-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

ul {
    list-style-type: none;
    margin-bottom: 20px;
}

ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.warning {
    background: rgba(255, 23, 68, 0.1);
    border-left: 4px solid var(--error);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Form Styles */
.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #a0a0c0;
}

input[type="text"], textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

textarea {
    height: 100px;
    resize: vertical;
}

small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
}

button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.4);
    opacity: 0.95;
}

button:active {
    transform: translateY(0);
}

button:disabled {
    background: #3a3a50;
    color: #7a7a90;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Message Box */
.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.message.success {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.message.error {
    background: rgba(255, 23, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 25px;
    }
    h1 {
        font-size: 2rem;
    }
}
