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

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1a1919 0%, #2c2b2b 100%);
  color: #e0e0e0;
  line-height: 1.6;
  padding: 40px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  flex: 1;
}

header {
  margin-bottom: 30px;
  padding: 20px;
  animation: fadeIn 1s ease-out;
}

header h1 {
  font-family: 'Domine', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
}

.game-container {
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
}

.missile-name {
  font-size: 2rem;
  margin: 20px 0;
  color: #ffffff;
  font-family: 'Domine', serif;
}

.counter-input {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.counter-input input {
  padding: 15px 20px;
  font-size: 1.2rem;
  border: 2px solid #444;
  border-radius: 10px;
  background: rgba(30, 30, 30, 0.8);
  color: white;
  text-align: center;
  width: 250px;
  transition: border-color 0.3s;
}

.counter-input input:focus {
  outline: none;
  border-color: #ff7e5f;
  box-shadow: 0 0 10px rgba(255, 126, 95, 0.3);
}

.submit-button {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 126, 95, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.feedback {
  min-height: 60px;
  margin: 25px 0;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.correct {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid #2ecc71;
}

.incorrect {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.score-display {
  font-size: 1.3rem;
  font-weight: 500;
}

.score-value {
  color: #ff7e5f;
  font-weight: 700;
}

.timer-display {
  font-size: 1.3rem;
  font-weight: 500;
}

.timer-warning {
  color: #ff6b6b;
  animation: pulse 1s infinite;
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.game-container {
  animation: fadeIn 0.8s ease-out;
}

.Github {
  display: inline-block;
  margin-top: 20px;
  color: #ff7e5f;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background 0.3s;
}

.Github:hover {
  background: rgba(255, 126, 95, 0.1);
}

.Discord {
  display: inline-block;
  margin-top: 20px;
  color: #ff7e5f;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background 0.3s;
}

.Discord:hover {
  background: rgba(255, 126, 95, 0.1);
}

.Missiles {
  display: inline-block;
  margin-top: 20px;
  color: #ff7e5f;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background 0.3s;
}

.Missiles:hover {
  background: rgba(255, 126, 95, 0.1);
}

.Trainer {
  display: inline-block;
  margin-top: 20px;
  color: #ff7e5f;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background 0.3s;
}

.Trainer:hover {
  background: rgba(255, 126, 95, 0.1);
}

.footer {
  margin-top: auto;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  header h1 {
    font-size: 2.2rem;
  }
  
  .game-container {
    padding: 20px 15px;
  }
  
  .counter-input {
    flex-direction: column;
    align-items: center;
  }
  
  .counter-input input {
    width: 100%;
    max-width: 250px;
  }
  
  .missile-name {
    font-size: 1.5rem;
  }
  
  .game-stats {
    flex-direction: column;
    gap: 10px;
  }
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1a1919 0%, #2c2b2b 100%);
  color: #e0e0e0;
  line-height: 1.6;
  padding: 40px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

header {
  margin-bottom: 30px;
  padding: 20px;
  animation: fadeIn 1s ease-out;
}

header h1 {
  font-family: 'Domine', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
}

.lists-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.list-section {
  flex: 1;
  background: transparent;
  border-radius: 15px;
  padding: 25px;
}

.list-section h2 {
  font-family: 'Domine', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.list-section ul {
  list-style-type: none;
  text-align: left;
}

.list-section li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  color: #e0e0e0;
}

.list-section li:last-child {
  border-bottom: none;
}

.divider {
  width: 2px;
  background: #cccccc;
  border-radius: 1px;
}

.footer {
  margin-top: auto;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@media (max-width: 900px) {
  .lists-container {
    flex-direction: column;
  }
  
  .divider {
    width: 100%;
    height: 2px;
  }
  
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.countermeasure-info {
    font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-weight: 300;
}
