:root {
    --primary-color: #F9B233; /* Buckster Yellow */
    --secondary-color: #000000; /* Buckster Black */
    --background-color: #f4f4f4;
    --card-background: #ffffff;
    --text-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

.header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
    margin-bottom: 40px;
}

.logo {
    max-width: 250px;
    height: auto;
}

.container {
    max-width: 900px;
    margin: 0 auto 40px auto;
    background: var(--card-background);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 2.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

#content {
    margin-top: 30px;
}

/* API content styles */
#content p {
    margin-bottom: 1.2em;
}

#content strong {
    font-weight: 700;
    color: var(--secondary-color);
}

#content em {
    font-style: italic;
}

#content h2, #content h3 {
    color: var(--secondary-color);
}

.loading {
    color: #666;
    font-style: italic;
    text-align: center;
}

.error {
    color: #d93025;
    background: #fce8e6;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
}

.success {
    color: #0d652d;
    background: #e6f4ea;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

input[type="email"],
input[type="password"],
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    border: none;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #e5a122;
}

.btn-danger {
    background-color: #d93025;
    color: white;
}

.btn-danger:hover {
    background-color: #b71c1c;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    color: #888;
}

.step-dot.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.step-dot.completed {
    border-color: var(--primary-color);
    background: #fff;
    color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 20px;
    color: #888;
    font-size: 0.9rem;
}
