/* Artist Journey Modal Specific Styles */
#artist-journey-modal .modal-content {
    max-width: 700px;
    position: relative;
}

/* Close button positioning for artist journey modal */
#artist-journey-modal .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    user-select: none;
}

#artist-journey-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-accent, #255ff4);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(37, 95, 244, 0.4);
}

#artist-journey-modal .modal-close svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

#artist-journey-modal .modal-close:hover svg {
    transform: rotate(90deg);
}

.journey-steps {
    margin: 30px 0;
}

.journey-steps h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-list {
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, #0271FC, rgba(2, 113, 252, 0.3));
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.benefits-highlight {
    margin: 30px 0;
}

.benefits-highlight h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(2, 113, 252, 0.3);
    transform: translateY(-3px);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.benefit-text h5 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.cta-section {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../public/xecho-favicon.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.cta-section h4,
.cta-section p {
    position: relative;
    z-index: 1;
}

.cta-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Modal Actions Button Alignment */
#artist-journey-modal .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

#artist-journey-modal .modal-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    height: 48px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    box-sizing: border-box;
    text-decoration: none;
}

#artist-journey-modal .modal-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

#artist-journey-modal .modal-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

/* Enhanced button styling */
#artist-journey-modal .modal-actions .btn-primary {
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    border: 1px solid transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(2, 113, 252, 0.3);
    transition: all 0.3s ease;
}

#artist-journey-modal .modal-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(2, 113, 252, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .step-item {
        gap: 15px;
    }
    
    .step-item:not(:last-child)::after {
        left: 17px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .cta-section {
        padding: 20px;
    }
    
    #artist-journey-modal .modal-actions {
        flex-direction: column;
    }
    
    #artist-journey-modal .modal-actions .btn {
        justify-content: center;
    }
} 