
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #f2f2f2;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.site-header {
  background-color: #111;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: #1e90ff;
}

.nav a {
  margin-left: 1.5rem;
  font-weight: 600;
  color: #ccc;
}

.hero {
  background: linear-gradient(135deg, #1a1a1a, #000);
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #1e90ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0077cc;
}

.section, .how-section, .features-section, .contact-section {
  padding: 4rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background-color: #1b1b1b;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.feature h3 {
  margin-top: 0;
  color: #1e90ff;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #111;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.cookie-banner a {
  color: #1e90ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}

.cookie-actions button {
  background: #1e90ff;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #0077cc;
}


.skins-section {
  padding: 4rem 2rem;
  background-color: #101010;
}

.skins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.skin-card {
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.skin-card:hover {
  transform: translateY(-5px);
}

.skin-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.skin-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0.2rem 0;
}

.skin-card strong {
  font-size: 1.1rem;
  color: #fff;
}


.logo-image {
  height: 48px;
}

.about-section, .why-section {
  padding: 4rem 2rem;
  background-color: #121212;
}

.about-section p, .why-section ul {
  font-size: 1rem;
  color: #ccc;
}

.why-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.why-section ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header img.logo-image {
  height: 48px;
  display: block;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.register-form {
  max-width: 400px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-form input {
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  color: #fff;
}

.register-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
