* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  animation: fadeInUp 1.2s ease;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Guidelines Section */
.guidelines {
  padding: 80px 0;
  background: linear-gradient(180deg, #000 0%, #1a1a2e 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guidelines-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: start;
}

.guidelines-image {
  position: sticky;
  top: 100px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.feature-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
}

.overlay-text h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #667eea;
}

.overlay-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
}

.guidelines-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.guideline-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.guideline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.4);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.item-icon {
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.item-icon .iconify {
  color: #667eea;
  transition: all 0.3s ease;
}

.guideline-item:hover .item-icon .iconify {
  color: #764ba2;
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.6));
}

.item-content h3 {
  font-size: 1.4rem;
  color: #667eea;
  margin-bottom: 12px;
}

.item-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.item-content ul li {
  color: #b0b0b0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.item-content ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 1.2rem;
}

.item-content ul li strong {
  color: #e0e0e0;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.submission-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-group-header {
  margin: 40px 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.form-group-header h3 {
  font-size: 1.8rem;
  color: #667eea;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 25px;
}

.form-group label {
  margin-bottom: 8px;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
  color: #999;
  font-size: 0.85rem;
  margin-top: 5px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #e0e0e0;
}

.radio-label input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
  accent-color: #667eea;
}

.checkbox-group {
  margin: 30px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
  color: #e0e0e0;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 12px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: #667eea;
  width: 18px;
  height: 18px;
}

.form-actions {
  text-align: center;
  margin-top: 40px;
}

.submit-button {
  padding: 18px 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.submit-button:active {
  transform: translateY(-1px);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.contact-item .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-item h3 {
  color: #667eea;
  margin-bottom: 10px;
}

.contact-item p {
  color: #b0b0b0;
}

/* Footer */
.footer {
  padding: 30px 0;
  background: #000;
  text-align: center;
  color: #666;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.loading-overlay.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-overlay p {
  margin-top: 20px;
  color: #fff;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .submission-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .guidelines-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .guidelines-image {
    position: relative;
    top: 0;
  }

  .feature-image {
    height: 400px;
  }

  .guideline-item {
    flex-direction: column;
    gap: 15px;
  }

  .item-icon {
    width: 100%;
  }
}

/* Select Dropdown Styling */
select option {
  background: #1a1a2e;
  color: #fff;
}
/* Iconify Icons Global */
.iconify {
  font-size: 32px;
}

/* Guideline Icons */
.item-icon .iconify {
  font-size: 34px;
  color: #667eea;
  transition: all 0.3s ease;
}

/* Hover Animation */
.guideline-item:hover .item-icon .iconify {
  color: #764ba2;
  transform: scale(1.2) rotate(6deg);
  filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.6));
}

/* Contact Icons */
.contact-item .icon .iconify {
  font-size: 40px;
  color: #667eea;
  transition: all 0.3s ease;
}

.contact-item:hover .icon .iconify {
  color: #764ba2;
  transform: scale(1.15);
}
