:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e6b325;
  --accent-dark: #b88c1d;
  --light: #f5f5f5;
  --danger: #dc3545;
  --success: #28a745;
  --transition: all 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  min-height: 100vh;
  overflow-x: hidden;
}

.welcome-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
}

.background-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: var(--transition);
}

.slide.active {
  opacity: 1;
}

.slide:nth-child(1) {
  background-image: url("/img/awards.jpg");
}

.slide:nth-child(2) {
  background-image: url("/img/awards1.jpg");
}

.slide:nth-child(3) {
  background-image: url("/img/awards2.jpg");
}

.slide:nth-child(4) {
  background-image: url("/img/awards3.jpg");
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(22, 33, 62, 0.85) 0%,
    rgba(26, 26, 46, 0.5) 100%
  );
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease forwards 0.5s;
}

.logo-container {
  margin-bottom: 2vh;
  width: 100%;
}

.logo {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(230, 179, 37, 0.4);
  letter-spacing: 2px;
  line-height: 1.2;
}

.tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-top: 1vh;
  opacity: 0.9;
  font-weight: 300;
}

.overview-container {
  width: 100%;
  margin: 6vh 0 6vh;
  padding: 20px;
}

.overview {
  font-size: (0.95rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  opacity: 0.9;
  text-align: left;
  margin: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: (40px, 50px);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-height: 60vh;
  overflow-y: auto;
}

.overview p {
  margin-bottom: 15px;
  padding: 0 15px;
}

.overview p:last-child {
  margin-bottom: 0;
}

.cta-container {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  padding: clamp(14px, 2.5vw, 18px) clamp(30px, 5vw, 45px);
  border-radius: 50px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(230, 179, 37, 0.3);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 179, 37, 0.5);
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover:before {
  left: 100%;
}

.awards-icon {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2vh;
  color: var(--accent);
  animation: pulse 2s infinite;
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 4s ease-in infinite;
  z-index: 3;
}

.sparkle:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 15%;
  right: 10%;
  animation-delay: 1s;
}

.sparkle:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.sparkle:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
  top: 50%;
  left: 5%;
  animation-delay: 0.5s;
}

.sparkle:nth-child(6) {
  top: 60%;
  right: 5%;
  animation-delay: 2.5s;
}

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

@keyframes sparkle {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

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

/* Scrollbar styling for overview */
.overview::-webkit-scrollbar {
  width: 6px;
}

.overview::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.overview::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .welcome-container {
    padding: 15px;
    justify-content: space-between;
  }

  .content {
    padding: 10px;
  }

  .overview {
    max-height: 45vh;
    padding: 15px;
  }

  .cta-button {
    padding: 16px 35px;
  }

  footer {
    bottom: 15px;
  }
}

@media (max-height: 700px) {
  .logo-container {
    margin-bottom: 1vh;
  }

  .overview-container {
    margin: 1vh 0 2vh;
  }

  .overview {
    max-height: 35vh;
  }

  .cta-container {
    margin-top: 1vh;
  }
}

@media (max-height: 500px) {
  .overview {
    max-height: 30vh;
    padding: 10px;
    font-size: 0.9rem;
  }

  .awards-icon {
    margin-bottom: 1vh;
  }
}

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

header {
  text-align: left;
  padding: 40px 0;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(230, 179, 37, 0.3);
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  opacity: 0;
  animation: fadeIn 1.5s forwards 0.5s;
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
  }
}

/* Add these styles to your existing CSS */

