:root{
  --ut-blue:#005baa;
  --ut-dark:#003b73;
  --ut-cyan:#00a3e0;
  --ut-gold:#f6b801;
  --text:#13233a;
  --muted:#617089;
  --shadow:0 30px 80px rgba(0,58,115,.18);
}

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

body{
  font-family:Poppins,Arial,sans-serif;
  color:var(--text);
  overflow-x:hidden;
}

/* BACKGROUND */
.fusion-bg{
  position:relative;
  overflow-x:hidden;
  background:linear-gradient(135deg,#f7fcff,#eaf7ff 45%,#fffaf0);
}

.fusion-bg::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    radial-gradient(circle at 15% 20%,rgba(0,163,224,.14),transparent 32%),
    radial-gradient(circle at 85% 12%,rgba(246,184,1,.10),transparent 30%),
    linear-gradient(135deg,#f7fcff,#eaf7ff 45%,#fffaf0);
}

#networkCanvas{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-2;
  pointer-events:none;
  opacity:.34;
}

.bg-glow{
  position:fixed;
  width:300px;
  height:300px;
  border-radius:50%;
  filter:blur(60px);
  opacity:.24;
  z-index:-1;
  pointer-events:none;
  animation:floatingGlow 14s ease-in-out infinite alternate;
}

.bg-glow.one{
  left:8%;
  top:18%;
  background:rgba(0,163,224,.20);
}

.bg-glow.two{
  right:8%;
  top:24%;
  background:rgba(246,184,1,.16);
  animation-delay:1.5s;
}

.bg-glow.three{
  left:42%;
  bottom:8%;
  background:rgba(0,91,170,.14);
  animation-delay:2.5s;
}

@keyframes floatingGlow{
  from{transform:translateY(0) translateX(0) scale(1);}
  to{transform:translateY(-25px) translateX(18px) scale(1.05);}
}

/* LAYOUT */
.container{
  width: min(1440px, 95%);
  margin:auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:99;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 8px 24px rgba(0,59,115,.10);
  border-bottom:1px solid rgba(255,255,255,.75);
}

.nav-wrap{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:4px;
  text-decoration:none;
  min-width:0;
  flex-shrink:0;
}
.logo-ut,
.logo-fusion{
  height:90px;
  width:auto;
  display:block;
  object-fit:contain;
  flex-shrink:0;
}

.fusion-brand{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1;
  margin-right:1px;
}

.fusion-title-header{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.fusion-header-word{
  font-size:38px;
  font-weight:900;
  color:var(--ut-blue);
  letter-spacing:-1px;
}

.fusion-header-year{
  font-size:24px;
  font-weight:900;
  color:var(--ut-gold);
  margin-top:1px;
}

.brand-divider{
  width:2px;
  height:40px;
  margin-left:2px;
  margin-right:8px;
  background:linear-gradient(to bottom,transparent,var(--ut-blue),var(--ut-cyan),transparent);
  border-radius:10px;
  flex-shrink:0;
}

.brand-tagline{
  max-width:230px;
  font-size:10.5px;
  line-height:1.28;
  color:#0c3a8a;
  font-weight:700;
  letter-spacing:.2px;
}

.brand:hover .brand-divider{
  box-shadow:0 0 12px rgba(0,163,224,.35);
}

/* NAVIGATION */
.main-nav{
  display:flex;
  align-items:center;
  gap:20px;
}

.main-nav a{
  text-decoration:none;
  color:var(--ut-dark);
  font-weight:700;
  font-size:12px;
}

.main-nav a.active,
.main-nav a:hover{
  color:var(--ut-cyan);
}

.register-link{
  padding:13px 20px;
  border-radius:14px!important;
  background:linear-gradient(135deg,var(--ut-blue),#385fc8);
  color:#fff!important;
  box-shadow:0 12px 25px rgba(0,91,170,.25);
}

.nav-toggle{
  display:none;
  border:0;
  background:var(--ut-blue);
  color:#fff;
  border-radius:10px;
  padding:8px 12px;
  font-size:22px;
}

/* HERO */
.hero{
  position:relative;
  padding:30px 0 70px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%,rgba(0,163,224,.10),transparent 32%),
    radial-gradient(circle at 80% 10%,rgba(246,184,1,.08),transparent 28%);
  pointer-events:none;
}

.hero-grid{
    display:grid;

    grid-template-columns:55% 45%;

    gap:60px;

    align-items:start; /* dari center menjadi start */
}

.hero-content{
  position:relative;
  z-index:2;
  padding:70px 60px;
}

/* GLASS CARD */
.glass-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(255,255,255,.72),rgba(255,255,255,.32));
  border:1px solid rgba(38, 25, 222, 0.85);
  border-radius:36px;
  backdrop-filter:blur(35px) saturate(180%);
  -webkit-backdrop-filter:blur(35px) saturate(180%);
  box-shadow:
    0 25px 60px rgba(0,59,115,.10),
    0 8px 20px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(255,255,255,.25);
}

.glass-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(255,255,255,.55),transparent 35%);
  pointer-events:none;
}

.glass-card::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  top:-120px;
  left:-120px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  filter:blur(40px);
  pointer-events:none;
}

.glass-card > *{
  position:relative;
  z-index:2;
}

/* HERO TEXT */
.badge,
.mini-title,
.section-title span,
.timeline-badge{
  display:inline-block;
  background:rgba(255,255,255,.55);
  border:1.5px solid rgba(14, 50, 229, 0.75);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  color:var(--ut-blue);
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,91,170,.08);
}

.fusion-title{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
  margin:20px 0 30px;
  line-height:1;
}

.fusion-word{
  font-size:clamp(42px,5vw,78px);
  font-weight:900;
  letter-spacing:-3px;
  background:linear-gradient(180deg,#b8ecff 0%,#5fd4ff 25%,#00a3e0 60%,#005baa 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
  filter:
    drop-shadow(0 0 10px rgba(0,163,224,.25))
    drop-shadow(0 0 25px rgba(0,91,170,.15));
}

.fusion-word::before{
  content:"FUSION";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.95),transparent 40%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  opacity:.65;
  pointer-events:none;
}

.fusion-year{
  font-size:clamp(42px,5vw,72px);
  font-weight:900;
  letter-spacing:-3px;
  position:relative;
  background:linear-gradient(180deg,#fffef2 0%,#ffe98a 18%,#ffd447 40%,#f6b801 65%,#d48b00 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 1px 0 rgba(255,255,255,.4);
  filter:drop-shadow(0 4px 10px rgba(246,184,1,.18));
}

.theme{
  max-width:720px;
  font-size:30px;
  line-height:1.55;
  color: #0d4190;
}

.theme strong{
  color:var(--ut-blue);
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:1.2px;
  display:block;
  margin-bottom:0px;
}

.lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 850px; /* Naikkan dari 780px */
}

/* BUTTONS */
.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:35px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding:15px 28px;
  border-radius:16px;
  font-weight:700;
  transition:.35s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  color:#fff;
  box-shadow:0 15px 35px rgba(0,91,170,.25);
}

.btn-primary:hover{
  transform:translateY(-5px);
  box-shadow:0 25px 45px rgba(0,91,170,.35);
}

.btn-outline{
  border:2px solid var(--ut-blue);
  color:var(--ut-blue);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.btn-outline:hover{
  background:var(--ut-blue);
  color:#fff;
}

/* HERO VISUAL */
.hero-visual{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    min-height:auto;

    padding-top:20px;
}

.fusion-logo {
    width: 100%;
    max-width: 700px; /* Naikkan batas maksimalnya */
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    animation: fusionFloat 6s ease-in-out infinite;
    filter:
      drop-shadow(0 0 20px rgba(0,163,224,.30))
      drop-shadow(0 0 40px rgba(0,91,170,.18));
}
.hero-visual{
    justify-self:end;
}

@keyframes fusionFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
}

@keyframes glowPulse{
  0%,100%{transform:scale(1);opacity:.45;}
  50%{transform:scale(1.06);opacity:.65;}
}

