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

body {
  background-color: #0e0e0e; /* darker than before */
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  min-height: 100vh;
  padding: 2rem;
  background-image:
    /* fine grid */
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    
    /* mid grid */
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px),

    /* main grid with dots */
    radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 2px);
    
  background-size:
    10px 10px,   /* fine grid X */
    10px 10px,   /* fine grid Y */
    50px 50px,   /* mid grid X */
    50px 50px,   /* mid grid Y */
    100px 100px; /* dots grid */
}


img.logo {
  width: 180px;
  margin-bottom: 3rem;
  margin-top: 5rem;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
  flex-wrap: nowrap;
}

.box {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  flex: 1 1 50%;
  min-width: 0;
}

.box h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1.2rem;
}

a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

code {
  background: #222;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: #fff;
}

form.scene-finder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"] {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background: #222;
  color: #fff;
  width: 100%;
  margin-bottom: 1rem;
}

li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFF;
  margin-bottom: 1rem;
  margin-left:2rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.2rem;
 margin-left:2rem;
}

button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #1e90ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background-color: #0077dd;
}

.breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  margin-top:1rem;
  margin-left:2rem;
  color: #aaa;
}

.breadcrumb a {
  color: #1e90ff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #fff;
}


.toolbox-wrapper {
  margin-top: 4rem;
  width: 100%;
  max-width: 1400px;
}

.toolbox-box {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  text-align: center;
}

.toolbox-box h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}


.toolbox-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.toolbox-button {
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.toolbox-button:hover {
  background-color: #fff;
  color: #000;
}

footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

@media (max-width: 600px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .box {
    width: 100%;
  }
}
