/* General Styles */
:root {
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  --primary: hsl(23, 91%, 58%);
  --secondary: hsl(46, 89%, 64%);

  --bg-dark: hsl(0 0% 90%);
  --bg: hsl(0, 0%, 97%); 
  --bg-light: hsl(300 50% 100%);

  --text: hsl(300 0% 4%);  
  --text-muted: hsl(0 0% 28%);
  --border: hsl(0 0% 50%);
  --border-muted: hsl(340 0% 80%);
  
  --primary-gradient: linear-gradient(to top, var(--primary) 0%, var(--secondary) 100%);
  --border-radius-L: 12px;
  --border-radius-M: 8px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-L);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Success Message */
.success-message {
  padding: 30px;
  text-align: center;
}

.success-icon {
  margin-bottom: 15px;
}

.success-icon .material-icons {
  font-size: 48px;
  color: var(--success-color);
}

.success-message h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text);
}

.success-message p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Divider */
.divider {
  height: 1px;
  background-color: var(--border-muted);
  margin: 0;
}

/* Step Container */
.step-container {
  padding: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.step-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

/* Step Image */
.step-image {
  margin: 20px 0;
  border: 1px solid var(--border-muted);
  border-radius: var(--border-radius-M);
  overflow: hidden;
}

.step-image img {
  width: 100%;
  display: block;
}

.image-caption {
  padding: 10px;
  text-align: center;
  background-color: var(--bg);
  color: var(--text-muted);
  font-size: 14px;
}

/* Action Tip */
.action-tip {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: var(--bg-dark);
  border-radius: var(--border-radius-L);
  color: var(--text-muted);
  font-size: 14px;
  text-align: left;
  display: flex;
  align-items: center;
}

.action-tip::before {
  content: "📌";
  margin-right: 8px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .step {
      flex-direction: column;
  }
  
  .step-number {
      margin-bottom: 15px;
  }
}

.shortcut {
  font-weight: bold;
  white-space: pre;
}

a {
  color: inherit;
}
