/* Custom Fonts */
@font-face {
  font-family: "Franklin Gothic Demi Cond";
  src: url("./fonts/Franklin Gothic Demi Cond Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic Medium Cond";
  src: url("./fonts/Franklin Gothic Medium Cond Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Knockout-29JuniorLtweight";
  src: url("./fonts/Knockout-29JuniorLtweight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Knockout-48Featherweight";
  src: url("./fonts/Knockout-48Featherweight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  background-color: #080808;
  color: white;
  font-family: "Knockout-48Featherweight", sans-serif;
  overflow-x: hidden;
}

/* Utility Classes */
.font-knockout-feather {
  font-family: "Knockout-48Featherweight", sans-serif;
}

.font-knockout-junior {
  font-family: "Knockout-29JuniorLtweight", sans-serif;
}

.font-franklin-demi {
  font-family: "Franklin Gothic Demi Cond", sans-serif;
}

.font-franklin-medium {
  font-family: "Franklin Gothic Medium Cond", sans-serif;
}

/* Custom button styles */
.btn-participate {
  background-color: #f05e00;
  color: white;
  border: none;
  padding: 12px 24px;
  font-family: "Knockout-48Featherweight", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-participate:hover {
  background-color: #d64f00;
  transform: translateY(-2px);
}

.btn-submit {
  background-color: white;
  color: black;
  border: 2px solid white;
  font-family: "Knockout-29JuniorLtweight", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 416px;
  height: 57px;
}

.btn-submit:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Form input styles */
.form-input {
  background-color: rgba(255, 255, 255, 0.09);
  border: 2px solid white;
  color: white;
  padding: 12px 16px;
  font-family: "Knockout-48Featherweight", sans-serif;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #f05e00;
  background-color: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: #c6c6c6;
  font-size: 20px;
}

.form-label {
  font-family: "Knockout-48Featherweight", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
  display: block;
}

/* Prize section styles */
.prize-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Knockout-48Featherweight", sans-serif;
  font-size: 48px;
  color: black;
  font-weight: normal;
}

.prize-circle-large {
  width: 102px;
  height: 102px;
  font-size: 80px;
}

.prize-label {
  background-color: black;
  border: 1px solid white;
  padding: 8px 16px;
  font-family: "Knockout-48Featherweight", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

/* Checkbox styles */
.custom-checkbox {
  width: 26px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.09);
  border: 2px solid #383838;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
}

.custom-checkbox:checked {
  background-color: #f05e00;
  border-color: #f05e00;
}

.custom-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prize-circle {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }

  .prize-circle-large {
    width: 80px;
    height: 80px;
    font-size: 60px;
  }

  .prize-label {
    font-size: 14px;
    padding: 6px 12px;
  }
}
