/* WizardBrew Universal Style Template — Expanded Layout */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: linear-gradient(135deg, #ffccbc, #ffe0b2, #f8bbd0, #d1c4e9);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

header {
  text-align: center;
  padding: 40px 20px 20px;
}

.profile-action-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

header a img {
  width: 120px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

header a img:hover {
  transform: scale(1.05);
}

#notifyBtn {
  background: linear-gradient(to right, #42a5f5, #1e88e5);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

header h1 {
  margin-top: 15px;
  font-size: 2rem;
  color: #6a1b9a;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
}

.bubble-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bubble {
  background: linear-gradient(to bottom right, #81d4fa, #4fc3f7);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.3s;
}

.bubble:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom right, #4fc3f7, #0288d1);
}

main {
  padding: 2rem;
  max-width: 1200px; /* Increased from 900px */
  margin: auto;
}

h2 {
  color: #0078d4;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0.5rem 0 1rem;
}

pre {
  background: linear-gradient(to right, #fce4ec, #f3e5f5);
  padding: 1rem;
  border-left: 5px solid #ec407a;
  border-radius: 8px;
  overflow-x: auto;
  font-family: Consolas, monospace;
  font-size: 0.95rem;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

.step {
  background: linear-gradient(to bottom right, #ffffff, #f3e5f5);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

footer {
  text-align: center;
  padding: 20px;
  background: linear-gradient(to right, #ce93d8, #f48fb1);
  color: white;
}

@media (max-width: 600px) {
  .profile-action-container {
    flex-direction: column;
  }
}
