/* Reset and global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(145deg, #1e1e2f, #2a2a3f);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding-top: 40px;
}

body::after {
  content: "By Jaithran";
  position: fixed;
  bottom: 20px;
  right: 30px;
  font-family: 'Brush Script MT', cursive;
  font-size: 20px;
  color: #00ffff99;
  opacity: 0.7;
  pointer-events: none;
}

/* Heading */
h1.wrap span {
  background: rgba(19, 49, 108, 0.8);
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  box-shadow: 0 8px 16px rgba(19, 49, 108, 0.8);
  border: none;
}

/* Table */
table {
  width: 90%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: none;
  padding: 15px;
  margin: 20px auto;
}

th, td {
  padding: 20px;
  border: none;
}

/* Buttons */
button {
  width: 60px;
  height: 50px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #00d2ff, #3a7bd5);
  color: #fff;
  box-shadow: 0 5px 12px rgba(0, 213, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: linear-gradient(145deg, #3a7bd5, #00d2ff);
  transform: translateX(5px);
}

button:active {
  transform: scale(0.95);
  box-shadow: none;
}

/* Textarea */
textarea {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 24px;
  font-family: "Courier New", monospace;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  resize: none;
  text-align: right;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}
/* Horizontal lines */
tr:nth-child(1) td {
  border-bottom: 4px solid #333;
}
tr:nth-child(2) td {
  border-top: 4px solid #333;
  border-bottom: 4px solid #333;
}
tr:nth-child(3) td {
  border-top: 4px solid #333;
}

/* Vertical lines */
td:nth-child(1) {
  border-right: 4px solid #333;
}
td:nth-child(2) {
  border-left: 4px solid #333;
  border-right: 4px solid #333;
}
td:nth-child(3) {
  border-left: 4px solid #333;
}
#playera{
  color:#00ffff99;
  position: fixed;
  top: 130px;
  left: 130px;
}
#playerb{
  color:#00ffff99;
  position: fixed;
  top: 130px;
  right: 130px;
}
#refresh{
  width: 120px;
  height: 50px;
}