@keyframes rotateRing{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* SECTION */
.section{
  padding:10px 0;
}

.section.alt{
  background:rgba(255,255,255,.38);
}

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 38px;
}

.section-title h2,
.split h2,
.page-hero h1,
.timeline-header h2{
  font-size:24px;
  color:var(--ut-dark);
  margin:8px 0;
}

.section-title p{
  color:var(--muted);
}

/* INFO CARD */
.card-grid{
  display:grid;
  gap:48px;
}

.card-grid.three{
  grid-template-columns:repeat(3,1fr);
}

.info-card{
  padding:30px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(188, 216, 25, 0.85);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border-radius:24px;
  box-shadow:0 12px 35px rgba(0,59,115,.08);
  transition:.4s;
}

.info-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,59,115,.12);
}

.info-card .icon{
  font-size:42px;
}

.info-card h3{
  color:var(--ut-dark);
  margin:14px 0 10px;
}

.info-card p{
  color:var(--muted);
  line-height:1.7;
}

/* TIMELINE */
.timeline-card{
  padding:60px;
  border-radius:36px;
}

.timeline-header{
  margin-bottom:24px;
  text-align:left;
}

.timeline-badge{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.fusion-timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.fusion-timeline::before{
  content:"";
  position:absolute;
  top:35px;
  left:5%;
  right:5%;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--ut-blue),var(--ut-cyan),var(--ut-gold));
  box-shadow:0 0 15px rgba(0,163,224,.25);
}

.timeline-item{
  position:relative;
  text-align:center;
  padding-top:80px;
}

.timeline-dot{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  background:rgba(94, 109, 189, 0.72);
  border:2px solid rgba(94, 109, 189, 0.72);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:
    0 15px 35px rgba(0,91,170,.15),
    inset 0 1px 0 rgba(255,255,255,.95);
  z-index:2;
  transition:.4s;
}

.timeline-item h3{
  color:var(--ut-blue);
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
}

.timeline-item p{
  color:#4c607f;
  font-size:15px;
  line-height:1.6;
  font-weight:500;
}

.timeline-item:hover .timeline-dot{
  transform:translateX(-50%) translateY(-8px);
  box-shadow:0 20px 40px rgba(0,163,224,.25);
}

/* SPLIT CONTENT */
.split{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:40px;
  align-items:center;
}

.timeline{
  padding:30px;
}

.timeline div{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid rgba(0,91,170,.12);
}

.timeline div:last-child{
  border:0;
}

.timeline span{
  color:var(--ut-blue);
  font-weight:700;
}

/* PAGE CONTENT */
.page-hero{
  padding:70px 0 30px;
}

.page-card{
  padding:24px;
  margin:24px 0;
}

.page-card p,
.page-card li{
  line-height:1.8;
  color:var(--muted);
}

.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:20px;
}

.table th,
.table td{
  padding:16px;
  border-bottom:1px solid rgba(0,91,170,.12);
  text-align:left;
}

.table th{
  background:rgba(0,91,170,.1);
  color:var(--ut-dark);
}


/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:.7s;
}

.reveal.show{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .brand-tagline,
  .brand-divider{
    display:none;
  }

  .main-nav{
    gap:18px;
  }

  .main-nav a{
    font-size:13px;
  }
}

@media(max-width:900px){
  .nav-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:72px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    padding:18px;
    border-radius:22px;
    box-shadow:var(--shadow);
  }

  .main-nav.open{
    display:flex;
  }

  .hero-grid,
  .split,
  .footer-grid{
    grid-template-columns: 1.2fr 1fr;
  }

  .card-grid.three{
    grid-template-columns: 1.2fr 1fr;
  }

  .hero{
    padding-top:35px;
  }

  .hero-content{
    padding:40px 28px;
  }

  .fusion-title{
    flex-direction:row;
    gap:10px;
  }

  .fusion-word,
  .fusion-year{
    font-size:48px;
    letter-spacing:-2px;
  }

  .theme{
    font-size:30px;
    line-height: 1.55;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .nav-wrap{
    height:70px;
  }

  .logo-ut,
  .logo-fusion{
    height:32px;
  }

  .fusion-header-word{
    font-size:24px;
  }

  .fusion-header-year{
    font-size:17px;
  }

  .timeline-card{
    padding:35px;
  }

  .fusion-timeline{
    grid-template-columns:1fr;
    gap:35px;
  }

  .fusion-timeline::before{
    top:0;
    bottom:0;
    left:35px;
    right:auto;
    width:5px;
    height:auto;
  }

  .timeline-item{
    text-align:left;
    padding-left:100px;
    padding-top:0;
    min-height:80px;
  }

  .timeline-dot{
    left:0;
    transform:none;
  }

  .timeline-item:hover .timeline-dot{
    transform:translateY(-5px);
  }
}

@media(max-width:560px){
  .fusion-title{
    flex-wrap:wrap;
  }

  .fusion-word,
  .fusion-year{
    font-size:42px;
  }

  .hero-content{
    padding:34px 24px;
  }

  .fusion-logo{
    max-width:700px;
  }

  .hero-visual::before,
  .hero-visual::after{
    width:360px;
    height:360px;
  }
}
/* ===============================
   SUB THEME CARD
================================ */

.subtheme-section{
    padding:25px 0 5px;
}

/* ===============================
   SUB THEME HEADER
================================ */

.subtheme-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;
}

.subtheme-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    background:
    linear-gradient(
        135deg,
        var(--ut-blue),
        var(--ut-cyan)
    );

    color:#fff;

    font-size:28px;

    box-shadow:
    0 12px 25px rgba(0,91,170,.18);
}

.subtheme-title{

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.subtheme-label{

    font-size:11px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--ut-blue);

    margin-bottom:4px;
}

.subtheme-title h2{

    font-size:34px;

    font-weight:800;

    color:var(--ut-dark);

    margin:0;
}

.subtheme-line{

    width:120px;

    height:4px;

    margin-top:10px;

    border-radius:999px;

    background:
    linear-gradient(
        90deg,
        var(--ut-blue),
        var(--ut-cyan),
        var(--ut-gold)
    );
}


.subtheme-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:24px;
}

.subtheme-item{

    min-height:150px;

    padding:28px;

    border-radius:28px;

    background:
    rgba(255,255,255,.58);

    border:
    1px solid rgba(255,255,255,.85);

    backdrop-filter:
    blur(22px);

    box-shadow:
    0 15px 40px rgba(0,59,115,.08);

    transition:.35s;
}

.subtheme-item:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 25px 50px rgba(0,91,170,.14);
}

.subtheme-number{

    margin-bottom:18px;
}

@media(max-width:900px){

    .subtheme-grid{

        grid-template-columns:1fr;
    }
}
/* ===============================
   FUTURISTIC EVENT INFO CARD
================================ */

.event-info-section{
  padding:55px 0 35px;
}

.event-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.event-info-card{
  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;
  gap:24px;

  min-height:150px;
  padding:28px 30px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.78),
      rgba(255,255,255,.36)
    );

  border:1px solid rgba(255,255,255,.9);
  border-radius:28px;

  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);

  box-shadow:
    0 20px 50px rgba(0,59,115,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.event-info-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,.75),
      transparent 42%
    );
  pointer-events:none;
}

.event-info-card::after{
  content:"";
  position:absolute;
  top:22px;
  right:22px;
  width:28px;
  height:28px;
  border-top:2px solid var(--ut-cyan);
  border-right:2px solid var(--ut-cyan);
  border-radius:0 8px 0 0;
  opacity:.7;
}

