* {
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden;
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.game-navbar {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e, #4a6bff);
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  margin-bottom: 0;
  overflow: hidden;
}

.navbar-content {
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.game-navbar h1 {
  font-weight: 600;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  background: none;
  color: #ff9a9e;
  text-shadow: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Animated Background */
.bg-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}
/* Media Queries for responsiveness */
@media (min-width: 768px) {
  .game-navbar h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .game-navbar h1 {
    font-size: 3.5rem;
  }
}

.choice {
  height: 165px;
  width: 165px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice:hover {
  cursor: pointer;
  background-color: #081b31;
}

img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

.score-board {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-top: 3rem;
  gap: 5rem;
}

#user-score,
#comp-score {
  font-size: 4rem;
}

.msg-container {
display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 0 1rem;
  width: 100%;}

#msg {
  background-color: #081b31;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  text-align: center;
  word-break: break-word;
  max-width: 90vw;
  box-sizing: border-box;
  line-height: 1.3;
}