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

body {
  background-color: #0d0d0d;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #007bff;
  padding: 15px 25px;
  color: white;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
}

.navbar-right i {
  font-size: 20px;
  margin-left: 20px;
  cursor: pointer;
}

/* MAIN CONTENT (index.html) */
.main-content {
  text-align: center;
  padding: 80px 20px;
}

.main-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cccccc;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background-color: #00ccff;
  color: white;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #00ccff;
  color: #00ccff;
}

/* GALLERY PAGE (index2.html) */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 20px;
  gap: 20px;
}

.card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: 300px;
  transition: transform 0.2s;
  color: white;
  text-decoration: none;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: auto;
}

.card p {
  padding: 10px;
  color: #cccccc;
}

/* SCRIPT PAGE (script1.html) */
.script-container {
  padding: 40px 20px;
  text-align: center;
}

.script-container img {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 8px;
}

.script-container p {
  margin: 20px 0;
  font-size: 16px;
  color: #bbbbbb;
}

.get-script-btn {
  background-color: #00ccff;
  color: white;
  font-size: 16px;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

/* SCRIPT GET PAGE (script1_get.html) */
.script-copy-container {
  padding: 40px 20px;
  text-align: center;
  background-color: #0f0f0f;
  color: white;
  min-height: 100vh;
}

.script-copy-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.script-copy-container textarea {
  width: 90%;
  max-width: 800px;
  height: 250px;
  background-color: #1e1e1e;
  color: #00ffcc;
  border: none;
  padding: 15px;
  font-family: monospace;
  border-radius: 6px;
  resize: none;
  margin-top: 20px;
}

.script-copy-container button {
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 10px 25px;
  border: none;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.game-link {
  margin-top: 30px;
  font-size: 16px;
}

.game-link p {
  margin-bottom: 5px;
}

.game-link a {
  color: #00bfff;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .card {
    width: 90%;
  }

  .script-copy-container textarea {
    height: 200px;
  }
}