body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  color: #222;
}

header {
  background: #0b3d91;
  color: #fff;
  padding: 20px 30px;
  text-align: center;   /* Center everything in header */
}

header img {
  max-height: 80px;     /* Logo size */
  display: block;
  margin: 0 auto 10px;  /* Center logo and add spacing below */
}

header h1 {
  margin: 0;
  font-size: 28px;      /* Slightly larger for prominence */
}

header p {
  margin: 5px 0 0;
  font-size: 16px;      /* Slightly larger subtitle */
}

.container {
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  padding: 20px 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.hero {
  padding: 15px 0 25px;
  border-bottom: 1px solid #e0e0e0;
}

.hero h2 {
  margin: 0 0 10px;
  color: #0b3d91;
}

.hero p {
  margin: 0 0 10px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: #0b3d91;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.btn-secondary {
  background: #555;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th, table td {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  font-size: 14px;
}

table th {
  background: #f0f3f7;
}

.status-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  background: #eee;
}

.status-not_claimed { background: #ffe9b3; }
.status-pending_verification { background: #ffd1d1; }
.status-verified { background: #cce5ff; }
.status-pending_payout { background: #fff3cd; }
.status-paid { background: #d4edda; }

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

form input, form select, form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

form button {
  margin-top: 15px;
  padding: 8px 16px;
  background: #0b3d91;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #072b63;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}

.testimonials {
  margin: 40px 0;
  padding: 20px;
  background: #f0f3f7;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonials h3 {
  text-align: center;
  color: #0b3d91;
  margin-bottom: 20px;
}

.testimonial {
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-left: 4px solid #0b3d91;
  border-radius: 4px;
}

.testimonial p {
  font-style: italic;
  margin: 0 0 8px;
}

.testimonial span {
  display: block;
  text-align: right;
  font-size: 13px;
  color: #555;
}

.testimonials {
  margin: 40px 0;
  padding: 20px;
  background: #f0f3f7;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonials h3 {
  text-align: center;
  color: #0b3d91;
  margin-bottom: 20px;
}

.testimonial {
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-left: 4px solid #0b3d91;
  border-radius: 4px;
}

.testimonial p {
  font-style: italic;
  margin: 0 0 8px;
}

.testimonial span {
  display: block;
  text-align: right;
  font-size: 13px;
  color: #555;
}

.footer-sponsors {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

.footer-sponsors h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsor {
  text-align: center;
}

.sponsor img {
  max-height: 60px;
  margin-bottom: 8px;
}

.footer-sponsors {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-sponsors h4 {
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.sponsor {
  text-align: center;
}

.sponsor img {
  max-height: 60px;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.sponsor img:hover {
  transform: scale(1.1);
}

.chat-widgets {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.chat-btn img {
  height: 20px;
}

.chat-btn.whatsapp {
  background-color: #25D366;
}

.chat-btn.telegram {
  background-color: #0088cc;
}

/* Center the main container */
.container {
  max-width: 1000px;   /* keeps content from stretching too wide */
  margin: 0 auto;      /* centers horizontally */
  text-align: center;  /* centers text inside */
  padding: 20px;
}

/* Center header content */
header {
  text-align: center;
  margin-bottom: 30px;
}

/* Center the language selector */
.language-selector {
  text-align: center;
  margin: 10px 0;
}

/* Center the table */
table {
  margin: 0 auto;       /* centers the table itself */
  border-collapse: collapse;
  width: 90%;           /* keeps table neat */
}

table th, table td {
  text-align: center;   /* centers text inside cells */
  padding: 10px;
  border: 1px solid #ddd;
}

.testimonials {
  text-align: center;
  margin-top: 40px;
}

footer {
  text-align: center;
  margin-top: 40px;
}

/* Default table styling (desktop) */
table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 90%;
}

table th, table td {
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
}

/* Responsive design for mobile */
@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }

  /* Hide table headers on mobile */
  thead tr {
    display: none;
  }

  tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #f9f9f9;
  }

  td {
    text-align: left;
    padding: 8px;
    border: none;
    position: relative;
  }

  /* Add labels before each cell */
  td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
}
