* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


/* Remove body default margin */
body {
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #070202 !important;
    margin: 0;           /* Remove default margin */
}

/* Header Container */
.header-section {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin: 0;           /* Remove top/bottom margin */
    padding: 0;          /* Remove padding */
    box-sizing: border-box;
}

/* Individual Box */
.header-box {
    flex: 1 1 0;
    margin: 0 2px;           /* No margin */
    box-sizing: border-box;
}

/* Link Styling */
.header-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background-color: #fbc503;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #fff;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
.header-box a:hover {
    background-color: #f9b600;
}


/* ===================== Wrapper & Glow Border for Records ===================== */
.record-wrapper {
  max-width: auto;
  margin: 20px auto;
  padding: 20px 25px;
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, #111, #0b0b0b);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.record-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(90deg, #ffcc00, #ff6600, #ff0000, #ffcc00);
  background-size: 400% 400%;
  animation: borderGlow 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.record-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Yearly record heading */
.record-year-heading {
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ffcc00, #ff6600, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  box-shadow: 0 0 10px #ffcc00;
  transition: transform 0.3s, box-shadow 0.3s;
}

.record-year-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffcc00, 0 0 25px #ff6600;
}

/* Individual record cards */
.record-point {
  border-radius: 12px;
  border: 3px solid #ffd700;
  background-color: #1a1a1a;
  color: #ffd700;
  box-shadow: 0 0 10px #ffcc00;
  padding: 12px 10px;
  margin: 10px 0;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.record-point a {
  color: #ffd700;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.record-point:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffcc00, 0 0 25px #ff6600;
}

/* All game mix list */
.record-list {
  border-radius: 16px;
  background: linear-gradient(90deg, #ffcc00, #ff6600);
  padding: 10px;
  margin: 15px 0;
}

.record-list a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
  font-size: 17px;
}

