.suspension-guide {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.guide-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guide-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
}

.guide-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guide-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
}

.guide-body {
    padding: 2.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-approved {
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: white;
}

.status-pending {
    background: linear-gradient(135deg, #fdcb6e, #ffeaa7);
    color: #2d3436;
}

.status-rejected {
    background: linear-gradient(135deg, #d63031, #ff7675);
    color: white;
}

h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.info-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.code-block {
    background: #f9f9ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    border-left: 4px solid var(--primary-color);
    box-shadow: inset 0 0 10px rgba(108, 92, 231, 0.1);
    color: #6c5ce7;
    font-size: 1rem;
    line-height: 1.5;
}

.copy-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(108, 92, 231, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(135deg, #5d4bd1, #3a7bd5);
    transform: translateY(-2px);
}

.guide-steps {
    margin-top: 2.5rem;
    background: #f9f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 6px rgba(108, 92, 231, 0.2);
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.preview-area {
    border: 2px dashed rgba(108, 92, 231, 0.3);
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 10px;
    text-align: center;
    background: #f9f9ff;
}

.preview-area p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.error-message {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 2rem auto;
}

.error-message p:first-child {
    color: #d63031;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.error-message a {
    color: white;
    background: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 3px 8px rgba(108, 92, 231, 0.3);
}

.error-message a:hover {
    background: #5d4bd1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

@media (max-width: 768px) {
    .guide-header {
        padding: 2rem 1.5rem;
    }
    
    .guide-body {
        padding: 2rem 1.5rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 0.8rem;
    }
}