body {
  font-family: 'Satoshi', 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #f7f8fa;
  margin: 0;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 24px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 16px;
}

p, label, td, th, input, select {
  font-family: 'Satoshi', 'Inter', Arial, sans-serif;
}

label {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

input[type=text],
select {
  width: 100%;
  padding: 12px 14px;
  margin: 0 0 18px;
  display: block;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type=text]:focus,
select:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

input[type=submit] {
  width: 100%;
  background-color: #0f766e;
  color: white;
  padding: 14px 20px;
  margin: 8px 0 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

input[type=submit]:hover {
  background-color: #0b5e58;
}

input[type=submit]:active {
  transform: translateY(1px);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

table th,
table td {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

table th {
  background: #f3f4f6;
  font-weight: 700;
  color: #111827;
}

td {
  color: #1f2937;
}

/* Lotto Styles (Circle Text) */
.circle-text {
    width: 100%;
}

.circle-text:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: #4679BD;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.circle-text div {
    float: left;
    width: 100%;
    padding-top: 50%;
    line-height: 1em;
    margin-top: -0.5em;
    text-align: center;
    color: white;
}

.example-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.small-note {
  font-size: 12px;
  color: #6b7280;
}

.highlight-box {
  background: #0f766e;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}