:root {
  --gamer-yellow: #ffb400;
  --gamer-cyan: #00fbff;
  --gamer-dark-blue: #00143d;
  --gamer-bg-start: #007c8c;
  --gamer-bg-end: #00143d;
  --gamer-input-bg: rgba(0, 20, 61, 0.4);
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

body {
  background: radial-gradient(circle at top left, var(--gamer-bg-start), var(--gamer-bg-end));
  background-attachment: fixed;
  color: white;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  min-height: 100vh;
}

/* Ocultar flechas en inputs de tipo número */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: none;
}

.container {
  padding: 40px 15px;
}

/* --- Hero Section --- */
.container-info {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Overlap with text */
  z-index: 10;
}

.hero-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--gamer-yellow);
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  padding: 8px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.title-juega {
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.8;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 20;
  transform: skew(-10deg);
}

.title-juega .white {
  color: white;
  display: block;
}

.title-juega .yellow {
  color: var(--gamer-yellow);
  display: block;
  font-size: 105px;
  margin-left: 30px;
  text-shadow: 2px 2px 0px var(--gamer-dark-blue);
}

.main-title-gamecard {
  font-size: 26px;
  margin-top: 3rem;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
}

.main-title-gamecard strong {
  color: var(--gamer-yellow);
}

/* --- Benefits Section --- */
.benefits-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon img{
  width: 60px;
}

.benefit-text {
  font-size: 13px;
}

.benefit-text strong {
  display: block;
  color: white;
}

.participation-section {
  margin-top: 40px;
  position: relative;
  border: 1px solid var(--gamer-yellow);
  padding: 25px 20px 20px;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  width: 80%;
}

.participation-title {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #004d5b;
  /* Approximate color for labels overlap */
  padding: 0 15px;
  font-size: 14px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}

.prize-item i {
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
  display: block;
}

.prize-item img {
  width: 50px;
}


.prize-item span {
  font-size: 11px;
  display: block;
  opacity: 0.9;
}

/* --- Form Styles --- */
.container-content {
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
}

.form-title {
  color: var(--gamer-yellow);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.container-input {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Simple rounded corners */
  overflow: hidden;
  height: 50px;
  border: 1px solid var(--gamer-yellow);
  margin-bottom: 15px;
  background: rgba(0, 50, 80, 0.4);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Removed :after and :before pseudo-elements for clean look */

.form-control {
  background: transparent !important;
  border: none !important;
  color: white !important;
  height: 100% !important;
  padding: 0 15px !important;
  /* Standard padding */
  font-size: 14px;
  
}

.form-control:focus {
  box-shadow: none !important;
}

.form-control::placeholder {
  color: white !important;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.2rem center !important;
  background-size: 14px 10px !important;
}

.form-check-label {
  font-size: 13px;
  color: white;
}

.form-control option{
 background: rgba(0, 50, 80, 0.6);
}

.btn-gamecard {
  background: var(--gamer-cyan) !important;
  color: white !important;
  /* White text as in image */
  border: none !important;
  font-weight: 700 !important;
  text-transform: none;
  /* Standard casing */
  width: auto;
  min-width: 180px;
  padding: 10px 40px !important;
  border-radius: 0px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* Match inputs */
  margin-top: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  align-self: center;
  /* Center the button if possible, or keep layout */
}

.btn-gamecard:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(0, 251, 255, 0.3);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .title-juega {
    font-size: 60px;
  }

  .title-juega .yellow {
    font-size: 75px;
  }

  .container-content {
    margin-top: 40px;
  }
}