/* Steps Container - Modern Hexagon Design */
/* Using Logo Colors: Orange (#FF9A3C), Pink (#FF4D7D), Purple (#8B5CF6), Blue (#3B82F6) */

.steps-modern-container {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 154, 60, 0.1);
    border-radius: 24px;
    margin: 4rem 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.steps-modern-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.05), rgba(139, 92, 246, 0.05));
    pointer-events: none;
}

/* Left Sidebar */
.steps-sidebar {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.steps-header {
    margin-bottom: 2rem;
}

.steps-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.steps-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-modern-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 154, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-modern-btn:hover::before {
    left: 100%;
}

.step-modern-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 154, 60, 0.3);
    transform: translateX(5px);
}

.step-modern-btn.active {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(255, 77, 125, 0.2));
    border-color: rgba(255, 154, 60, 0.5);
    color: #fff;
}

/* Hexagon Icon */
.step-hex-icon {
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.3), rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-modern-btn.active .step-hex-icon {
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    animation: step-hex-pulse 2s ease infinite;
}

@keyframes step-hex-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 154, 60, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 77, 125, 0.7); }
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.step-label {
    font-size: 1rem;
    font-weight: 600;
}

/* Progress Bar */
.steps-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.steps-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF9A3C, #FF4D7D, #8B5CF6);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 3px;
}

/* Right Visualization */
.steps-visualization {
    flex: 1.5;
    min-height: 500px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 154, 60, 0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.step-modern-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.step-modern-visual.active {
    opacity: 1;
    visibility: visible;
}

/* Step 1: Game Selection */
.step-game-selection {
    width: 100%;
    max-width: 500px;
}

.step-game-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-game-hex {
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.step-game-hex.active {
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    opacity: 1;
    transform: scale(1.1);
}

.step-game-hex img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.step-selection-boxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-select-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 154, 60, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.step-select-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.step-select-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.step-mini-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Step 2: Payment */
.step-payment-interface {
    width: 100%;
    max-width: 500px;
}

.step-stripe-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.step-stripe-logo {
    height: 40px;
    margin-bottom: 0.5rem;
}

.step-stripe-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.step-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.step-payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 154, 60, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-payment-option:hover {
    background: rgba(255, 154, 60, 0.1);
    border-color: rgba(255, 154, 60, 0.4);
    transform: translateY(-5px);
}

.step-payment-hex {
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.3), rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.step-payment-option span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Step 3: Processing */
.step-processing-interface {
    text-align: center;
}

.step-processing-hex {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto 2rem;
    animation: step-processing-pulse 1.5s ease infinite;
}

@keyframes step-processing-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-processing-interface h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-processing-interface p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.step-processing-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.step-processing-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF9A3C, #FF4D7D, #8B5CF6);
    width: 0%;
    animation: step-processing-fill 3s ease infinite;
    border-radius: 4px;
}

@keyframes step-processing-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Step 4: Complete */
.step-complete-interface {
    text-align: center;
    position: relative;
}

.step-success-hex {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #10B981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto 2rem;
    animation: step-success-bounce 0.6s ease;
}

@keyframes step-success-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.step-complete-interface h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-complete-interface p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .steps-modern-container {
        flex-direction: column;
        padding: 2rem;
    }
    
    .steps-sidebar {
        min-width: auto;
    }
    
    .steps-visualization {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .steps-modern-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .steps-header h3 {
        font-size: 1.5rem;
    }
    
    .step-game-icons {
        gap: 1rem;
    }
    
    .step-game-hex {
        width: 80px;
        height: 80px;
    }
    
    .step-payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .steps-modern-container {
        padding: 1rem;
    }
    
    .step-modern-btn {
        padding: 0.75rem 1rem;
    }
    
    .step-hex-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.9rem;
    }
}