.event-info-card:hover{
  transform:translateY(-7px);
  box-shadow:
    0 28px 70px rgba(0,91,170,.16),
    0 0 24px rgba(0,163,224,.15),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.event-info-card > *{
  position:relative;
  z-index:2;
}

.event-icon{
  position:relative;
  flex-shrink:0;

  width:78px;
  height:78px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;
  color:#fff;

  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.85), transparent 22%),
    linear-gradient(145deg, var(--ut-blue), var(--ut-cyan), #80c342);

  box-shadow:
    0 15px 35px rgba(0,91,170,.22),
    0 0 0 8px rgba(0,163,224,.08),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.event-icon::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:50%;
  border:1.5px solid rgba(0,163,224,.28);
  border-left-color:transparent;
  animation:iconOrbit 8s linear infinite;
}

.event-info-card h3{
  color:var(--ut-dark);
  font-size:26px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:12px;
}

.event-info-card p{
  color:#005be0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
}

.event-info-card p strong{
  font-weight:900;
}

.event-info-card span{
  display:block;
  color:#003b73;
  font-size:16px;
  line-height:1.35;
  font-weight:500;
}

.event-info-card .mini-line{
  display:block;
  width:74px;
  height:4px;
  margin-top:18px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--ut-blue),var(--ut-cyan));
  opacity:.8;
}

.event-info-card.gold::after{
  border-color:var(--ut-gold);
}

.event-info-card.gold .mini-line{
  background:linear-gradient(90deg,var(--ut-gold),rgba(246,184,1,.25));
}

@keyframes iconOrbit{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

/* Responsive */

@media(max-width:1100px){
  .event-info-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .event-info-grid{
    grid-template-columns:1fr;
  }

  .event-info-card{
    min-height:auto;
    padding:24px;
  }

  .event-icon{
    width:64px;
    height:64px;
    font-size:28px;
  }

  .event-info-card h3{
    font-size:22px;
  }

  .event-info-card p{
    font-size:16px;
  }
}
/* ===============================
   FIX CONTENT SIZE - PROPORTIONAL
================================ */

.hero{
  padding:20px 0 45px;
}

.hero-grid{
  gap:60px;
}

.hero-content{
  padding:42px 42px;
}

.fusion-word{
  font-size:clamp(38px,4.2vw,62px);
}

.fusion-year{
  font-size:clamp(38px,4.2vw,58px);
}

.theme{
  font-size:30px;
  lline-height: 1.55;
  max-width:800px;
}

.theme strong{
  font-size:15px;
}

.hero-actions{
  margin-top:26px;
}

.dashboard-actions .btn{
  height:38px;
  min-width:120px;
  font-size:12px;
  padding:0 16px;
}

.fusion-logo{
  max-width:700px;
}

.hero-visual::before{
  width:380px;
  height:380px;
}

.hero-visual::after{
  width:400px;
  height:400px;
}

/* EVENT INFO */
.event-info-section{
  padding:15px 0;
}

.event-info-grid{
  gap:12px;
}

.event-info-card{
  min-height:80px;
  padding:12px 16px;
  gap:10px;

  border-radius:18px;
}

.event-icon{
  width:40px;
  height:40px;
  font-size:18px;
}

.event-info-card h3{
  font-size:13px;
  margin-bottom:2px;
  font-weight:700;
}

.event-info-card p{
  font-size:12px;
  line-height:1.3;
  margin:0;
}

.event-info-card span{
  font-size:10px;
  line-height:1.2;
}

/* TIMELINE */
.timeline-card{
  padding:34px 36px;
}

.timeline-dot{
  width:58px;
  height:58px;
  font-size:23px;
}

.fusion-timeline::before{
  top:28px;
  height:5px;
}

.timeline-item{
  padding-top:68px;
}

.timeline-item h3{
  font-size:16px;
}

.timeline-item p{
  font-size:13px;
}

/* SUB THEME */
.subtheme-section{
    padding:25px 0 5px;
}

.subtheme-card{
  padding:34px 40px;
}

.subtheme-icon{
  font-size:30px;
}

.subtheme-header h2{
  font-size:28px;
}

.subtheme-line{
  width:160px;
  height:4px;
}

.subtheme-list{
  gap:14px 28px;
}

.subtheme-list li{
  font-size:16px;
  line-height:1.65;
}

.hero-grid{
    display:grid;
    grid-template-columns:58% 42%;
    gap:60px;
    align-items:center;
}

.hero-content{
    align-self:center;
}

.hero-visual{
    align-self:center;
    justify-self:center;
}

.fusion-logo{
    max-width:700px;
}
/* ===============================
   FUTURISTIC SUB THEME
================================ */

.subtheme-section{
    padding:25px 0 5px;
}

.subtheme-card{
  width:min(1120px,100%);
  margin:auto;
  padding:46px 52px;
  border-radius:34px;
}

.subtheme-header{
  display:flex;
  align-items:center;
  gap:22px;
  margin-bottom:34px;
}

.subtheme-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color:#fff;
  background:
    radial-gradient(circle at 30% 20%,rgba(255,255,255,.75),transparent 25%),
    linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  box-shadow:
    0 16px 35px rgba(0,91,170,.22),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.subtheme-label{

    display:inline-block;

    font-size:11px;

    font-weight:800;

    letter-spacing:1.5px;

    text-transform:uppercase;

    color:var(--ut-blue);

    margin-bottom:4px;
}

.subtheme-header h2{
  font-size:42px;
  line-height:1;
  font-weight:900;
  color:var(--ut-dark);
  margin:0;
}

.subtheme-line{
  width:210px;
  height:5px;
  margin-top:14px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--ut-blue),var(--ut-cyan),var(--ut-gold));
}

.subtheme-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.subtheme-item{
  position:relative;
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:22px 24px;
  min-height:116px;
  border-radius:24px;
  background:rgba(255,255,255,.46);
  border:1px solid rgba(255,255,255,.8);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 12px 32px rgba(0,59,115,.07);
  overflow:hidden;
  transition:.35s ease;
}

.subtheme-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(255,255,255,.55),transparent 38%);
  pointer-events:none;
}

.subtheme-item::after{
  content:"";
  position:absolute;
  top:18px;
  right:18px;
  width:22px;
  height:22px;
  border-top:2px solid rgba(0,163,224,.5);
  border-right:2px solid rgba(0,163,224,.5);
  border-radius:0 8px 0 0;
}

.subtheme-item:hover{
  transform:translateY(-6px);
  box-shadow:
    0 22px 45px rgba(0,91,170,.12),
    0 0 24px rgba(0,163,224,.12);
}

.subtheme-number{
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  font-weight:900;
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  box-shadow:0 12px 28px rgba(0,91,170,.20);
}

.subtheme-item p{
  position:relative;
  z-index:2;
  color:#4c607f;
  font-size:16px;
  line-height:1.65;
  font-weight:600;
}

@media(max-width:900px){
  .subtheme-card{
    padding:36px 28px;
  }

  .subtheme-header{
    gap:16px;
  }

  .subtheme-icon{
    width:58px;
    height:58px;
    font-size:28px;
  }

  .subtheme-header h2{
    font-size:34px;
  }

  .subtheme-list{
    grid-template-columns:1fr;
  }
}
.hero{
    padding:20px 0 10px;
}

.hero-grid{
    align-items:center;
}

.hero-visual{
    min-height:auto;
}

.subtheme-section{
    padding:25px 0 5px;
}
/* ==================================
   FUTURISTIC TIMELINE
================================== */

.timeline-section{
    padding-top:10px;
    padding-bottom:60px;
}

.timeline-header-modern{

    text-align:center;

    margin-bottom:30px;
}

.timeline-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.65);

    border:1px solid rgba(255,255,255,.85);

    backdrop-filter:blur(12px);

    color:var(--ut-blue);

    font-size:12px;

    font-weight:800;

    letter-spacing:1.5px;

    text-transform:uppercase;
}

.timeline-header-modern h2{

    margin-top:5px;

    font-size:20px;

    font-weight:900;

    color:var(--ut-dark);
}

.timeline-header-modern p{

    max-width:600px;

    color:#617089;

    margin-top:10px;
}

.timeline-glass{

    position:relative;

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:15px;
}

.timeline-line{

    position:absolute;

    left:8%;
    right:8%;

    top:42px;

    height:6px;

    border-radius:999px;

    background:
    linear-gradient(
        90deg,
        var(--ut-blue),
        var(--ut-cyan),
        var(--ut-gold)
    );

    z-index:1;
}

.timeline-modern-item{

    position:relative;

    z-index:2;

    text-align:center;
}

.timeline-node{

    width:74px;
    height:74px;

    margin:auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--ut-blue),
        var(--ut-cyan)
    );

    color:#fff;

    font-size:22px;
    font-weight:800;

    box-shadow:
        0 15px 35px rgba(0,91,170,.20),
        0 0 25px rgba(0,163,224,.18);

    position:relative;
}

.timeline-node::before{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:50%;

    border:1px solid rgba(0,163,224,.25);

    animation:pulseNode 3s infinite;
}

.timeline-content{

    margin-top:28px;

    padding:24px;

    border-radius:24px;

    background:
    rgba(255,255,255,.55);

    border:
    1px solid rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    box-shadow:
    0 12px 35px rgba(0,59,115,.08);

    transition:.35s;
}

.timeline-content:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,91,170,.14);
}

.timeline-content h3{

    color:var(--ut-blue);

    font-size:16px;

    font-weight:800;

    margin-bottom:10px;
}

.timeline-content p{

    color:#5f7392;

    line-height:1.6;
}

.timeline-modern-item.active .timeline-node{

    background:
    linear-gradient(
        135deg,
        var(--ut-gold),
        #ffd95a
    );

    color:#003b73;
}

@keyframes pulseNode{

    0%{
        transform:scale(1);
        opacity:.6;
    }

    100%{
        transform:scale(1.25);
        opacity:0;
    }
}

/* Mobile */

@media(max-width:1000px){

    .timeline-glass{

        grid-template-columns:1fr;

        gap:30px;
    }

    .timeline-line{

        display:none;
    }

    .timeline-modern-item{

        display:flex;
        gap:20px;
        align-items:flex-start;

        text-align:left;
    }

    .timeline-node{

        width:70px;
        height:70px;

        flex-shrink:0;
    }

    .timeline-content{

        margin-top:0;
        width:100%;
    }
}

/* ==================================
   FUSION VIDEO
================================== */

.fusion-video-section{
    padding-top:0;
    padding-bottom:70px;
}

.video-header{
    text-align:center;
    margin-top:-20px;
    margin-bottom:30px;
}

.video-header h2{

    font-size:40px;

    color:var(--ut-dark);

    margin-top:15px;

    margin-bottom:12px;

    font-weight:900;
}

.video-header p{

    color:#617089;

    max-width:720px;

    line-height:1.8;
}

.fusion-video-card{

    display:grid;

    grid-template-columns:
    420px 1fr;

    gap:35px;

    padding:30px;

    border-radius:36px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.72),
        rgba(255,255,255,.35)
    );

    border:
    1px solid rgba(255,255,255,.9);

    backdrop-filter:
    blur(25px);

    box-shadow:
    0 20px 50px rgba(0,91,170,.08);
}

.video-info h3{

    color:var(--ut-dark);

    font-size:28px;

    margin-bottom:15px;

    font-weight:800;
}

.video-info p{

    color:#617089;

    line-height:1.8;

    margin-bottom:20px;
}

.video-info ul{

    list-style:none;
}

.video-info li{

    padding:10px 0;

    color:#003b73;

    font-weight:600;
}

.video-info li::before{

    content:"✦";

    color:var(--ut-gold);

    margin-right:10px;
}

.video-frame{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    box-shadow:
    0 20px 45px rgba(0,91,170,.12);
}

.video-frame iframe{

    width:100%;

    height:100%;

    min-height:420px;

    border:0;
}

/* MOBILE */

@media(max-width:900px){

    .fusion-video-card{

        grid-template-columns:1fr;
    }

    .video-frame iframe{

        min-height:280px;
    }
}
/* ==================================
   FUSION GLASS FOOTER
================================== */

.site-footer{

    margin-top:20px;
    padding:10px 0;

    position:relative;
}

.footer-glass{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.75),
        rgba(255,255,255,.45)
    );

    border:
    1px solid rgba(255,255,255,.9);

    border-radius:36px;

    backdrop-filter:
    blur(28px);

    box-shadow:
    0 20px 60px rgba(0,91,170,.08);

    overflow:hidden;
}

.footer-glass::before{

    content:"";

    position:absolute;

    left:0;
    right:0;
    top:0;

    height:4px;

    background:
    linear-gradient(
        90deg,
        #005baa,
        #00a3e0,
        #f6b801
    );
}

.footer-grid{
    display:grid;
    grid-template-columns:
        1.3fr
        1.2fr
        1.1fr;

    column-gap:80px;
}

/* BRAND */

.footer-logo-combined{

    width:200px;
    height:auto;

    object-fit:contain;

    filter:
    drop-shadow(0 0 14px rgba(255,255,255,.25));

    transform:translateY(-20px);
}

.footer-brand-text h3{

    font-size:48px;
    font-weight:900;

    line-height:1;

    margin-bottom:5px;

    background:
    linear-gradient(
        135deg,
        #005baa,
        #00a3e0
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}


.footer-brand-text h3 span{

    color:#f6b801;

    -webkit-text-fill-color:#f6b801;
}

.footer-brand-text p{

    color:#4f607c;
    line-height:1.8;
}

/* LINKS */

.footer-links{

    list-style:none;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    text-decoration:none;

    color:#003b73;

    font-weight:600;
}

.footer-links a:hover{

    color:#00a3e0;
}

/* TITLE */

.site-footer h4{

    margin-bottom:18px;

    color:#003b73;

    font-size:20px;

    font-weight:800;
}

/* CONTACT */

.footer-contact p{

    margin-bottom:10px;

    line-height:1.5;

    color:#5f7392;
}

.footer-contact i{

    color:#005baa;

    width:20px;
}

/* COPYRIGHT */

.footer-bottom{

    text-align:center;

    padding:20px;

    border-top:
    1px solid rgba(0,91,170,.08);

    color:#617089;

    font-size:14px;
}
.footer-glass{
    padding:50px 40px 0;
}
/* ===============================
   CONFERENCE FEE PAGE
================================ */

.fee-hero{
  padding:55px 0 25px;
}

.fee-hero h1{
  margin-top:16px;
  color:var(--ut-dark);
  font-size:46px;
  font-weight:900;
}

.fee-hero p{
  max-width:700px;
  margin-top:10px;
  color:#617089;
  line-height:1.8;
}

.fee-section{
  padding:35px 0 70px;
}

.fee-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.fee-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  padding:36px 32px;
  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.76),
      rgba(255,255,255,.36)
    );

  border:1px solid rgba(255,255,255,.9);

  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);

  box-shadow:
    0 22px 55px rgba(0,59,115,.10),
    inset 0 1px 0 rgba(255,255,255,.95);

  transition:.35s;
}

.fee-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,.65),
      transparent 42%
    );

  pointer-events:none;
}

.fee-card::after{
  content:"";
  position:absolute;
  top:24px;
  right:24px;

  width:32px;
  height:32px;

  border-top:2px solid var(--ut-cyan);
  border-right:2px solid var(--ut-cyan);
  border-radius:0 10px 0 0;

  opacity:.7;
}

.fee-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 30px 70px rgba(0,91,170,.16),
    0 0 28px rgba(0,163,224,.14),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.fee-card > *{
  position:relative;
  z-index:2;
}

.fee-card.featured{
  border:1.5px solid rgba(246,184,1,.55);
}

.fee-card.featured::after{
  border-color:var(--ut-gold);
}

.fee-icon{
  width:72px;
  height:72px;
  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:30px;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255,255,255,.75),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ut-blue),
      var(--ut-cyan)
    );

  box-shadow:
    0 16px 35px rgba(0,91,170,.22),
    inset 0 1px 0 rgba(255,255,255,.65);

  margin-bottom:26px;
}

