.guide-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem
}

.step-card {
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
    position: relative
}

.step-num {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: .8rem;
    font-weight: 700
}

.mt-2 {
    margin-top: 1.5rem
}

.admin-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px
}

.glass-card {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2)
}

.gradient-text {
    background: linear-gradient(135deg, #FF6A00, #FF4500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hover-lift {
    transition: transform .3s ease, box-shadow .3s ease
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, .15)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:767px) {
    .step-card {
        padding: .75rem
    }

    .guide-title {
        font-size: 1.25rem
    }
}

@media (min-width:768px) and (max-width:1023px) {
    .admin-card {
        padding: 1.25rem
    }
}

@media (min-width:1024px) {
    .step-card {
        padding: 1.5rem
    }
}