/* Main Container */
.container {
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  gap: 100px;
  align-items: center;
  position: relative;
}

.container2 {
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Header & Score Board */
.header {
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
}

.element-container {
  position: relative;
  width: 800px;
  height: 150px;
  padding: 15px 30px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.element-container:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
}

.score {
  display: flex;
  gap: 25px;
  align-items: center;
}

.Nscore {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  height: 115px;
  width: 135px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.Nscore:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: white;
}

/* Footer Areas */
.footer {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  position: absolute;
  top: 200px;
}

.footer2 {
  display: flex;
  gap: 50px;
  position: absolute;
  top: 300px;
}