.fee-card.featured .fee-icon{
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255,255,255,.75),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ut-gold),
      #ffd95a
    );

  color:#003b73;
}

.fee-category{
  display:inline-block;

  color:var(--ut-blue);

  font-size:13px;
  font-weight:900;

  letter-spacing:1.5px;

  text-transform:uppercase;

  margin-bottom:14px;
}

/* Fee List */

.fee-list{
  margin-top:18px;
}

.fee-row{
  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:18px;

  padding:12px 0;

  border-bottom:1px solid rgba(0,91,170,.08);
}

.fee-row:last-child{
  border-bottom:none;
}

.fee-row strong{
  color:#003b73;

  font-size:14px;
  font-weight:800;

  min-width:140px;
}

.fee-row span{
  color:#5f7392;

  font-size:14px;
  font-weight:700;

  text-align:right;
}

.fee-row small{
  display:inline-block;

  margin-left:6px;

  padding:3px 8px;

  border-radius:999px;

  background:rgba(0,91,170,.08);

  color:var(--ut-blue);

  font-size:11px;
  font-weight:800;

  text-transform:uppercase;
}

.free-badge{
  display:inline-block;

  padding:5px 12px;

  border-radius:999px;

  background:rgba(16,185,129,.12);

  color:#0a9d57 !important;

  font-size:13px !important;
  font-weight:900 !important;
}

.free-badge small{
  margin-left:6px;
  background:rgba(16,185,129,.14);
  color:#0a9d57;
}

.fee-line{
  width:90px;
  height:4px;

  border-radius:999px;

  margin-top:28px;

  background:
    linear-gradient(
      90deg,
      var(--ut-blue),
      var(--ut-cyan)
    );
}

.fee-card.featured .fee-line{
  background:
    linear-gradient(
      90deg,
      var(--ut-gold),
      rgba(246,184,1,.25)
    );
}

/* Payment Note */

.fee-note{
  margin-top:30px;
  padding:26px 30px;

  display:flex;
  align-items:flex-start;
  gap:18px;

  border-radius:26px;
}

.fee-note-icon{
  width:52px;
  height:52px;

  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  color:#fff;
  font-size:24px;

  background:
    linear-gradient(
      135deg,
      var(--ut-blue),
      var(--ut-cyan)
    );
}

.fee-note h3{
  color:var(--ut-dark);

  font-size:22px;
  font-weight:900;

  margin-bottom:8px;
}

.fee-note p{
  color:#617089;
  line-height:1.7;
}

/* Responsive */

@media(max-width:900px){

  .fee-grid{
    grid-template-columns:1fr;
  }

  .fee-hero h1{
    font-size:38px;
  }

  .fee-note{
    flex-direction:column;
  }

  .fee-row{
    align-items:flex-start;
  }

  .fee-row strong{
    min-width:120px;
  }
}

@media(max-width:560px){

  .fee-row{
    flex-direction:column;
    gap:6px;
  }

  .fee-row span{
    text-align:left;
  }
}
/* ===============================
   PAYMENT INFORMATION
================================ */

.payment-card{

    margin-top:30px;

    padding:35px;

    border-radius:30px;
}

.payment-header{

    display:flex;
    align-items:center;

    gap:18px;

    margin-bottom:30px;
}

.payment-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        var(--ut-blue),
        var(--ut-cyan)
    );
}

.payment-header h3{

    color:var(--ut-dark);

    font-size:28px;

    font-weight:900;

    margin-bottom:5px;
}

.payment-header p{

    color:#617089;
}

.payment-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:0px;

    margin-bottom:5px;
}

.payment-item{

    padding:18px;

    border-radius:18px;

    background:
    rgba(255,255,255,.45);

    border:
    1px solid rgba(255,255,255,.85);
}

.payment-item span{

    display:block;

    color:#617089;

    font-size:13px;

    margin-bottom:8px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.payment-item strong{

    color:#003b73;

    font-size:18px;

    font-weight:800;
}

.reference-box{

    padding:25px;

    border-radius:20px;

    background:
    rgba(246,184,1,.08);

    border:
    1px solid rgba(246,184,1,.25);
}

.reference-box h4{

    color:#b07a00;

    margin-bottom:15px;

    display:flex;
    align-items:center;
    gap:10px;
}

.reference-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:15px;
}

.reference-tags span{

    padding:10px 18px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #f6b801,
        #ffd95a
    );

    color:#003b73;

    font-weight:800;

    font-size:13px;
}

.reference-box p{

    color:#617089;

    line-height:1.7;
}

@media(max-width:768px){

    .payment-grid{

        grid-template-columns:1fr;
    }
}
/* ===============================
   PUBLICATION PAGE
================================ */

.publication-hero{
  padding:55px 0 25px;
}

.publication-hero h1{
  margin-top:16px;
  color:var(--ut-dark);
  font-size:46px;
  font-weight:900;
}

.publication-hero p{
  max-width:760px;
  margin-top:10px;
  color:#617089;
  line-height:1.8;
}

.publication-section{
  padding:35px 0 70px;
}

.publication-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.publication-card{
  position:relative;
  overflow:hidden;

  min-height:300px;
  padding:36px 32px;

  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.76),
      rgba(255,255,255,.36)
    );

  border:1px solid rgba(255,255,255,.9);

  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);

  box-shadow:
    0 22px 55px rgba(0,59,115,.10),
    inset 0 1px 0 rgba(255,255,255,.95);

  transition:.35s;
}

.publication-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,.65),
      transparent 42%
    );

  pointer-events:none;
}

.publication-card::after{
  content:"";
  position:absolute;
  top:24px;
  right:24px;

  width:32px;
  height:32px;

  border-top:2px solid var(--ut-cyan);
  border-right:2px solid var(--ut-cyan);
  border-radius:0 10px 0 0;

  opacity:.7;
}

.publication-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 30px 70px rgba(0,91,170,.16),
    0 0 28px rgba(0,163,224,.14),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.publication-card > *{
  position:relative;
  z-index:2;
}

.publication-card.featured{
  border:1.5px solid rgba(246,184,1,.55);
}

.publication-card.featured::after{
  border-color:var(--ut-gold);
}

.publication-icon{
  width:72px;
  height:72px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:30px;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255,255,255,.75),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ut-blue),
      var(--ut-cyan)
    );

  box-shadow:
    0 16px 35px rgba(0,91,170,.22),
    inset 0 1px 0 rgba(255,255,255,.65);

  margin-bottom:26px;
}

.publication-card.featured .publication-icon{
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255,255,255,.75),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      var(--ut-gold),
      #ffd95a
    );

  color:#003b73;
}

.publication-card h3{
  color:var(--ut-dark);
  font-size:24px;
  font-weight:900;
  margin-bottom:14px;
}

.publication-card p{
  color:#617089;
  font-size:15px;
  line-height:1.8;
}

.publication-note{
  margin-top:30px;
  padding:26px 30px;

  display:flex;
  align-items:flex-start;
  gap:18px;

  border-radius:26px;
}

.publication-note-icon{
  width:52px;
  height:52px;

  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  color:#fff;
  font-size:24px;

  background:
    linear-gradient(
      135deg,
      var(--ut-blue),
      var(--ut-cyan)
    );
}

.publication-note h3{
  color:var(--ut-dark);
  font-size:22px;
  font-weight:900;
  margin-bottom:8px;
}

.publication-note p{
  color:#617089;
  line-height:1.7;
}

@media(max-width:900px){
  .publication-grid{
    grid-template-columns:1fr;
  }

  .publication-hero h1{
    font-size:38px;
  }

  .publication-note{
    flex-direction:column;
  }
}
/* ABSTRACT SUBMISSION */

.abstract-hero,
.dashboard-hero{
  padding:25px 0 15px;
}

.dashboard-section{
  padding-top:5px;
}

.abstract-hero h1,
.dashboard-hero h1{
  margin-top:15px;
  font-size:48px;
  font-weight:900;
  color:var(--ut-dark);
}

