@font-face {
  font-family: 'Geist';
  src: url('https://corsproxy.io/?url=https://cdn.alimad.co/f/geist.woff2');
  font-weight: normal, bold;
}
body {
  background: linear-gradient(135deg, #040409, #1a1a2e);
  text-align: center;
  margin: 0;
  padding: 0;
  width: 100vw;
  font-size: 17px;
  color: #fff;
  overflow-x: hidden;
}
strong {
  font-weight: bold;
}
* {
  font-family: "Geist", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
a {
  color: #77f;
}
h1 {
  color: #d6e6ff;
  margin-top: 50px;
  font-size: 5vw;
  animation: fadeIn 2s ease-out;
}
#time, #naem, #classs {
  font-size: 3vw;
  color: #aad4ff;
  text-align: center;
}
#log, #logg{
  font-size: 9px;
  color: #ccccffaa;
  text-align: left;
  margin-bottom: 25px;
}
.input-container {
  margin-top: 20px;
  animation: slideIn 1s ease-out;
}
input {
  padding: 10px;
  font-size: 16px;
  margin: 10px;
  border: 2px solid #3399ff;
  border-radius: 5px;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  transition: border-color 0.3s, transform 0.3s;
}
input:focus {
  border-color: #4caf50;
  outline: none;
  transform: scale(1.05);
}
button {
  padding: 5px 10px;
  font-size: 16px;
  background: linear-gradient(135deg, #4caa50, #45a0a9);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#subscribeBtn{
  background: linear-gradient(135deg, #ff0909, #ff0048);
}
button:disabled{
  background: #333;
}
button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.table-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 20px auto;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a0f2d, #111733);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #0a0f2d, #111733);
}
@media (orientation: landscape) {
  table {
    font-size: 18px;
  }
}
@media (orientation: portrait) {
  table {
    font-size: clamp(6px, 3.0vw, 15px);
  }
}
th,
td {
  padding: 10px;
  text-align: left;
  color: #eef;
  border: none;
}
th {
  background: linear-gradient(135deg, #223566, #1b2c4a);
}
tr.new-row {
  opacity: 0;
  transition: opacity 0.5s ease, height 0.5s ease, width 0.5s ease;
}
tr.new-row.visible {
  opacity: 1;
}
tr {
  transition: background-color 0.3s;
}
tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}
tr:hover {
  background-color: #446c99aa;
}
.footer {
  text-align: center;
  font-size: 15px;
  bottom: 0;
}
.container {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #555);
  transition: background-color 0.3s, transform 0.3s;
}
.container:hover input ~ .checkmark {
  background-color: #666;
}
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .checkmark:after {
  display: block;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
  animation: fadeIn 1.5s ease-out;
}
.radio-container {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  color: #aad4ff;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}
.radio-container:hover input ~ .radio-mark {
  background-color: #666;
  transform: scale(1.1);
}
.radio-container input:checked ~ .radio-mark {
  background-color: #2196F3;
  transform: scale(1.1);
}
.radio-mark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .radio-mark:after {
  display: block;
  left: 9px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
::-webkit-scrollbar {
  width: 6px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #fff3; 
}
::-webkit-scrollbar-thumb {
  background: #8888;
  border-radius:3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5558; 
}
  .feedback-container {
    position: static;
    margin-top: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9999;
    max-height: 90%;
  }
  
textarea {
  font-size: 1rem;
}
  #sub {
    margin: 1rem 0;
  }
.feedback-container h1,
.feedback-container h2 {
  color: #eee;
  text-align: center;
  font-size: 1rem;
}
textarea {
  height: 5rem;
  padding: 1rem;
  border-radius: 5px;
  resize: none;
  width: 90%;
}
.feedback-container button {
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  width: 80%;
}
#comments-section {
  margin-top: 1.5rem;
  max-height: 50vh;
  overflow-y: auto;
}
.comment-time {
  font-size: 11px;
  color: #888;
}
.comment-name {
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.comment {
  position: relative;
  overflow: auto;
  background-color: #4446;
  padding: 0.1rem;
  border-radius: 5px;
  margin-bottom: 0.1rem;
  border: 1px solid #888;
}
#sub {
  margin: 0.5rem auto;
  display: block;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  width: 80%;
  color: #fff;
  background-color: #222a;
  padding: 6px;
  cursor: pointer;
}
.comment p {
  margin: 0;
  font-size: 13px;
}
