* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden; /* FIX: prevent horizontal scroll */
}

/* PAGE */
.awards-page {
  min-height: 100vh;
  padding: clamp(32px, 6vw, 60px) clamp(20px, 7vw, 70px);
  position: relative;
  overflow: hidden;
  background: #050505;
}

/* BACKGROUND TEXTURE */
.awards-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 0, 92, 0.18), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
  pointer-events: none;
}

/* HEADER */
.awards-header {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 50px);
  position: relative;
  z-index: 3;
}

.awards-header p {
  color: #ff005c;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.awards-header h1 {
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: clamp(-4px, -0.4vw, -2px);
  text-transform: uppercase;
}

.awards-header h1::after {
  content: "";
  display: block;
  width: 160px;
  height: 6px;
  margin: 20px auto 0;
  border-radius: 50px;
  background: #ff005c;
  box-shadow: 0 0 25px rgba(255, 0, 92, 0.7);
}

/* GRID */
.awards-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* CARD */
.award-card {
  position: relative;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 26px);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.45);
  transition: 0.3s ease;
}

/* HOVER */
.award-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 92, 0.7);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.5),
    0 0 35px rgba(255, 0, 92, 0.28);
}

/* PLUS ACCENT (FIXED: no overflow) */
.award-card::before {
  content: "+";
  position: absolute;
  left: 12px;
  top: -18px;
  color: #ff005c;
  font-size: 34px;
  font-weight: 900;
  transform: rotate(12deg);
}

/* TEXT */
.award-card h2 {
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 900;
  margin-bottom: 8px;
}

.award-card span {
  color: #ff005c;
  font-size: 13px;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
}

.award-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

/* CORNER ACCENT */
.awards-page::after {
  content: "";
  position: absolute;
  right: 55px;
  bottom: 55px;
  width: 44px;
  height: 44px;
  border-right: 9px solid #fff;
  border-bottom: 9px solid #fff;
}

/* GLOW BLOBS */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.glow-one {
  width: 300px;
  height: 300px;
  background: #ff005c;
  top: -120px;
  left: 35%;
  opacity: 0.25;
}

.glow-two {
  width: 380px;
  height: 380px;
  background: #ff005c;
  bottom: -160px;
  right: 12%;
  opacity: 0.15;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .awards-page {
    overflow-y: auto; /* FIX: allow scroll */
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .awards-page::after {
    display: none;
  }
}