:root {
  --o-bright: #FF8F00;
  --o-dark: #E65100;
  --o-bg: #FFF8F0;
  --deep-brown: #3E2723;
  --white: #FFFFFF;
}

/* Global Reset with Unicode Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans Devanagari', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--o-bg);
  overflow-x: hidden;
}

/* ANIMATED MESH GRADIENT */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(at 0% 0%, #FFD180 0px, transparent 50%),
    radial-gradient(at 100% 0%, #FFAB40 0px, transparent 50%),
    radial-gradient(at 50% 50%, #FFFFFF 0px, transparent 50%),
    radial-gradient(at 0% 100%, #FF9100 0px, transparent 50%),
    radial-gradient(at 100% 100%, #FFE0B2 0px, transparent 50%);
  background-size: 200% 200%;
  animation: moveMesh 8s infinite alternate ease-in-out;
}

@keyframes moveMesh {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.cs-wrapper {
  padding: 20px;
  width: 100%;
  max-width: 1000px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(230, 81, 0, 0.1);
}

/* LOGO STYLING */
.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.brand-logo-large {
  height: clamp(80px, 12vw, 120px);
  width: auto;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.08));
}

.separator-glow {
  width: 2px;
  height: 80px;
  background: linear-gradient(transparent, var(--o-bright), transparent);
}

/* TYPOGRAPHY */
.host-tag {
  font-weight: 700;
  color: var(--o-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.main-title {
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  color: var(--deep-brown);
  margin-bottom: 40px;
  line-height: 1.4;
}

/* TRIBUTE BOX */
.tribute-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 25px;
  border-left: 8px solid var(--o-bright);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  margin-bottom: 40px;
}

.tribute-main {
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 38px);
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.officer-highlight {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--o-dark);
}

.coming-soon-text {
  font-weight: 400;
  font-style: italic;
  color: #777;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--o-bright);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(255, 143, 0, 0.3);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 28px rgba(255, 143, 0, 0.35);
}

.btn-ghost {
  border: 2px solid var(--deep-brown);
  color: var(--deep-brown);
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-strip {
  font-size: 0.95rem;
  color: #555;
  font-weight: 600;
}

.dot { margin: 0 10px; color: var(--o-bright); }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .logo-section { flex-direction: column; gap: 20px; }
  .separator-glow { width: 80px; height: 2px; }
  .glass-card { padding: 40px 20px; border-radius: 0; }
  .btn-group { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; }
}
