:root {
    --deep-teal: #10454F;
    --slate-blue: #506266;
    --sage-green: #818274;
    --olive-green: #A3AB78;
    --lime-accent: #BDE038;
    
    /* Derived colors for better readability */
    --deep-teal-light: #1a5a68;
    --deep-teal-dark: #0c3540;
    --slate-light: #6b7a7e;
    --sage-light: #95978a;
    --olive-light: #b8c092;
    --lime-muted: #a8c632;
    --text-primary: #10454F;
    --text-secondary: #506266;
    --text-light: #818274;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8faf9 0%, #f0f4f3 25%, #e8ede9 50%, #e1e8e0 75%, #dae5d8 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-weight: 400;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    color: var(--deep-teal);
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-teal), var(--slate-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    color: var(--slate-blue);
}

.troubleshooter-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 98, 102, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 20px 40px rgba(16, 69, 79, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    margin-bottom: 20px;
}

.step {
    display: none;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.active {
    display: block;
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.step-header {
    font-size: 1.5rem;
    color: var(--deep-teal);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.step-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--lime-accent), var(--olive-green));
    border-radius: 2px;
}

.option-button {
    display: block;
    width: 100%;
    padding: 18px 24px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--slate-blue);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 224, 56, 0.15), transparent);
    transition: left 0.6s ease;
}

.option-button:hover::before {
    left: 100%;
}

.option-button:hover {
    background: rgba(189, 224, 56, 0.1);
    border-color: var(--lime-accent);
    transform: translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(189, 224, 56, 0.2),
        0 0 0 1px rgba(189, 224, 56, 0.3);
    color: var(--deep-teal);
}

.solution {
    background: rgba(163, 170, 119, 0.1);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--olive-green);
    border: 1px solid rgba(163, 170, 119, 0.3);
    padding: 24px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(163, 170, 119, 0.15);
}

.solution h3 {
    color: var(--deep-teal);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.solution ol, .solution ul {
    margin-left: 20px;
    margin-top: 10px;
}

.solution li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.solution strong {
    color: var(--deep-teal);
}

.warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
}

.warning h4 {
    color: #b8860b;
    margin-bottom: 8px;
    font-weight: 600;
}

.warning p {
    color: #8b6914;
}

.back-button, .restart-button {
    background: var(--slate-blue);
    color: white;
    border: 2px solid var(--slate-light);
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    margin: 15px 8px 0 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
}

.back-button:hover, .restart-button:hover {
    background: var(--deep-teal);
    border-color: var(--deep-teal-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 69, 79, 0.3);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(128, 130, 116, 0.2);
    border-radius: 6px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lime-accent), var(--olive-green));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: progressShine 2.5s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.console-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.console-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--sage-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.console-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(163, 170, 119, 0.25);
    border-color: var(--lime-accent);
    background: rgba(189, 224, 56, 0.1);
}

.emergency-contact {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.emergency-contact h4 {
    color: #dc3545;
    margin-bottom: 12px;
    font-weight: 600;
}

.emergency-contact p {
    color: #721c24;
    font-weight: 500;
}

.quick-links {
    background: rgba(16, 69, 79, 0.05);
    border: 1px solid rgba(16, 69, 79, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    backdrop-filter: blur(10px);
}

.quick-links h4 {
    color: var(--deep-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-links button {
    background: var(--olive-green);
    color: white;
    border: 2px solid var(--olive-light);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    margin: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-links button:hover {
    background: var(--deep-teal);
    border-color: var(--lime-accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(163, 170, 119, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    .troubleshooter-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .console-icons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .console-icon {
        width: 56px;
        height: 56px;
        font-size: 0.8rem;
    }
    
    .step-header {
        font-size: 1.3rem;
    }
    
    .option-button {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    
    
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .troubleshooter-card {
        padding: 20px;
    }
    
    .console-icons {
        justify-content: space-around;
    }
    
    .quick-links button {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
    
    .back-button, .restart-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Footer styling that can be added to any page */
        .epic-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-top: 2px solid #e2e8f0;
            padding: 15px 20px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .epic-footer-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .epic-footer-text {
            color: #4a5568;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
        }

        .epic-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .epic-button {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .epic-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            background: linear-gradient(135deg, #5a6fd8, #6b42a0);
        }

        .epic-button.setup {
            background: linear-gradient(135deg, #48bb78, #38a169);
        }

        .epic-button.setup:hover {
            background: linear-gradient(135deg, #38a169, #2f855a);
            box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
        }

        .epic-button.troubleshoot {
            background: linear-gradient(135deg, #4299e1, #3182ce);
        }

        .epic-button.troubleshoot:hover {
            background: linear-gradient(135deg, #3182ce, #2c5282);
            box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .epic-footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .epic-buttons {
                justify-content: center;
            }
            
            .epic-button {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }