/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Core Theme */
body {
  font-family: "Courier New", monospace;
  background: #0a0a0f;
  color: #fff;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #00ffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: 0.1s;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: trail 0.6s ease-out;
}

@keyframes trail {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, #0a0a0f, #1a0a2e, #16213e, #0a0a0f);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header */
header {
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  padding: 5px 10px;
}

nav a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* Devfolio Button Wrapper */
.devfolio-btn-wrapper {
  margin-left: 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  position: relative;
}

.glitch {
  font-size: 80px;
  font-weight: bold;
  position: relative;
  color: #00ffff;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0%,
  100% {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
  }
  25% {
    text-shadow: -2px 0 #ff00ff, 2px 2px #00ffff;
  }
  50% {
    text-shadow: 2px -2px #00ffff, -2px 2px #ff00ff;
  }
  75% {
    text-shadow: -2px 2px #00ffff, 2px -2px #ff00ff;
  }
}

.hero-subtitle {
  font-size: 24px;
  margin: 20px 0;
  color: #ff00ff;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-item {
  background: rgba(0, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 10px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.countdown-value {
  font-size: 48px;
  color: #00ffff;
  font-weight: bold;
}

.countdown-label {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 15px 40px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Courier New", monospace;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
}

.btn-secondary:hover {
  background: #00ffff;
  color: #000;
}

/* Terminal Animation */
.terminal {
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #00ffff;
  font-size: 14px;
  width: 300px;
}

.terminal-line {
  color: #0f0;
  margin: 5px 0;
}

/* Sections */
.section-title {
  font-size: 48px;
  margin-bottom: 40px;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
}

/* About Section */
.about-section {
  padding: 80px 50px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1),
    rgba(255, 0, 255, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

/* Updated Member Photo Styles with Image Support */
.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.2);
  margin: 0 auto 20px;
  border: 2px solid #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #00ffff;
  overflow: hidden;
  position: relative;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback for when image fails to load */
.member-photo:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo:has(img) {
  color: transparent;
}

/* Judge Photo Styles */
.judge-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  border: 3px solid #ff00ff;
  overflow: hidden;
}

.judge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-title {
  font-size: 24px;
  color: #00ffff;
  margin-bottom: 15px;
}

.card-content {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

/* Tracks Section */
.tracks-section {
  padding: 80px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.track-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Courier New", monospace;
}

.filter-btn.active,
.filter-btn:hover {
  background: #00ffff;
  color: #000;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.track-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1),
    rgba(255, 0, 255, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.track-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}

.track-card:hover::before {
  opacity: 1;
}

.track-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.track-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #00ffff;
  text-align: center;
}

.track-title {
  font-size: 24px;
  color: #00ffff;
  margin-bottom: 15px;
  text-align: center;
}

.track-description {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.track-skills {
  margin-top: 20px;
}

.skills-title {
  font-size: 18px;
  color: #ff00ff;
  margin-bottom: 10px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(0, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #00ffff;
}

/* Prizes Section */
.prizes-section {
  padding: 80px 50px;
  text-align: center;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.prize-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1),
    rgba(255, 0, 255, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}

.prize-card:hover::before {
  opacity: 1;
}

.prize-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.prize-position {
  font-size: 60px;
  margin-bottom: 15px;
}

.gold {
  color: #ffd700;
}
.silver {
  color: #c0c0c0;
}
.bronze {
  color: #cd7f32;
}
.special {
  color: #ff00ff;
}

.prize-title {
  font-size: 24px;
  color: #00ffff;
  margin-bottom: 10px;
}

.prize-amount {
  font-size: 20px;
  color: #fff;
}

/* Teams Section */
.teams {
  padding: 80px 50px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1),
    rgba(255, 0, 255, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.team-name {
  font-size: 24px;
  color: #00ffff;
  margin-bottom: 15px;
}

.team-project {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.team-score {
  font-size: 32px;
  color: #ff00ff;
  font-weight: bold;
}

/* Sponsors Section */
.sponsors {
  padding: 80px 50px;
  text-align: center;
}

.carousel {
  display: flex;
  gap: 40px;
  overflow: hidden;
  padding: 20px;
}

.carousel-track {
   display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-logo {
  min-width: 200px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #00ffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00ffff;
  transition: 0.3s;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}

.sponsor-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

/* Timeline */
.timeline {
  margin: 80px 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, #00ffff, #ff00ff);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.1),
    rgba(255, 0, 255, 0.1)
  );
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00ffff;
  width: 40%;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #00ffff;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px #00ffff;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -50px;
}

.timeline-date {
  color: #ff00ff;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Team Section */
.team-section {
  padding: 80px 50px;
  text-align: center;
}

.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: rgba(0, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #00ffff;
  transition: 0.3s;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.2);
  margin: 0 auto 20px;
  border: 2px solid #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #00ffff;
}

.member-name {
  font-size: 20px;
  color: #00ffff;
  margin-bottom: 6px;
}

.member-role {
  font-size: 16px;
  color: #ff00ff;
  margin-bottom: 8px;
}

.member-bio {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.evaluator-section {
  padding: 80px 50px;
  text-align: center;
}

.evaluator-section .evaluator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.evaluator-member {
  background: rgba(0, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #00ffff;
  transition: 0.3s;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.evaluator-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.evaluator-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.2);
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 0, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #00ffff;
}

.evaluator-name {
  font-size: 20px;
  color: #00ffff;
  margin-bottom: 6px;
}

.evaluator-title {
  font-size: 48px;
  margin-bottom: 40px;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
}

.evaluator-role {
  font-size: 16px;
  color: #ff00ff;
  margin-bottom: 8px;
}

.evaluator-bio {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

/* Judges Section */
.judges-section {
  padding: 80px 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.judges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.judge-card {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 255, 0.1),
    rgba(0, 255, 255, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 0, 255, 0.3);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.judge-card::after {
  content: "⚖️";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  opacity: 0.3;
}

.judge-card:hover {
  transform: translateY(-10px) rotateZ(-1deg);
  box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
  border-color: #ff00ff;
}

.judge-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  border: 3px solid #ff00ff;
}

.judge-name {
  font-size: 22px;
  color: #ff00ff;
  margin-bottom: 8px;
  font-weight: bold;
}

.judge-designation {
  font-size: 16px;
  color: #00ffff;
  margin-bottom: 10px;
}

.judge-company {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 15px;
}

.judge-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.expertise-tag {
  background: rgba(255, 0, 255, 0.2);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  border: 1px solid #ff00ff;
  color: #fff;
}

/* FAQ Section */
.faq-section {
  padding: 80px 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.05),
    rgba(255, 0, 255, 0.05)
  );
  border-radius: 15px;
  margin-bottom: 15px;
  padding: 20px 30px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transform: translateX(5px);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #00ffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  color: #fff;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 15px;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: #ff00ff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: #00ffff;
}

/* Footer */
footer {
  padding: 50px;
  text-align: center;
  background: rgba(10, 10, 15, 0.9);
  border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 20px 0;
}

.social-links a {
  color: #00ffff;
  font-size: 24px;
  transition: 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 20px #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .glitch {
    font-size: 40px;
  }

  header {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  nav a {
    margin: 5px 10px;
  }

  .devfolio-btn-wrapper {
    margin: 10px 0;
    width: 100%;
  }

  .countdown-value {
    font-size: 36px;
  }

  .countdown-item {
    padding: 15px 20px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
  }

  .timeline-content::before {
    left: -40px !important;
    right: auto !important;
  }

  .terminal {
    display: none;
  }

  .tracks-section {
    padding: 40px 20px;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .track-filters {
    flex-direction: column;
    align-items: center;
  }

  .faq-question {
    font-size: 16px;
  }

  .judge-card::after {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .prizes-grid,
  .team-grid,
  .judges-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px;
  }

  .logo {
    font-size: 20px;
  }

  nav a {
    font-size: 14px;
    margin: 5px;
  }

  .glitch {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-section,
  .tracks-section,
  .prizes-section,
  .teams,
  .sponsors,
  .team-section,
  .judges-section,
  .faq-section {
    padding: 40px 20px;
  }
}

/* Devfolio Apply Button Styling */
.apply-button {
  display: inline-block;
  transition: transform 0.3s ease;
}

.apply-button:hover {
  transform: scale(1.05);
}

/* Make sure Devfolio button is responsive */
@media (max-width: 768px) {
  .apply-button {
    width: 100% !important;
    max-width: 312px;
  }

  .apply-button iframe {
    width: 100% !important;
  }
}

/* Connect Button Styles */
.member-connect,
.judge-connect {
  margin-top: 20px;
}

.connect-btn {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.connect-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.connect-btn:hover::before {
  left: 100%;
}

.connect-btn:hover {
  background: #00ffff;
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.connect-btn span {
  position: relative;
  z-index: 1;
}

/* Judge-specific connect button */
.judge-btn {
  border-color: #ff00ff;
  color: #ff00ff;
}

.judge-btn:hover {
  background: #ff00ff;
  color: #0a0a0f;
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.judge-btn::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 255, 0.4),
    transparent
  );
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .connect-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}



