/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #ffffff; }
::-webkit-scrollbar-thumb { background: #ffffff; border-radius: 4px; }
::selection { background: rgba(27,96,167,.25); color: #1a2436; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1a2436;
  min-height: 100vh;
}

/* ========== TICKER ========== */
.ticker-wrapper {
  display: flex;
  align-items: center;
  background: #f0f4fa;
  height: 38px; border-bottom: 1px solid #e0e6ef;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}
.ticker-label {
  background: #1B60A7;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 6px;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  overflow: hidden;
  flex: 1;
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  color: #1a2436;
  font-size: .8rem;
  align-items: center;
  padding-left: 20px;
}
.ticker-content span { padding: 0 4px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  
  border-bottom: 2px solid #e0e6ef;
  
}
.navbar.scrolled { box-shadow: none; }
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #1B60A7;
  letter-spacing: .08em;
}
.logo-sub { font-size: .65rem; color: #E0DCDE; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: #1a2436;
  font-size: .85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  
}
.nav-link:hover, .nav-link.active {
  color: #1B60A7;
  background: rgba(27,96,167,.08);
}
.btn-register {
  background: #e84545;
  color: #fff !important;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  
}
.btn-register:hover {
  
  box-shadow: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B60A7;
  border-radius: 6px;
  
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== MAIN CONTENT ========== */
.main-content { padding-top: 102px; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f4380 0%, #1254a0 50%, #1a5dbf 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  opacity: .5;
  animation: float-particle 8s ease-in-out infinite;
}
@keyframes float-particle {
  0%,100% { transform: translateY(0) translateX(0); opacity: .5; }
  50%      { transform: translateY(-30px) translateX(15px); opacity: .2; }
}

.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 40px 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 6px 18px;
  border-radius: 6px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-badge .dot { width:8px;height:8px;border-radius: 50%;background:#00ff88;animation:pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: none; }
}
.hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2rem,5vw,3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff; background: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.hero-subtitle {
  font-size: clamp(1rem,2.5vw,1.3rem);
  color: #fdd87a;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: clamp(.9rem,2vw,1.05rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: #e84545;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  border: none; cursor: pointer;
}
.btn-primary:hover {  box-shadow: none; }
.btn-outline {
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #ffffff; }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fdd87a;
  display: block;
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: .1em; }

/* ========== SECTIONS ========== */
.section { padding: 80px 24px; background: #ffffff; }
.section-dark { background: #f7f8fc; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: Arial, sans-serif;
  font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #1a2436; background: none;
}
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #e84545, #1B60A7);
  margin: 0 auto 48px;
  border-radius: 6px;
}
.section-sub { text-align: center; color: #4a5568; font-size: 1rem; margin-bottom: 40px; }

/* ========== CARDS ========== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.card {
  background: #ffffff;
  border: 1px solid #e84545;
  border-radius: 10px;
  padding: 30px;
}
.card:hover {
  border-color: #c0392b;
  box-shadow: 0 4px 16px rgba(232,69,69,.12);
}
.card-icon { font-size: 2.2rem; margin-bottom: 18px; }
.card-title { font-size: 1.1rem; font-weight: 700; color: #111111; margin-bottom: 10px; }
.card-text { font-size: .9rem; color: #333333; line-height: 1.65; }

/* ========== PRIZE CARDS ========== */
.prizes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.prize-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e0e6ef;
  
  position: relative;
  overflow: hidden;
}
.prize-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.prize-card.gold::before   { background: linear-gradient(90deg,#f5a623,#f9d342); }
.prize-card.silver::before { background: linear-gradient(90deg,#8e9eab,#c0c9cf); }
.prize-card.bronze::before { background: linear-gradient(90deg,#c0693c,#e8a47c); }
.prize-card:hover {  box-shadow: none; }
.prize-icon { font-size: 3rem; margin-bottom: 14px; }
.prize-place { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: #676669; margin-bottom: 8px; }
.prize-amount {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.prize-desc { font-size: .85rem; color: #E0DCDE; }

/* ========== TIMELINE ========== */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 30px; top: 0; bottom: 0;
  width: 2px;
  background: #676669;
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  padding-left: 10px;
}
.timeline-dot {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #1B60A7;
  border: 3px solid #f4f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.timeline-body { padding-top: 8px; }
.timeline-date { font-size: .75rem; color: #85BBD7; font-weight: 600; letter-spacing: .08em; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.timeline-desc { font-size: .85rem; color: #E0DCDE; }

/* ========== TEAM ========== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.team-card {
  background: #ffffff;
  border: 1px solid #e0e6ef;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  
}
.team-card:hover {  }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #1B60A7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  color: #fff;
}
.team-name { font-size: 1rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.team-role { font-size: .8rem; color: #85BBD7; }

/* ========== CONTACT ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; color: #ffffff; margin-bottom: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: #4a5568;
  font-size: .95rem;
}
.contact-item i { color: #85BBD7; margin-top: 3px; font-size: 1.1rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; color: #4a5568; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  background: #ffffff;
  border: 1px solid #e0e6ef;
  border-radius: 6px;
  padding: 12px 14px;
  color: #1a2436;
  font-size: .9rem;
  font-family: Arial, sans-serif;
  
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #1B60A7;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  background: #e84545;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  
}
.btn-submit:hover {  box-shadow: none; }

/* ========== RIPPLE EFFECT ========== */
.ripple {
  position: absolute;
  border-radius: 50%;
  width: 8px; height: 8px;
  background: rgba(255,255,255,.35);
  transform: translate(-50%,-50%) scale(0);
  animation: ripple-anim .65s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: translate(-50%,-50%) scale(30); opacity: 0; }
}

/* ========== SCROLL REVEAL ========== */
.reveal-hidden {
  opacity: 0;
  
  
}
.reveal-hidden.revealed {
  opacity: 1;
  
}

/* ========== TYPING CURSOR ========== */
#typing-text::after {
  content: '|';
  animation: blink-cursor .75s step-end infinite;
  color: #85BBD7;
  margin-left: 2px;
}
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
  padding: 56px 24px;
  background: linear-gradient(135deg, #1B60A7 0%, #1a5a9f 100%);
  border-top: 1px solid rgba(0,102,255,.15);
  border-bottom: 1px solid rgba(0,102,255,.15);
  text-align: center;
}
.countdown-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #f0d060;
  font-weight: 700;
  margin-bottom: 10px;
}
.countdown-title {
  font-family: Arial, sans-serif;
  font-size: clamp(1.1rem,3vw,1.6rem);
  color: #fff;
  margin-bottom: 32px;
}
#countdown { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cd-block {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 20px 28px;
  min-width: 90px;
}
.cd-num {
  font-family: Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #f0d060;
  line-height: 1;
  display: block;
}
.cd-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  display: block;
}
.event-live {
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  color: #00ff88;
  font-weight: 800;
}

/* ========== ABOUT PAGE ========== */
.about-lead {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; margin-top: 40px; }
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #edf5fc;
  border: 1px solid #e84545;
  border-radius: 8px;
  padding: 20px;
}
.highlight-icon { font-size: 1.5rem; margin-top: 2px; }
.highlight-text h4 { color: #111111; font-size: .95rem; margin-bottom: 4px; }
.highlight-text p { color: #333333; font-size: .83rem; line-height: 1.55; }

/* ========== FOOTER ========== */
.footer {
  background: #1a2e4a;
  border-top: 1px solid rgba(0,102,255,.15);
  padding: 60px 24px 24px;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 36px; margin-bottom: 40px; }
.footer-heading { color: #ffffff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer-text { color: #E0DCDE; font-size: .85rem; line-height: 1.65; margin-bottom: 8px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #E0DCDE; text-decoration: none; font-size: .85rem;  }
.footer-links a:hover { color: #85BBD7; }
.footer-dates { list-style: none; font-size: .83rem; color: #E0DCDE; }
.footer-dates li { margin-bottom: 8px; }
.date-label { color: #85BBD7; font-weight: 600; }
.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: #85BBD7; font-size: .85rem;
  text-decoration: none;
  
}
.social-icon:hover { background: rgba(0,102,255,.35);  }
.btn-register-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: #e84545;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  
}
.btn-register-footer:hover {  box-shadow: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #1B60A7;
    padding: 20px;
    border-bottom: 1px solid rgba(0,102,255,.2);
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 14px; font-size: .95rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #countdown { gap: 12px; }
  .cd-block { padding: 14px 18px; min-width: 72px; }
  .cd-num { font-size: 2rem; }
  .section { padding: 56px 16px; }
  .hero-partner-logos { display: none; }
}
