/* display-config.css - Styles specific to display configuration page */

/* Main Container */
.config-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Header Section */
.config-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.config-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.config-header p {
  font-size: 1.6rem;
  color: #ababab;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Styling */
.config-section {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.config-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #ffe234;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.config-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #ffe234;
}

.config-section > p {
  text-align: center;
  color: #ababab;
  font-size: 1.5rem;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Steps styling */
.config-steps {
  counter-reset: step-counter;
  margin-top: 40px;
}

.config-step {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.config-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 226, 52, 0.3);
}

.config-step:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 25px;
  width: 40px;
  height: 40px;
  background-color: #ffe234;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.config-step h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: white;
}

.config-step p {
  color: #ababab;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.config-step ul {
  color: #ababab;
  line-height: 1.7;
  margin: 15px 0;
  padding-left: 20px;
  font-size: 1.3rem;
}

.config-step li {
  margin-bottom: 10px;
  position: relative;
}

/* Highlighted elements */
.highlight {
  color: #ffe234;
  font-weight: 500;
}

.gold-note {
  background-color: rgba(255, 226, 52, 0.1);
  border-left: 4px solid #ffe234;
  padding: 15px 20px;
  margin: 20px 0;
  color: #ababab;
  font-size: 1.05rem;
  border-radius: 0 5px 5px 0;
}

.keyboard-shortcut {
  background-color: #333;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: monospace;
  margin: 0 2px;
  font-size: 0.95rem;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Back link styling */
.back-link {
  display: inline-block;
  margin-top: 30px;
  color: #ffe234;
  text-decoration: none;
  padding: 12px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #ffe234;
  border-radius: 30px;
  background-color: transparent;
}

.back-link:hover {
  background-color: rgba(255, 226, 52, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Background effect */
.config-container {
  position: relative;
}

.config-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 226, 52, 0.05) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .config-header h1 {
    font-size: 2.5rem;
  }
  
  .config-section {
    padding: 30px;
  }
  
  .config-step {
    padding-left: 70px;
  }
}

@media (max-width: 768px) {
  .config-header h1 {
    font-size: 2.2rem;
  }
  
  .config-header p {
    font-size: 1.2rem;
  }
  
  .config-section h2 {
    font-size: 1.8rem;
  }
  
  .config-step {
    padding: 25px;
    padding-left: 65px;
  }
  
  .config-step:before {
    width: 35px;
    height: 35px;
    font-size: 18px;
    left: 15px;
    top: 20px;
  }
  
  .config-step h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .config-container {
    padding: 40px 15px;
  }
  
  .config-header h1 {
    font-size: 1.8rem;
  }
  
  .config-header p {
    font-size: 1.1rem;
  }
  
  .config-section {
    padding: 20px;
  }
  
  .config-step {
    padding: 20px;
    padding-top: 60px;
    padding-left: 20px;
  }
  
  .config-step:before {
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
  }
  
  .gold-note {
    padding: 12px 15px;
  }
  
  .back-link {
    width: 100%;
    text-align: center;
  }
}