.abstract-hero p,
.dashboard-hero p{
  max-width:760px;
  color:#617089;
  line-height:1.8;
}

.abstract-section,

.abstract-card,
.dashboard-card{
  padding:20px;
  border-radius:32px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  color:#003b73;
  font-weight:800;
}

.form-group input,
.form-group select{
  width:100%;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(0,91,170,.15);
  background:rgba(255,255,255,.75);
  font-family:inherit;
}

.upload-box{
  text-align:center;
  padding:40px;
  border-radius:22px;
  border:2px dashed rgba(0,163,224,.4);
  background:rgba(255,255,255,.45);
}

.upload-box i{
  font-size:48px;
  color:#00a3e0;
  margin-bottom:15px;
}

.upload-box input{
  margin-top:15px;
}

.submit-message{
  margin-top:18px;
  font-weight:700;
}

.submit-message.success{
  color:#0a9d57;
}

.submit-message.error{
  color:#c62828;
}

/* DASHBOARD */

.dashboard-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.dashboard-table th{
  background:rgba(0,91,170,.08);
  color:var(--ut-dark);
  font-weight:900;
}

.file-link,
.wa-btn{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.file-link{
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
}

.wa-btn{
  background:#25D366;
}

@media(max-width:900px){
  .form-grid{
    grid-template-columns:1fr;
  }

  .dashboard-top{
    flex-direction:column;
    align-items:flex-start;
  }
}

.dashboard-summary span{
  color:#617089;
  font-size:10px;
  font-weight:700;
}

.payment-link{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--ut-gold),#ffd95a);
  color:#003b73;
  text-decoration:none;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

@media(max-width:1000px){
  .dashboard-summary{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .dashboard-filter,
  .dashboard-summary{
    grid-template-columns:1fr;
  }
}
/* LOGIN PANITIA */

.login-section{
  padding:70px 0;
}

.login-card{
  width:min(460px,100%);
  margin:auto;
  padding:38px;
  border-radius:30px;
}

.login-card h2{
  color:var(--ut-dark);
  font-size:32px;
  font-weight:900;
  margin-bottom:8px;
}

.login-card p{
  color:#617089;
  margin-bottom:26px;
  line-height:1.7;
}
.file-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.65);
  align-items:center;
  justify-content:center;
}

.file-modal-content{
  width:90%;
  height:88vh;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.file-modal-close{
  position:absolute;
  top:14px;
  right:18px;
  z-index:2;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#c62828;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

#filePreviewFrame{
  width:100%;
  height:100%;
  border:0;
}

.download-link,
.accept-btn,
.decline-btn{
  display:inline-block;
  margin-top:6px;
  padding:7px 12px;
  border-radius:999px;
  text-decoration:none;
  border:0;
  cursor:pointer;
  font-size:12px;
  font-weight:800;
}

.download-link{
  background:rgba(0,91,170,.10);
  color:#005baa;
}

.accept-btn{
  background:#16a34a;
  color:#fff;
}

.decline-btn{
  background:#dc2626;
  color:#fff;
}

.file-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.65);
  align-items:center;
  justify-content:center;
}

.file-modal-content{
  width:90%;
  height:88vh;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.file-modal-close{
  position:absolute;
  top:14px;
  right:18px;
  z-index:3;
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  background:#dc2626;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

#filePreviewArea,
#filePreviewArea iframe{
  width:100%;
  height:100%;
  border:0;
}

.preview-image{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#111;
}

.preview-download-box{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
}

.preview-download-box i{
  font-size:70px;
  color:#005baa;
  margin-bottom:20px;
}

.preview-download-box h3{
  color:#003b73;
  font-size:28px;
  margin-bottom:10px;
}
.success-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,30,70,.55);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.success-card{
  width:min(420px,90%);
  padding:38px;
  border-radius:32px;
  text-align:center;
  background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,255,255,.55));
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 30px 90px rgba(0,91,170,.25);
  animation:successPop .45s ease;
}

.success-check{
  width:90px;
  height:90px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  box-shadow:0 0 35px rgba(34,197,94,.45);
}

.success-card h2{
  color:#003b73;
  font-size:28px;
  margin-bottom:12px;
}

.success-card p{
  color:#617089;
  line-height:1.7;
  margin-bottom:24px;
}

@keyframes successPop{
  from{
    opacity:0;
    transform:scale(.85) translateY(20px);
  }
  to{
    opacity:1;
    transform:scale(1) translateY(0);
  }
}
/* ===============================
   ABSTRACT & DASHBOARD GLOBAL
================================ */

.abstract-hero,
.dashboard-hero{
  padding:25px 0 10px;
}
.dashboard-section{
  padding-top:10px;
}


.abstract-hero h1,
.dashboard-hero h1{
  margin-top:15px;
  font-size:48px;
  font-weight:900;
  color:var(--ut-dark);
}

.abstract-hero p,
.dashboard-hero p{
  max-width:760px;
  color:#617089;
  line-height:1.8;
}

.abstract-section,
.dashboard-section{
  padding:35px 0 70px;
}

.abstract-card,
.dashboard-card{
  padding:20px;
  border-radius:32px;
}

/* ===============================
   FORM ABSTRACT
================================ */

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  color:#003b73;
  font-weight:800;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(0,91,170,.15);
  background:rgba(255,255,255,.78);
  font-family:inherit;
  color:#13233a;
  outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--ut-cyan);
  box-shadow:0 0 0 4px rgba(0,163,224,.12);
}

.form-group small{
  color:#617089;
  font-weight:600;
}

.conditional-box{
  margin-top:12px;
  padding:28px;
  border-radius:26px;
  background:rgba(255,255,255,.42);
  border:1px solid rgba(255,255,255,.8);
}

.upload-box{
  text-align:center;
  padding:38px;
  border-radius:24px;
  border:2px dashed rgba(0,163,224,.45);
  background:rgba(255,255,255,.45);
}

.upload-box i{
  font-size:48px;
  color:#00a3e0;
  margin-bottom:14px;
}

.upload-box p{
  color:#617089;
  line-height:1.7;
  margin-bottom:14px;
}

.payment-upload{
  border-color:rgba(246,184,1,.6);
}

.payment-upload i{
  color:var(--ut-gold);
}

/* ===============================
   SUCCESS POPUP
================================ */

.success-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(0,30,70,.55);
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
}

.success-card{
  width:min(430px,90%);
  padding:40px;
  border-radius:34px;
  text-align:center;
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,255,255,.58));
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 30px 90px rgba(0,91,170,.28);
  animation:successPop .45s ease;
}

.success-check{
  width:92px;
  height:92px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  box-shadow:0 0 38px rgba(34,197,94,.45);
}

.success-card h2{
  color:#003b73;
  font-size:28px;
  font-weight:900;
  margin-bottom:12px;
}

.success-card p{
  color:#617089;
  line-height:1.7;
  margin-bottom:24px;
}

@keyframes successPop{
  from{
    opacity:0;
    transform:scale(.85) translateY(20px);
  }
  to{
    opacity:1;
    transform:scale(1) translateY(0);
  }
}

/* ===============================
   LOGIN PANITIA
================================ */

.login-section{
  padding:80px 0;
}

.login-card{
  width:min(460px,100%);
  margin:auto;
  padding:40px;
  border-radius:32px;
}

.login-card h2{
  color:var(--ut-dark);
  font-size:32px;
  font-weight:900;
  margin-bottom:8px;
}

.login-card p{
  color:#617089;
  margin-bottom:26px;
  line-height:1.7;
}

.submit-message{
  margin-top:16px;
  font-weight:800;
}

.submit-message.error{
  color:#dc2626;
}

.submit-message.success{
  color:#16a34a;
}

/* ===============================
   DASHBOARD FILTER
================================ */

.dashboard-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
}

.dashboard-top h3{
  color:var(--ut-dark);
  font-size:18px;
  font-weight:800;
  margin-bottom:2px;
}

