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

:root {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #e8e8e8;
    --text-secondary: #a8a8a8;
    --accent: #fbbf24;
    --accent-hover: #fcd34d;
    --border: #2a2a2a;
    --success: #22c55e;
    --warning: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1520 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin: 0;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.disclaimer {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.disclaimer p {
    margin: 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #555;
}

select {
    cursor: pointer;
}

textarea {
    resize: none;
    min-height: 100px;
    overflow: hidden !important;
    overflow-y: hidden !important;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.confirmation {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-content h2 {
    color: var(--success);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.confirmation-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.removal-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
}

.removal-info a {
    color: var(--accent);
    text-decoration: none;
}

.removal-info a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.info-section {
    margin-bottom: 1rem;
}

.info-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-item strong {
    color: var(--text-primary);
}

.info-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.credit {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
}

.credit a {
    color: #888;
    text-decoration: none;
}

.credit a:hover {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-item {
        font-size: 0.8rem;
    }
}

@media (max-height: 800px) {
    body {
        align-items: flex-start;
        padding: 2rem 1rem;
    }
    
    .container {
        margin: 0 auto;
    }
}

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

.confirmation {
    animation: fadeIn 0.5s ease;
}

