.hero-section p{
    font-family: 'Glyphic', sans-serif;
    color: #F7B536;
    text-shadow: 0 1px 5px black;
    font-size: 30px;
    font-weight: 400;
}

.hero-section button {
    position: relative;
    font-family: 'Glyphic', sans-serif;
    font-size: 20px;
    padding: 10px 30px;
    background: linear-gradient(to right, #B98D50, #8D435A);
    border-radius: 20px;
    cursor: pointer;
    border: none;
    z-index: 0;
    overflow: hidden;
    transition: 0.2s ease-out;
}

.hero-section button::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #F7B536; /* Inner background */
    border-radius: 18px; /* Slightly smaller to match curve */
    z-index: -1;
}

.hero-section button:hover{
  transform: scale(1.1);  
  background: linear-gradient(to right, #F7B536, #B98D50);
}

.hero-section button:hover::before {
    background-color: #ffbf49; /* Inner background */
}

.description-container {
  background-color: #C4AD76;
  box-shadow: 2px 5px 10px black;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
  margin: 0 auto 150px auto;
  position: relative;
}

.description-text-color {
  color: #6A3231;
}

.description-header {
  font-family: "Cinzel", sans-serif;
  font-weight: 100;
  font-size: 28px;
  color: #6A3231;
}

.description-body {
  margin: 20px 0px 20px 0px;
  min-height: 100px;
  font-family: "Glyphic", sans-serif;
  font-weight: 100;
  font-size: 15px;
  color: #6A3231;
}

.container-body {
  display: flex;
}

.container-text {
  font-size: 25px;
  margin-right: 300px;
}

.upload-btn {
  position: relative;
  font-family: 'Glyphic', sans-serif;
  font-size: 16px;
  padding: 12px 25px;
  background: linear-gradient(to right, #8D435A, #6A3231);
  color: white;
  border-radius: 15px;
  cursor: pointer;
  border: none;
  margin-top: 15px;
  z-index: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.upload-btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: #F7B536;
  border-radius: 13px;
  z-index: -1;
  transition: 0.3s ease-out;
}

.upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.upload-btn:hover::before {
  background-color: #ffbf49;
}

.upload-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.upload-modal-content {
  background: linear-gradient(135deg, #C4AD76 0%, #B98D50 100%);
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: modalSlideIn 0.3s ease-out;
  border: 2px solid #6A3231;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.upload-modal-header {
  background: linear-gradient(to right, #8D435A, #6A3231);
  color: white;
  padding: 20px;
  border-radius: 13px 13px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upload-modal-header h2 {
  font-family: 'Cinzel', sans-serif;
  font-size: 20px;
  margin: 0;
  color: #F7B536;
}

.close-modal {
  color: #F7B536;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-modal:hover {
  color: #ffbf49;
  transform: scale(1.1);
}

.upload-modal-body {
  padding: 25px;
}

.upload-modal-body p {
  font-family: 'Glyphic', sans-serif;
  color: #6A3231;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

/* Link Input Styles */
.link-input-area {
  margin-bottom: 20px;
}

.link-input {
  width: 100%;
  padding: 15px;
  border: 3px solid #8D435A;
  border-radius: 10px;
  font-family: 'Glyphic', sans-serif;
  font-size: 14px;
  color: #6A3231;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.3s ease;
  box-sizing: border-box;
}

.link-input:focus {
  outline: none;
  border-color: #F7B536;
  background-color: white;
  box-shadow: 0 0 10px rgba(247, 181, 54, 0.3);
}

.link-input::placeholder {
  color: #8D435A;
  opacity: 0.7;
}

.upload-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.upload-submit-btn, .upload-cancel-btn {
  font-family: 'Glyphic', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
  min-width: 120px;
}

.upload-submit-btn {
  background: linear-gradient(to right, #8D435A, #6A3231);
  color: white;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.upload-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.upload-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.upload-cancel-btn {
  background: rgba(106, 50, 49, 0.1);
  color: #6A3231;
  border: 2px solid #8D435A;
}

.upload-cancel-btn:hover {
  background: rgba(141, 67, 90, 0.2);
  transform: translateY(-2px);
}

.final-btn {
  display: none;
}

.da-btn-container {
  display: flex;
}

.left-gear{
  top: 20%;
}

.right-gear{
  top: 55%;
}

.right-cloud{
  top: -10%;
  z-index: -1;
}

.airship{
  top: 10%;
  width: 40% ;
}

.spinning-cogs.sponsor{
  position: absolute;
  left: 70% !important;
  top: 40% !important;
  z-index: -1;
}

.left-gear.sponsor{
  top: 80%;
  z-index: -1;
}

.competition-section{
  position: relative;
}

.competition-flower {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 15vw;
}

@media (max-width: 768px) {
  .competition-flower {
    display: none;
  }
  .container-text {
    margin-right: 0;
  }

  .spinning-cogs.sponsor{
    position: absolute;
    left: 55% !important;
    top: 60% !important;
    width: 80vw !important;
    z-index: -1;
  }

  .left-gear.sponsor{
    display: none;
  }

  .upload-modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .upload-actions {
    flex-direction: column;
    align-items: center;
  }

  .upload-submit-btn, .upload-cancel-btn {
    width: 100%;
    max-width: 200px;
  }
}