.dashboard-top p{
  color:#617089;
  margin-top:2px;
  font-size:12px;
}

.dashboard-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.dashboard-filter{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr auto;
  gap:10px;
  margin-bottom:16px;
}

.filter-group label{
  display:block;
  margin-bottom:4px;
  color:#003b73;
  font-weight:800;
  font-size:11px;

}

.filter-group input,
.filter-group select{
  width:100%;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid rgba(0,91,170,.15);
  background:rgba(255,255,255,.78);
  font-family:inherit;
  height:38px;
  font-size:12px;

}

.filter-group input:focus,
.filter-group select:focus{
  border-color:var(--ut-cyan);
  box-shadow:0 0 0 4px rgba(0,163,224,.12);
  outline:none;
}

/* ===============================
   DASHBOARD SUMMARY
================================ */

.dashboard-summary{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  margin-bottom:16px;
}

.dashboard-summary div{
  padding:10px;
  border-radius:10px;
  background:rgba(255,255,255,.48);
  border:1px solid rgba(255,255,255,.8);
  box-shadow:0 12px 30px rgba(0,91,170,.06);
  min-height:70px;
}

.dashboard-summary strong{
  display:block;
  color:var(--ut-blue);
  font-size:20px;
  font-weight:900;
  line-height:1;
}

.dashboard-summary span{
  display:block;
  color:#617089;
  font-size:10px;
  font-weight:700;
  margin-top:8px;
}

/* ===============================
   DASHBOARD TABLE
================================ */

.table-wrapper{
  width:100%;
  max-height:650px;
  overflow:auto;
  border-radius:0;
  border:1px solid rgba(0,91,170,.12);
}

.dashboard-table thead th{
  position:sticky;
  top:0;
  z-index:100;
  background:linear-gradient(135deg,#eaf5ff,#f6fbff);
  color:#003b73;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 2px 0 rgba(0,91,170,.12);
}

.dashboard-table th:last-child,
.dashboard-table td:last-child{
  position:sticky;
  right:0;
  z-index:30;
  background:#fff;
  min-width:120px;
}
.dashboard-table th:nth-last-child(2),
.dashboard-table td:nth-last-child(2){
  position:sticky;
  right:120px;
  z-index:29;
  background:#fff;
  min-width:90px;
}

.dashboard-table thead th:last-child{
  z-index:120;
}

.dashboard-table thead th:nth-last-child(2){
  z-index:119;
}

.dashboard-table td:last-child,
.dashboard-table td:nth-last-child(2){
  box-shadow:
    -2px 0 6px rgba(0,0,0,.06);
}

.dashboard-table{
  width:100%;
  min-width:1500px;
  border-collapse:collapse;
  border-spacing:0;
}

.dashboard-table th,
.dashboard-table td{
  padding:8px 10px;
  border-bottom:1px solid rgba(0,91,170,.10);
  text-align:center;
  vertical-align:middle;
  font-size:11px;
  line-height:1.25;
}

.dashboard-table th{
  background:linear-gradient(135deg,rgba(0,91,170,.12),rgba(0,163,224,.08));
  color:#003b73;
  font-weight:900;
  white-space:nowrap;
}

.dashboard-table td{
  color:#52657f;
  background:rgba(255,255,255,.42);
}

.dashboard-table tr:hover td{
  background:rgba(240,248,255,.85);
}

/* ===============================
   FILE BUTTONS
================================ */

.file-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
}

.file-btn,
.file-link,
.payment-link,
.download-link,
.wa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  height:28px;
  padding:0 9px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  text-decoration:none;
  font-size:10px;
  font-weight:900;
  white-space:nowrap;
  transition:.25s;
}

.btn-view,
.file-link{
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  color:#fff;
}

.btn-payment,
.payment-link{
  background:linear-gradient(135deg,var(--ut-gold),#ffd95a);
  color:#003b73;
}

.btn-download,
.download-link{
  background:rgba(0,91,170,.10);
  color:#005baa;
}

.wa-btn{
  background:#25D366;
  color:#fff;
}

.file-btn:hover,
.file-link:hover,
.payment-link:hover,
.download-link:hover,
.wa-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,91,170,.16);
}

/* ===============================
   STATUS & ACTION
================================ */

.status-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:5px 9px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
}

.status-pending{
  background:rgba(246,184,1,.18);
  color:#9a6a00;
}

.status-accepted{
  background:rgba(22,163,74,.14);
  color:#15803d;
}

.status-declined{
  background:rgba(220,38,38,.12);
  color:#b91c1c;
}

.action-group{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
}

.accept-btn,
.decline-btn{
  min-width:56px;
  min-width:55px;
  height:24px;
  font-size:9px;
  border:0;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.25s;
}

.accept-btn{
  background:#16a34a;
}

.decline-btn{
  background:#dc2626;
}

.accept-btn:hover,
.decline-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

/* ===============================
   FILE PREVIEW MODAL
================================ */

.file-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(8px);
  align-items:center;
  justify-content:center;
  padding:24px;
}

.file-modal-content{
  width:min(1100px,96%);
  height:88vh;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  box-shadow:0 30px 90px rgba(0,0,0,.36);
}

.file-modal-close{
  position:absolute;
  top:14px;
  right:18px;
  z-index:3;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#dc2626;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

#filePreviewArea,
#filePreviewArea iframe{
  width:100%;
  height:100%;
  border:0;
}

.preview-image{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#111;
}

.preview-download-box{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
}

.preview-download-box i{
  font-size:70px;
  color:#005baa;
  margin-bottom:20px;
}

.preview-download-box h3{
  color:#003b73;
  font-size:28px;
  font-weight:900;
  margin-bottom:10px;
}

.preview-download-box p{
  color:#617089;
  max-width:520px;
  line-height:1.7;
  margin-bottom:24px;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:1100px){
  .dashboard-filter{
    grid-template-columns:1fr 1fr;
  }

  .dashboard-summary{
    grid-template-columns:repeat(3,1fr);
  }

  .dashboard-top{
    flex-direction:column;
  }
}

@media(max-width:900px){
  .form-grid{
    grid-template-columns:1fr;
  }

  .abstract-card,
  .dashboard-card{
    padding:20px;
  }

  .abstract-hero h1,
  .dashboard-hero h1{
    font-size:38px;
  }

  .dashboard-summary{
    grid-template-columns:1fr 1fr;
  }

  .file-modal-content{
    width:96%;
    height:82vh;
  }
}

@media(max-width:640px){
  .dashboard-filter,
  .dashboard-summary{
    grid-template-columns:1fr;
  }

  .file-actions,
.action-group{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5px;
  flex-wrap:nowrap;
}

  .file-btn,
  .file-link,
  .payment-link,
  .download-link,
  .accept-btn,
  .decline-btn{
    width:100%;
  }
}

/* =====================================================
   SPEAKER PAGE
===================================================== */

.speaker-hero{
  padding:35px 0 20px;
}

.speaker-hero h1{
  margin-top:14px;
  color:var(--ut-dark);
  font-size:44px;
  font-weight:900;
}

.speaker-hero p{
  max-width:760px;
  margin-top:10px;
  color:#617089;
  line-height:1.8;
}

.speaker-section{
  padding:30px 0 70px;
}

.speaker-group-title{
  margin-bottom:24px;
}

.speaker-group-title span{
  display:inline-block;
  color:var(--ut-blue);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.8px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.speaker-group-title h2{
  color:var(--ut-dark);
  font-size:32px;
  font-weight:900;
}

.panel-title{
  margin-top:46px;
}

.keynote-card{
  display:grid;
  grid-template-columns:260px 1fr;
  align-items:center;
  gap:34px;
  padding:34px;
  border-radius:34px;
}

.keynote-photo,
.speaker-photo{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  box-shadow:0 18px 40px rgba(0,91,170,.18);
}

.keynote-photo{
  width:260px;
  height:300px;
  border-radius:34px 80px 34px 80px;
}

.speaker-photo{
  width:100%;
  height:250px;
  border-radius:30px 70px 30px 70px;
}

.keynote-photo img,
.speaker-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.speaker-flag{
  position:absolute;
  right:14px;
  bottom:14px;
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}

.speaker-role,
.speaker-info span{
  display:inline-block;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(0,91,170,.10);
  color:var(--ut-blue);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.keynote-info h3{
  margin-top:14px;
  color:var(--ut-dark);
  font-size:42px;
  font-weight:900;
}

.keynote-info p{
  margin-top:6px;
  color:#617089;
  font-size:18px;
  font-weight:700;
}

.speaker-line{
  width:160px;
  height:5px;
  margin-top:24px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--ut-blue),var(--ut-cyan),var(--ut-gold));
}

