:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --background: #ffffff;
    --foreground: #020817;
    --card: #ffffff;
    --card-foreground: #020817;
    --border: #e2e8f0;
    --input: #e2e8f0;
    --ring: #3b82f6;
    --radius: 0.5rem;
}

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

body {
    font-family: 'Chakra Petch', sans-serif;
    background: #f8fafc;
    color: var(--foreground);
    line-height: 1.5;
}

h1, h2, .step span {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.wizard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.step-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #475569;
}

.btn-primary, .btn-secondary {
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.wizard-container {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.wizard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    position: relative;
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step span {
    font-size: 0.875rem;
    font-weight: 500;
}

.input, .select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.input:focus, .select:focus {
    outline: none;
    border-color: var(--ring);
    ring: 2px var(--ring);
}

.btn-primary, .btn-secondary, .btn-skip, .btn-add {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-secondary:hover {
    background: var(--input);
}

.hidden {
    display: none;
}

/* Additional styles for form elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    position: relative;
}

.btn-copy {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.2);
} 