html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.7em;
  background-color: black;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 5px 100px;
}

.nav-left {
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}

.nav a {
  color: #c8c8c8;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

h1,
h3,
p {
  color: white;
}

h2 {
  color: #c8c8c8;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6em;
}

.yellow {
  color: #fcc800;
}

.red {
  color: #fa4141;
}

.cs2-icon {
  display: inline-flex;
  align-items: center;
  background-color: #fcc800;
  color: black;
  width: 50px;
  height: 45px;
  border-radius: 10px;
  justify-content: center;
  font-size: 18px;
}

#kodu {
  background: url("../assets/hero.jpg") no-repeat center center/cover;
  height: 100%;
  width: 100%;
  text-align: center;
  padding-bottom: 100px;
}

#kodu h1 {
  padding-top: 200px;
  font-size: 25px;
  line-height: 1.2em;
}

.stats-container {
  justify-content: center;
  display: flex;
  gap: 30px;
  padding-top: 40px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  width: 250px;
  text-align: center;
  backdrop-filter: blur(3px);
}

.icon {
  background-color: #fcc800;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #222;
}

.value {
  font-size: 1.7rem;
  color: #fcc800;
  margin-bottom: 0.25rem;
}

.label {
  font-size: 0.8rem;
  padding: 5px;
  color: #c8c8c8;
}

#PH {
  padding-top: 100px;
  text-align: center;
}

#PH h1 {
  font-size: 20px;
  line-height: 1.2em;
}

#PH h2 {
  padding: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 20px 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.video-card {
  border: 1px solid #242424;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.video-player {
  flex: 1;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.video-info {
  background-color: #171717;
  padding: 6px 8px;
}

.video-info h3 {
  margin: 0;
  text-align: left;
  font-size: 15px;
}

.video-info p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #c8c8c8;
  text-align: left;
}

#VM {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

#VM h1 {
  padding-top: 100px;
  font-size: 20px;
  line-height: 1.2em;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
}

.match-card {
  background-color: #0f0f0f;
  border-radius: 10px;
  border: 0.5px solid #242424;
  padding: 20px 25px;
  width: 90%;
  max-width: 500px;
  color: white;
  margin: 0 auto;
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.kaart {
  font-size: 18px;
  font-weight: 600;
  margin-right: 10px;
}

.win {
  background-color: #023919;
  color: #59dc38;
  border: 0.5px solid #59dc38;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
}

.lose {
  background-color: #280101;
  color: #dd1f1f;
  border: 0.5px solid #9f0000;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
}

.score {
  font-size: 20px;
  font-weight: 600;
}

.date {
  color: #b5b5b5;
  font-size: 13px;
  margin-bottom: 18px;
  margin-left: 0;
  text-align: left;
}

.match-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.stat-item {
  background-color: #141414;
  border-radius: 8px;
  padding: 10px 0;
  flex: 1;
  margin: 0 5px;
}

.stat-item:first-child {
  margin-left: 0;
}

.stat-item:last-child {
  margin-right: 0;
}

.stat-label {
  font-size: 12px;
  color: #c8c8c8;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

#Kontakt {
  background-color: #030303;
  color: #ccc;
  border: 0.5px solid #0e0e0e;
  padding: 35px 60px;
  display: flex;
  justify-content: center;
}

.kontakt-container {
  left: 70px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 70px;
  max-width: 220px;
  width: 100%;
}

.kontakt-block {
  flex: 1;
  min-width: 250px;
}

.kontakt-block h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kontakt-block:first-child h3 {
  top: -10px;
  position: relative;
}

.kontakt-block p {
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ikoonid {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.ikoonid .social {
  padding: 4px 4px;
  background: #282828;
  border: 0.5px solid #282828;
  border-radius: 8px;
  color: #c8c8c8;
  font-size: 22px;
  transition: color 0.3s;
}

.ikoonid .social:hover {
  color: #fff;
}

footer {
  color: #7e7e7e;
  padding: 12px;
  text-align: center;
  font-size: 0.8rem;
}
