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

body {
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

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

.whitepaper {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 60px 50px;
  margin-bottom: 30px;
}

.header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 3px solid #09cc7f;
  padding-bottom: 30px;
}

.title {
  font-size: 28px;
  color: #09cc7f;
  font-weight: 700;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 22px;
  color: #4a5568;
  font-style: italic;
  margin-bottom: 10px;
}

.event-details {
  background: #f7fafc;
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
  width: 100%;
}

.section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 20px;
  color: #09cc7f;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
}

.content {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 20px;
}

.definition-box {
  background: #edf2f7;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  padding: 25px;
  margin: 20px 0;
  font-style: italic;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
}

.column {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.column h4 {
  color: #09cc7f;
  margin-bottom: 15px;
  font-size: 16px;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.column li:before {
  content: "•";
  color: #38a169;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.awards-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.awards-table th {
  background: #09cc7f;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.awards-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e2e8f0;
}

.awards-table tr:hover {
  background: #f7fafc;
}

.highlight {
  background: #fed7d7;
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.submission-box {
  background: #c6f6d5;
  border: 1px solid #9ae6b4;
  border-radius: 6px;
  padding: 25px;
  margin: 20px 0;
}

.submission-box h4 {
  color: #22543d;
  margin-bottom: 15px;
}

.guidelines {
  background: #f0fff4;
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.guidelines ul {
  padding-left: 20px;
}

.guidelines li {
  margin-bottom: 10px;
}

.contact-info {
  background: #389969;
  color: white;
  padding: 30px;
  border-radius: 6px;
  text-align: center;
  margin-top: 30px;
}

.contact-info h3 {
  margin-bottom: 15px;
  color: white;
}

.contact-info p {
  margin-bottom: 10px;
  color: white;
}

.submission-cta {
  background: #f0fff4;
  padding: 40px;
  border-radius: 6px;
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #3b9c6c;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #09cc7f;
  background: #09cc7f;
  /* color: #1a365d; */
}

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

.btn-icon {
  font-size: 22px;
  animation: pulse 2s infinite;
}

.btn-arrow {
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-note {
  color: #1e573b;
  margin-top: 20px;
  font-size: 16px;
  opacity: 0.95;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: #09cc7f;
  color: white;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 15px;
  }

  .whitepaper {
    padding: 30px 15px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .guidelines {
    padding: 20px 10px;
  }

  .awards-table {
    font-size: 14px;
  }

  .awards-table th,
  .awards-table td {
    padding: 10px 8px;
  }

  .submission-cta {
    padding: 20px;
  }

  .submit-btn {
    gap: 6px;
    width: fit-content;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .submit-btn {
    padding: 14px 18px;
    font-size: 14px;
  }
}
/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0a1a1a 0%,
    #0d2b2b 25%,
    #1a4a4a 50%,
    #0d2b2b 75%,
    #0a1a1a 100%
  );
  padding: 80px 0 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(9, 204, 127, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(9, 204, 127, 0.08) 0%,
      transparent 50%
    );
  z-index: 2;
}

/* Floating Shapes Animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #09cc7f, transparent);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #09cc7f, transparent);
  bottom: 50px;
  left: -80px;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #09cc7f, transparent);
  top: 40%;
  right: 10%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #09cc7f, transparent);
  bottom: 20%;
  right: 25%;
  animation-delay: -15s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-20px, -20px) scale(0.9);
  }
  75% {
    transform: translate(15px, 30px) scale(1.05);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(9, 204, 127, 0.15);
  border: 1px solid rgba(9, 204, 127, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 20px 8px 12px;
  border-radius: 50px;
  color: #09cc7f;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  animation: fadeInDown 0.8s ease;
}

.badge-pulse {
  width: 10px;
  height: 10px;
  background: #09cc7f;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, #09cc7f, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #09cc7f, transparent);
  border-radius: 2px;
}

.hero-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(9, 204, 127, 0.5));
}

.hero-line:last-child {
  background: linear-gradient(90deg, rgba(9, 204, 127, 0.5), transparent);
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  white-space: nowrap;
  margin: 0;
  padding: 0 10px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
}

.meta-item i {
  color: #09cc7f;
  font-size: 16px;
}

.meta-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 45px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #09cc7f, #059669);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(9, 204, 127, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(9, 204, 127, 0.5);
  color: #fff;
  text-decoration: none;
}

.btn-primary-hero i {
  transition: transform 0.3s ease;
}

.btn-primary-hero:hover i {
  transform: translateX(5px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #09cc7f;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.08);
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .hero-line {
    max-width: 60px;
  }

  .hero-subtitle {
    font-size: 16px;
    white-space: normal;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .meta-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary-hero,
  .btn-outline-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-divider {
    display: none;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
  }
}
.hero-minimal {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.hero-minimal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 204, 127, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-minimal::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(9, 204, 127, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-minimal-content {
    position: relative;
    z-index: 2;
}

.hero-minimal-tag {
    display: inline-block;
    background: rgba(9, 204, 127, 0.1);
    color: #09cc7f;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-minimal-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-minimal-title span {
    display: block;
    background: linear-gradient(135deg, #09cc7f, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-minimal-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 25px;
}

.hero-minimal-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #09cc7f, #34d399);
    border-radius: 2px;
    margin: 0 auto 25px;
}

.hero-minimal-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.info-item i {
    color: #09cc7f;
    font-size: 16px;
}

.hero-minimal-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-minimal-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #09cc7f, #059669);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 204, 127, 0.25);
}

.btn-minimal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 204, 127, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-minimal-primary i {
    transition: transform 0.3s ease;
}

.btn-minimal-primary:hover i {
    transform: translateX(4px);
}

.btn-minimal-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-minimal-outline:hover {
    border-color: #09cc7f;
    color: #09cc7f;
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-minimal-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 24px;
    font-weight: 800;
    color: #2d3748;
    line-height: 1.2;
}

.stat-desc {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider-minimal {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-minimal {
        padding: 50px 0 30px;
    }
    
    .hero-minimal-title {
        font-size: 30px;
    }
    
    .hero-minimal-subtitle {
        font-size: 17px;
    }
    
    .hero-minimal-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .hero-minimal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-minimal-primary,
    .btn-minimal-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-minimal-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-divider-minimal {
        display: none;
    }
}