/* Energy Chamber Styles */
.energy-chamber {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid #ff6b35;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
}

.energy-container {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
}

/* Header Styles */
.energy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.energy-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    position: relative;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.fire-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.fire-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px solid #ff4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

/* Title Styles */
.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ff4444, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.energy-subtitle {
    font-size: 1.2rem;
    color: #ffa726;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(255, 167, 38, 0.5);
}

/* Background Image */
.energy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.energy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.energy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(255, 68, 68, 0.2) 50%,
        rgba(255, 107, 53, 0.1) 100%
    );
}

/* Fire Buttons */
.fire-buttons-container {
    position: relative;
    z-index: 3;
    margin: 2rem 0;
}

.fire-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fire-btn {
    background: linear-gradient(45deg, #ff6b35, #ff4444);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.fire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.fire-btn:hover::before {
    left: 100%;
}

.fire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff4444, #ff6b35);
}

/* Footer Credits */
.energy-footer {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 2rem;
}

.credits {
    color: #ffa726;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 167, 38, 0.5);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .energy-container {
        padding: 2rem 1rem;
        min-height: 60vh;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .energy-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .fire-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fire-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .energy-avatar {
        width: 60px;
        height: 60px;
    }
    
    .fire-ring {
        width: 80px;
        height: 80px;
    }
    
    .fire-ring::before {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .energy-subtitle {
        font-size: 0.9rem;
    }
    
    .credits {
        font-size: 0.9rem;
    }
}