/* Tab Navigation Styles */
.tab-navigation {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.tab-btn.active {
  background: rgba(230, 179, 37, 0.2);
  color: var(--accent);
  box-shadow: 0 2px 10px rgba(230, 179, 37, 0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Enhanced category items for tabs */
.category-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

.category-list::-webkit-scrollbar {
  width: 6px;
}

.category-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.category-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* Category type indicators */
.category-item[data-category*="startup"] {
  border-left: 3px solid #4caf50;
}

.category-item[data-category*="existing"] {
  border-left: 3px solid #2196f3;
}

.category-item.active[data-category*="startup"] {
  background: rgba(76, 175, 80, 0.1);
}

.category-item.active[data-category*="existing"] {
  background: rgba(33, 150, 243, 0.1);
}

/* Voting area header enhancement */
.voting-area-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-badge {
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-startup {
  background: #4caf50;
  color: white;
}

.badge-existing {
  background: #2196f3;
  color: white;
}

/* Enhanced animations */
@keyframes tabSwitch {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content.active {
  animation: tabSwitch 0.4s ease;
}

/* Mobile responsive tabs */
@media (max-width: 768px) {
  .tab-navigation {
    flex-direction: column;
    gap: 5px;
  }

  .tab-btn {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .voting-area-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .category-badge {
    align-self: flex-start;
  }
}

.categories {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.categories h2 {
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-list {
  list-style: none;
}

.category-item {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.category-item.active {
  background: rgba(230, 179, 37, 0.2);
  border-left: 3px solid var(--accent);
}

.voting-area {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-title {
  color: var(--accent);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nominees {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.nominee-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(20px);
}

.nominee-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(230, 179, 37, 0.2);
}

.nominee-card.selected {
  background: rgba(230, 179, 37, 0.15);
  border-color: var(--accent);
}

.nominee-card.voted {
  background: rgba(40, 167, 69, 0.15);
  border-color: var(--success);
}

.nominee-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  border: 2px solid var(--accent);
  overflow: hidden;
}

.nominee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nominee-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.nominee-description {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.vote-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.vote-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.vote-btn:disabled {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  transform: none;
}

.voting-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vote-btn.disabled,
.vote-btn:disabled {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: not-allowed !important;
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.vote-btn.submitted {
  background: rgba(40, 167, 69, 0.2) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: var(--success) !important;
}

.nominee-card.voted-disabled {
  opacity: 0.7;
  pointer-events: none;
}

.vote-status {
  margin-left: 10px;
  font-size: 0.9em;
}

.submit-section {
  text-align: center;
  padding: 40px 0;
  opacity: 0;
}

.submit-btn {
  background: var(--success);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.submit-btn:disabled {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  padding: clamp(14px, 2.5vw, 18px) clamp(30px, 5vw, 45px);
  border-radius: 50px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(230, 179, 37, 0.3);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 179, 37, 0.5);
}

.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.cta-button:hover:before {
  left: 100%;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  margin-bottom: 20px;
}

.modal-title {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal-category {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.modal-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--accent);
  overflow: hidden;
  background: var(--secondary);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

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

.modal-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.modal-btn.confirm {
  background: var(--success);
  color: white;
}

.modal-btn.cancel {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
}

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

.success-modal .modal-content {
  background: linear-gradient(135deg, #1a3a1a, #2d5a2d);
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.progress-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 20px 0;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.3s ease;
}

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

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

.fade-in {
  animation: fadeIn 1s forwards;
}

footer {
  text-align: center;
  padding: 30px 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.confirmation {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  text-align: center;
  display: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.confirmation.show {
  display: block;
  animation: fadeIn 1s forwards;
}

.confirmation h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

.confirmation p {
  margin-bottom: 20px;
}

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

.fade-in {
  animation: fadeIn 1s forwards;
}

footer {
  text-align: center;
  padding: 30px 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* Sponsors Ticker Styles */
.sponsors-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.sponsors-header {
  text-align: left;
  margin-bottom: 60px;
  z-index: 11;
}

.sponsors-title {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.sponsors-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.ticker-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  gap: 40px;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.sponsor-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.sponsor-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(230, 179, 37, 0.2);
}

.sponsor-logo {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(0.3);
  opacity: 0.8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

.sponsor-name {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-align: justify;
}

.ticker-gradient-left,
.ticker-gradient-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-gradient-left {
  left: 0;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.ticker-gradient-right {
  right: 0;
  background: linear-gradient(270deg, var(--primary) 0%, transparent 100%);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 6 - 40px * 6));
  }
}

/* Reverse ticker for second row */
.ticker-track-reverse {
  animation: ticker-scroll-reverse 35s linear infinite;
}

@keyframes ticker-scroll-reverse {
  0% {
    transform: translateX(calc(-180px * 6 - 40px * 6));
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sponsor-item {
    width: 140px;
    height: 80px;
  }

  .sponsors-title {
    font-size: 1.5rem;
  }

  .ticker-track {
    gap: 30px;
  }

  @keyframes ticker-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-140px * 6 - 30px * 6));
    }
  }

  @keyframes ticker-scroll-reverse {
    0% {
      transform: translateX(calc(-140px * 6 - 30px * 6));
    }
    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 480px) {
  .sponsor-item {
    width: 120px;
    height: 70px;
  }

  .ticker-track {
    gap: 20px;
  }

  .sponsors-title {
    font-size: 1.3rem;
  }
}

/* Special Categories Styles */
.special-categories {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9),
    rgba(22, 33, 62, 0.9)
  );
  padding: 60px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.special-header {
  text-align: left;
  margin-bottom: 50px;
}

.special-title {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(230, 179, 37, 0.3);
}

.special-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
}

.special-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.special-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: left;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.special-card:hover::before {
  left: 100%;
}

.special-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(230, 179, 37, 0.2);
}

.special-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(230, 179, 37, 0.3);
}

.special-card-title {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.special-card-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.special-badge {
  display: inline-block;
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(40, 167, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.special-note {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.note-icon {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.special-note p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .special-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .special-card {
    padding: 25px 20px;
  }

  .special-note {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .note-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .special-title {
    font-size: 1.8rem;
  }

  .special-subtitle {
    font-size: 1rem;
  }

  .special-card-title {
    font-size: 1.2rem;
  }
}

/* Countdown Section */
.countdown-section {
  background: linear-gradient(135deg, #0c0c1a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-header {
  text-align: left;
  margin-bottom: 60px;
}

.countdown-title {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(230, 179, 37, 0.4);
  background: linear-gradient(45deg, #e6b325, #ffd700, #e6b325);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  font-weight: 300;
}

.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border: 2px solid #0078d4;
  border-radius: 25px;
  padding: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Circular Progress Countdown */
.countdown-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.circle-progress {
  position: relative;
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  margin: 0 auto;
}

.progress-ring {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.progress-ring-background {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.1);
}

.progress-ring-circle {
  fill: transparent;
  stroke: url(#gradient);
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
  filter: drop-shadow(0 0 10px rgba(230, 179, 37, 0.6));
}

.countdown-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.days-count {
  font-size: min(4rem, 12vw);
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(230, 179, 37, 0.8);
  line-height: 1;
}

.days-label {
  font-size: 1.2rem, 4vw;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-top: 5px;
}

.countdown-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
}

.nominee-form-btn {
  position: relative;
  background: linear-gradient(135deg, #0078d4, #005a9e);
  color: white;
  border: none;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.nominee-form-btn:hover {
  background: linear-gradient(135deg, #005a9e, #004578);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 120, 212, 0.4);
}

.nominee-form-btn::before {
  content: "(Nominees Only)";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: whitesmoke;
  font-weight: 600;
  white-space: nowrap;
}

.view-categories-btn {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
  border: none;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.view-categories-btn:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
  .countdown-actions {
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
  }

  .nominee-form-btn,
  .view-categories-btn {
    width: 100%;
    max-width: 280px;
  }

  .nominee-form-btn::before {
    font-size: 10px;
    top: -18px;
  }
}

/* Time Units Grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 500px;
  width: 100%;
}

.time-unit {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.time-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 179, 37, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.time-unit:hover::before {
  left: 100%;
}

.time-unit:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(230, 179, 37, 0.2);
}

.time-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(230, 179, 37, 0.5);
  margin-bottom: 8px;
}

.time-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Calendar Integration */
.calendar-integration {
  text-align: center;
  margin-top: 30px;
}

.calendar-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.calendar-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.calendar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ios-btn {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
}

.ios-btn:hover {
  background: linear-gradient(135deg, #333333, #555555);
}

.android-btn {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
}

.android-btn:hover {
  background: linear-gradient(135deg, #34a853, #4285f4);
}

.outlook-btn {
  background: linear-gradient(135deg, #0078d4, #00a4ef);
  color: white;
}

.outlook-btn:hover {
  background: linear-gradient(135deg, #00a4ef, #0078d4);
}

/* Floating Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 4px;
  height: 4px;
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  width: 8px;
  height: 8px;
  top: 40%;
  left: 20%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 40%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  width: 7px;
  height: 7px;
  top: 30%;
  left: 70%;
  animation-delay: 4s;
}

.particle:nth-child(6) {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 30%;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  width: 6px;
  height: 6px;
  top: 50%;
  left: 90%;
  animation-delay: 6s;
}

.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 10%;
  left: 60%;
  animation-delay: 7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

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

  .countdown-container {
    gap: 30px;
  }

  .circle-progress {
    width: 250px;
    height: 250px;
  }

  .days-count {
    font-size: 3rem;
  }

  .time-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 250px;
  }

  .time-unit {
    padding: 20px 15px;
  }

  .time-number {
    font-size: 2rem;
  }

  .calendar-buttons {
    flex-direction: column;
    align-items: center;
  }

  .calendar-btn {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .countdown-title {
    font-size: 1.8rem;
  }

  .countdown-subtitle {
    font-size: 1.1rem;
  }

  .circle-progress {
    width: 200px;
    height: 200px;
  }

  .days-count {
    font-size: 2.5rem;
  }
}

/* Unique UDUA Flow Section */
.uduaflow-section {
  background: linear-gradient(135deg, #0c0c1a 0%, #151528 50%, #1a1a2e 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(230, 179, 37, 0.1);
  border-bottom: 1px solid rgba(230, 179, 37, 0.1);
}

.uduaflow-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  overflow: hidden;
}

/* UDUA Flow Track */
.uduaflow-track {
  display: flex;
  animation: uduaflowScroll 25s linear infinite;
  gap: 0;
  padding: 25px 0;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.uduaflow-track:hover {
  animation-play-state: paused;
}

/* UDUA Flow Cards */
.uduaflow-card {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 15px 35px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 179, 37, 0.2);
  border-radius: 15px;
  margin: 0 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.uduaflow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 179, 37, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.uduaflow-card:hover::before {
  left: 100%;
}

.uduaflow-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 179, 37, 0.4);
  box-shadow: 0 10px 30px rgba(230, 179, 37, 0.2);
}

/* UDUA Flow Text */
.uduaflow-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: transparent;
  white-space: nowrap;
  background: linear-gradient(
    135deg,
    #e6b325 0%,
    #ffd700 25%,
    #ffed4e 50%,
    #ffd700 75%,
    #e6b325 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 200%;
  animation: uduaflowTextGlow 4s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(230, 179, 37, 0.4);
  position: relative;
  z-index: 2;
}

/* UDUA Flow Sparkle */
.uduaflow-sparkle {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 25px;
  position: relative;
  animation: uduaflowSparkleSpin 3s linear infinite;
}

.uduaflow-sparkle::before,
.uduaflow-sparkle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: uduaflowSparklePulse 2s ease-in-out infinite;
}

.uduaflow-sparkle::before {
  width: 16px;
  height: 16px;
  background: rgba(230, 179, 37, 0.3);
  animation-delay: 0.1s;
}

.uduaflow-sparkle::after {
  width: 24px;
  height: 24px;
  background: rgba(230, 179, 37, 0.15);
  animation-delay: 0.2s;
}

/* UDUA Flow Veils (Gradient Overlays) */
.uduaflow-veil {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.uduaflow-veil-left {
  left: 0;
  background: linear-gradient(90deg, #0c0c1a 0%, transparent 100%);
}

.uduaflow-veil-right {
  right: 0;
  background: linear-gradient(270deg, #0c0c1a 0%, transparent 100%);
}

/* UDUA Flow Aurora Background */
.uduaflow-aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.6;
}

.uduaflow-wave {
  position: absolute;
  width: 300%;
  height: 100px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 179, 37, 0.1),
    transparent
  );
  animation: uduaflowWaveMove 15s linear infinite;
}

.wave-1 {
  top: 20%;
  animation-delay: 0s;
  filter: blur(15px);
}

.wave-2 {
  top: 50%;
  animation-delay: -7s;
  filter: blur(20px);
  opacity: 0.4;
}

.wave-3 {
  top: 80%;
  animation-delay: -14s;
  filter: blur(25px);
  opacity: 0.3;
}

/* Animations */
@keyframes uduaflowScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

@keyframes uduaflowTextGlow {
  0%,
  100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.2);
  }
}

@keyframes uduaflowSparkleSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes uduaflowSparklePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes uduaflowWaveMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Interactive Effects */
.uduaflow-card:hover .uduaflow-text {
  animation: uduaflowTextGlow 1s ease-in-out infinite;
}

.uduaflow-card:hover .uduaflow-sparkle {
  animation: uduaflowSparkleSpin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .uduaflow-container {
    padding: 0 20px;
  }

  .uduaflow-card {
    padding: 12px 25px;
    margin: 0 10px;
  }

  .uduaflow-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .uduaflow-section {
    padding: 50px 0;
  }

  .uduaflow-track {
    animation-duration: 45s;
    padding: 20px 0;
  }

  .uduaflow-card {
    padding: 10px 20px;
    margin: 0 8px;
  }

  .uduaflow-text {
    font-size: 1rem;
  }

  .uduaflow-sparkle {
    margin-left: 15px;
  }

  .uduaflow-veil {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .uduaflow-container {
    padding: 0 15px;
  }

  .uduaflow-track {
    animation-duration: 10s;
  }

  .uduaflow-card {
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 12px;
  }

  .uduaflow-text {
    font-size: 0.9rem;
  }

  .uduaflow-sparkle {
    width: 6px;
    height: 6px;
    margin-left: 12px;
  }

  .uduaflow-veil {
    width: 60px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .uduaflow-track,
  .uduaflow-text,
  .uduaflow-sparkle,
  .uduaflow-wave {
    animation: none;
  }

  .uduaflow-track {
    animation: uduaflowScroll 90s linear infinite;
  }
}
