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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1a1a2e;
  color: #eee;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.comic {
  max-width: 800px;
  width: 100%;
  background: #16213e;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  padding: 30px;
}

.title {
  text-align: center;
  font-size: 2rem;
  color: #f5c842;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.panel {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel-img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  margin-bottom: 15px;
}

.bubble {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 2px solid #f5c842;
  border-radius: 20px;
  padding: 15px 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.final {
  background: #f5c842;
  color: #1a1a2e;
  font-weight: bold;
  border: none;
}

@media (max-width: 600px) {
  .comic {
    padding: 15px;
  }
  .title {
    font-size: 1.5rem;
  }
  .bubble {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
}