.speaker-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.speaker-card{
  padding:22px;
  border-radius:32px;
  transition:.35s ease;
}

.speaker-card:nth-child(even) .speaker-photo{
  border-radius:70px 30px 70px 30px;
}

.speaker-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(0,91,170,.16);
}

.speaker-info{
  padding-top:20px;
}

.speaker-info h3{
  margin-top:12px;
  color:var(--ut-dark);
  font-size:22px;
  font-weight:900;
  line-height:1.25;
}

.speaker-info p{
  margin-top:6px;
  color:#617089;
  font-size:14px;
  font-weight:700;
}

.speaker-reveal{
  opacity:0;
  transform:translateY(24px) scale(.96);
  transition:.7s ease;
}

.speaker-reveal.show{
  opacity:1;
  transform:none;
}

@media(max-width:900px){
  .keynote-card{
    grid-template-columns:1fr;
  }

  .keynote-photo{
    width:100%;
    height:340px;
  }

  .speaker-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){
  .speaker-grid{
    grid-template-columns:1fr;
  }

  .speaker-hero h1{
    font-size:36px;
  }

  .keynote-info h3{
    font-size:34px;
  }
}

/* =====================================================
   PUBLICATION TABLE SECTION
===================================================== */

.publication-table-block{
  margin-top:28px;
  padding:26px;
  border-radius:26px;
}

.publication-table-header{
  margin-bottom:18px;
}

.publication-table-header span{
  display:inline-block;
  color:var(--ut-blue);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:5px;
}

.publication-table-header h2{
  color:var(--ut-dark);
  font-size:24px;
  font-weight:900;
  margin-bottom:6px;
}

.publication-table-header p{
  color:#617089;
  font-size:13px;
  line-height:1.6;
}

.compact-table-wrapper{
  width:100%;
  overflow-x:auto;
  border-radius:18px;
  border:1px solid rgba(0,91,170,.10);
}

.compact-info-table{
  width:100%;
  border-collapse:collapse;
  min-width:780px;
}

.compact-info-table th,
.compact-info-table td{
  padding:9px 12px;
  border-bottom:1px solid rgba(0,91,170,.10);
  font-size:12px;
  line-height:1.35;
  text-align:left;
  vertical-align:middle;
}

.compact-info-table th{
  background:linear-gradient(135deg,#eaf5ff,#f6fbff);
  color:#003b73;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  white-space:nowrap;
}

.compact-info-table td{
  color:#52657f;
  background:rgba(255,255,255,.42);
}

.compact-info-table tr:hover td{
  background:rgba(240,248,255,.85);
}

.cohost-logo-placeholder{
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  color:#fff;
  font-size:15px;
}

.muted-small{
  color:#8a98aa;
  font-size:11px;
}

.table-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
}

.table-status.pending{
  background:rgba(246,184,1,.18);
  color:#9a6a00;
}

.country-flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.75);
  box-shadow:0 6px 16px rgba(0,91,170,.10);
  font-size:20px;
}

@media(max-width:768px){
  .publication-table-block{
    padding:20px;
  }

  .publication-table-header h2{
    font-size:20px;
  }

  .compact-info-table{
    min-width:680px;
  }
}
/* =====================================================
   TEMPLATE DOWNLOAD PAGE
===================================================== */

.template-hero{
  padding:25px 0 10px;
}

.template-hero h1{
  margin-top:12px;
  color:var(--ut-dark);
  font-size:40px;
  font-weight:900;
}

.template-hero p{
  max-width:760px;
  margin-top:8px;
  color:#617089;
  font-size:14px;
  line-height:1.6;
}

.template-section{
  padding:25px 0 70px;
}

.template-card{
  padding:28px;
  border-radius:28px;
}

.template-row{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:24px;
  align-items:stretch;
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.38);
  border:1px solid rgba(255,255,255,.75);
  margin-bottom:22px;
}

.template-row:last-child{
  margin-bottom:0;
}

.template-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.template-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  background:linear-gradient(135deg,var(--ut-blue),var(--ut-cyan));
  box-shadow:0 12px 26px rgba(0,91,170,.18);
  margin-bottom:14px;
}

.template-icon.gold{
  background:linear-gradient(135deg,var(--ut-gold),#ffd95a);
  color:#003b73;
}

.template-label{
  color:var(--ut-blue);
  font-size:10px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:5px;
}

.template-info h3{
  color:var(--ut-dark);
  font-size:22px;
  font-weight:900;
  margin-bottom:8px;
}

.template-info p{
  color:#617089;
  font-size:13px;
  line-height:1.55;
  margin-bottom:16px;
}

.template-btn{
  width:max-content;
  height:38px;
  padding:0 18px;
  font-size:12px;
}

.template-preview{
  height:430px;
  border-radius:18px;
  overflow:hidden;
  background:#f5f8fc;
  border:1px solid rgba(0,91,170,.12);
}

.template-preview iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Responsive */

@media(max-width:900px){
  .template-row{
    grid-template-columns:1fr;
  }

  .template-preview{
    height:360px;
  }
}

@media(max-width:560px){
  .template-card{
    padding:20px;
  }

  .template-row{
    padding:16px;
  }

  .template-hero h1{
    font-size:32px;
  }

  .template-preview{
    height:300px;
  }
}
.event-link{
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:.3s ease;
}

.event-link:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 35px rgba(0,91,170,.15);
}

.event-link:hover .event-icon{
  transform:scale(1.08);
}

.event-link .event-icon{
  transition:.3s ease;
}
/* =====================================================
   ABOUT PAGE
===================================================== */

.about-section{
  padding:25px 0 70px;
}

.about-card,
.terms-card{
  padding:28px;
  margin-bottom:24px;
  border-radius:26px;
}

.about-header{
  margin-bottom:18px;
}

.about-header span{
  display:inline-block;
  color:var(--ut-blue);
  font-size:11px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:4px;
}

.about-header h2{
  color:var(--ut-dark);
  font-size:24px;
  font-weight:900;
  margin:0;
}

.about-card p{
  color:#52657f;
  font-size:14px;
  line-height:1.65;
  margin-bottom:12px;
  text-align:justify;
}

.theme-highlight{
  margin:14px 0;
  padding:16px 20px;
  border-left:5px solid var(--ut-blue);
  background:rgba(0,91,170,.05);
  border-radius:12px;
  color:var(--ut-dark);
  font-size:15px;
  line-height:1.6;
}

.terms-list{
  padding-left:22px;
}

.terms-list li{
  color:#52657f;
  font-size:13px;
  line-height:1.55;
  margin-bottom:12px;
  text-align:justify;
}

.terms-list strong{
  color:var(--ut-dark);
  font-weight:800;
}

.terms-note{
  margin-top:20px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 18px;
  border-radius:14px;
  background:rgba(246,184,1,.10);
  border:1px solid rgba(246,184,1,.20);
}

.terms-note i{
  color:var(--ut-gold);
  font-size:18px;
  margin-top:2px;
}

.terms-note span{
  color:#52657f;
  font-size:12px;
  line-height:1.5;
}

@media(max-width:768px){

  .about-card,
  .terms-card{
    padding:22px;
  }

  .about-header h2{
    font-size:20px;
  }

  .about-card p,
  .terms-list li{
    font-size:13px;
  }
}