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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #111;
  color: #f1f1f1;
  line-height: 1.6;
  padding: 1rem;
}

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

.text-center {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  max-width: 120px;
  width: 25vw;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}

.card {
  background: #1c1c1c;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #00bcd4;
}

input[type="text"],
input[type="url"],
input[type="number"],
button,
select {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0 1rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #222;
  color: #f1f1f1;
  font-size: 1rem;
}

button {
  background: #00bcd4;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

button:hover {
  background: #0097a7;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table th,
table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #444;
}

table th {
  background: #222;
  color: #00bcd4;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    padding: 1rem;
  }

  table thead {
    display: none;
  }

  table, table tbody, table tr, table td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1rem;
  }

  table td {
    text-align: right;
    position: relative;
    padding-left: 50%;
  }

  table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: 45%;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #aaa;
  }
}
