* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #000000;
  background: linear-gradient(
    125deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 48%,
    rgba(0, 0, 0, 1) 66%,
    rgba(69, 0, 0, 1) 83%,
    rgba(84, 2, 2, 1) 95%
  );
  background-attachment: fixed;
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

header {
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 50px;
  flex-wrap: wrap;
}

.header-image {
  width: clamp(80px, 12vw, 200px);
  height: 60px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.nav-container {
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  padding: 10px;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 1px;
  color: red;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.3s;
}

nav ul li {
  border-left: 1px solid black;
}

ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 20px;
  list-style: none;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: rgba(255, 0, 0, 0.1);
  color: white;
  border-color: #ff4d4d;
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 0, 0, 0.5);
  text-shadow:
    0 0 8px #fff,
    0 0 12px red;
  transform: scale(1.05);
  border-radius: 30px;
  border: 1px solid #ff4d4d;
}

.show-link4 {
  background-color: rgba(255, 0, 0, 0.1);
  color: white;
  border-color: #ff4d4d;
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 0, 0, 0.5);
  text-shadow:
    0 0 8px #fff,
    0 0 12px red;
  transform: scale(1.05);
  border-radius: 30px;
  border: 1px solid #ff4d4d;
}

.header {
  border: 1px solid red;
}

.hero {
  border: 1px solid white;
  margin-top: 3px;
}

.grid-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  width: 100%;
  margin-top: 20px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.chart-box {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px;
  width: 220px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.chart-box.red-glow {
  border-color: red;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.full-width {
  width: 100% !important;
  max-width: 940px;
  margin: 0 auto;
  display: block;
}

h2 {
  font-size: 13px;
  margin-bottom: 10px;
  color: #fbedd1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.red-text {
  color: red !important;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  color: #fbedd1;
}

.t1 {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  color: #ff8585;
}

td,
th {
  padding: 4px;
}

.all {
  margin-top: 1rem;
}

#tshirt {
  border-color: #ff8585;
  margin-bottom: 40px;
}

#tshirt h2 {
  color: #ff8585;
}

.pula {
  border: 1px solid red;
  position: relative;
  width: 100%;
  margin-top: auto;
}

.puti {
  border: 1px solid white;
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.all-footer {
  background-color: transparent;
  position: relative;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  color: white;
}

.kapi {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-top: 5px;
  margin-left: 10px;
  color: #fbedd1;
  font-size: 13px;
}

@media (max-width: 1000px) and (max-width: 768px) {
  body {
    padding-bottom: 20px;
  }

  header {
    height: auto;
    padding: 5px 24px;
    flex-direction: column;
  }

  .header-image {
    margin: 0 auto;
    padding: 5px;
    width: 80px;
    height: 60px;
  }

  .nav-container {
    padding-right: 0;
    width: 100%;
  }

  nav ul {
    gap: 4px;
    padding: 8px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li a {
    padding: 6px 10px;
    font-size: 11px;
  }

  .grid-container {
    padding: 10px;
  }

  .top-row {
    flex-direction: column;
    align-items: center;
  }

  .chart-box {
    width: 90%;
  }

  .full-width {
    width: 90% !important;
  }

  .kapi {
    font-size: 10px;
  }
}
