/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Good Matcha', sans-serif;
  background-color: #0f0f1a;
  color: #fbebc7;
  overflow-x: hidden;
}

/* Header */
.Header {
  width: 100%;
  background-color: #17000D;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-align: center;
}

.LogoWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Logo {
  max-height: 160px;
  width: auto;
}

/* Main Layout */
.Home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  min-height: calc(100vh - 80px);
  animation: fadeIn 1.5s ease-in;
}

/* Form Container */
.FormContainer {
  width: 100%;
  max-width: 680px;
  background-color: #F2B3D2;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px #00EEFF;
  z-index: 1;
}

/* Form Title */
.FormTitle {
  font-family: 'Yellow Style', cursive;
  font-size: 36px;
  margin-bottom: 30px;
  color: #f3fe3b;
  text-align: center;
}

/* Form Elements */
label {
  display: block;
  margin: 20px 0 8px;
  font-weight: bold;
  font-family: 'AngerStyles', sans-serif;
  font-size: 16px;
}

input[type="text"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #DEA700;
  border-radius: 8px;
  background-color: #f8dbe9;
  color: #17000D;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Group video inputs */
.VideoInputs {
  margin-top: 20px;
}

/* Button */
button[type="button"] {
  background-color: #FFC107;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'WrathStyles', sans-serif;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

button[type="button"]:hover {
  background-color: #fada79;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  background-color: #F6A4EB;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 20px;
  background-color: #00A5FE;
  transition: width 0.4s ease;
}

/* Status */
.status {
  text-align: center;
  margin-top: 12px;
  font-weight: bold;
}

.status-success {
  color: green;
}

.status-error {
  color: red;
}

/* Footer */
.Footer {
  margin-top: 60px;
  width: 100%;
  height: 40px;
  background-color: #17000D;
  color: #DBC1CF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.3);
}

.AllRightsReserved {
  font-family: 'PirataOne-Regular', serif;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .FormContainer {
    padding: 24px;
  }

  .FormTitle {
    font-size: 28px;
  }

  button[type="button"] {
    font-size: 16px;
  }
}

