.content-wrapper {
  width: 100%;
  height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 200;
}

.proxy {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: var(--secondary-bg-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255, 204, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.proxy:hover {
  box-shadow: 0 0 30px rgba(255, 204, 255, 0.3);
  transform: scale(1.005);
}

.proxy iframe {
  width: 100%;
  height: 100%;
  border: none;
  z-index: 100;
}

.game-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 12px 24px;
  background: var(--secondary-bg-color);
  border: 2px solid var(--accent-color);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(255, 204, 255, 0.2);
  z-index: 1000;
  animation: pulseGlow 2s infinite;
}

/* Remove the old button styles and use the universal ones */
.game-bar button {
  padding: 8px 16px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    height: calc(100vh - 120px);
    padding: 10px;
  }

  .game-bar {
    padding: 8px 16px;
    gap: 8px;
  }

  .game-bar button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-height: 600px) {
  .content-wrapper {
    height: calc(100vh - 100px);
  }
}
