body {
    background-image: url('assets/images/watermark_gray.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
}

.wizard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.wizard-header {
    background: linear-gradient(135deg, #1ea4db 0%, #1589b8 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.wizard-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.wizard-body {
    padding: 50px 40px;
}

.form-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #1ea4db;
    box-shadow: 0 0 0 0.25rem rgba(30, 164, 219, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #1ea4db 0%, #1589b8 100%);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    width: 100%;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 164, 219, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: #6c757d;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
}

.domain-preview {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #0284c7;
}

.info-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Progress Section */
.progress-section {
    display: none;
    margin-top: 30px;
}

.progress-section.active {
    display: block;
}

.step-container {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #e0e0e0;
    transition: all 0.3s;
}

.step-container.active {
    border-left-color: #1ea4db;
    background: #e3f2fd;
}

.step-container.completed {
    border-left-color: #10b981;
    background: #f0fdf4;
}

.step-container.error {
    border-left-color: #ef4444;
    background: #fee;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
}

.step-container.active .step-icon {
    background: #1ea4db;
    color: white;
    animation: pulse 1.5s infinite;
}

.step-container.completed .step-icon {
    background: #10b981;
    color: white;
}

.step-container.error .step-icon {
    background: #ef4444;
    color: white;
}

.step-status {
    font-size: 0.9rem;
    color: #666;
}

.step-container.active .step-status {
    color: #1ea4db;
    font-weight: 600;
}

.step-container.completed .step-status {
    color: #10b981;
    font-weight: 600;
}

.step-container.error .step-status {
    color: #ef4444;
    font-weight: 600;
}

.step-progress {
    margin-top: 10px;
}

.progress {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #1ea4db, #1589b8);
    transition: width 0.5s ease;
}

.step-message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.spinner-border-sm {
    width: 18px;
    height: 18px;
    border-width: 2px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Success Section */
.success-section {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.success-section.active {
    display: block;
}

.success-icon {
    font-size: 100px;
    color: #10b981;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

.domain-display {
    background: #f8f9fa;
    border: 2px solid #1ea4db;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1ea4db;
    word-break: break-all;
}

.db-info-card {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    text-align: left;
}

.db-info-card code {
    background: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
}