@font-face {
  font-family: 'bhai';
  src: url(../Poppins-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  width: 100%;
  background: linear-gradient(135deg, #d5ff40 0%, #a8e61a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAVBAR - CLEAN NO BOX */
.navbar {
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.navbar h2 {
  font-size: clamp(24px, 8vw, 36px);
  font-weight: 500;
  background: linear-gradient(45deg, #000, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: clamp(15px, 4vw, 30px);
  flex-wrap: wrap;
}

.nav-links a {
  font-size: clamp(14px, 5vw, 20px);
  color: #000;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #333;
  text-shadow: 0 0 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* MAIN CONTENT */
.main-content {
  padding: 40px 5vw;
  max-width: 1400px;
  margin: 0 auto;
}

/* HERO TITLE */
.hero-title {
  text-align: center;
  font-size: clamp(32px, 10vw, 64px);
  font-weight: 900;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #000, #333, #d5ff40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

/* INTRO CARD - DARK SHINY */
.intro-card {
  background: rgba(11, 18, 38, 0.85);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.intro-card h2 {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  color: #e0e7ff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* CONTENT GRID */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* INFO CARDS - SUPER SHINY DARK */
.info-card {
  background: rgba(11, 18, 38, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d5ff40, transparent);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 20px #d5ff40;
}

.info-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.15);
  background: rgba(11, 18, 38, 0.95);
}

.info-card h3 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #d5ff40;
  text-shadow: 0 0 15px rgba(213, 255, 64, 0.5);
  position: relative;
  z-index: 2;
}

.info-card p {
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  color: #e0e7ff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .main-content { padding: 60px 8vw; }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar { padding: 30px 8vw; }
}

@media (min-width: 1024px) {
  .main-content { padding: 80px 10vw; }
  .content-grid { gap: 32px; }
  .navbar { padding: 60px 100px 40px; }
  .nav-links { gap: 60px; }
}