/* === base.css === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(145deg, #0a0a0a, #111111);
  color: #f5d76e;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: #f5d76e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffd700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.site-wrapper {
  flex: 1;
}

input, textarea {
  background: #111;
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 8px;
  color: #f5d76e;
  font-size: 1rem;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #f5d76e;
  box-shadow: 0 0 10px rgba(245, 215, 110, 0.2);
}
