body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  margin: 0;
  background: #000;
}

/* ===== Navbar ===== */
.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.group-logo {
  height: 110px;
  width: auto;
}

.logo-text {
  color: #000000;
  font-size: 32px;
  font-weight: bold;
  text-shadow:
   -1px -1px 0 #ffffff,  
    1px -1px 0 #ffffff,
   -1px  1px 0 #ffffff,
    1px  1px 0 #ffffff;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.logo-link:hover .logo-text {
  color: #ffffff;
  text-shadow:
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

/* ===== T&C Container ===== */
.tnc-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

h1, h2 {
  color: #ffffff;
  margin-bottom: 12px;
}

h1 {
  text-align: center;
  margin-bottom: 24px;
}

p {
  margin-bottom: 16px;
}

ul {
  margin: 0 0 16px 20px;
}

a {
  color: #AC1754;
  text-decoration: none;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-top: 40px;
}

/* ===== Mobile polish (phones only) ===== */
@media (max-width: 640px){

  /* Comfy, sticky brand bar */
  .navbar{
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 12px 16px;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-width: none;
  }
  .logo-link{ gap: 10px; }
  .group-logo{ height: 64px; }
  .logo-text{ font-size: 22px; }

  /* Container breathing room and lighter chrome */
  .tnc-container{
    margin: 12px auto 24px;
    padding: 16px 16px 20px;
    border-radius: 12px;
    background: rgba(0,0,0,.6);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
  }

  /* Type scale for small screens */
  .tnc-container h1{
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 8px;
    text-align: left;            /* reads better on mobile */
  }
  .tnc-container h2{
    font-size: clamp(18px, 5vw, 22px);
    margin: 16px 0 8px;
    line-height: 1.3;
  }

  /* Paragraphs & lists: larger, airier */
  .tnc-container p,
  .tnc-container li{
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.65;
  }
  .tnc-container ul{
    margin: 0 0 14px 1.1em;
  }

  /* Effective date line */
  .effective-date{
    margin: 0 0 8px;
    color: rgba(255,255,255,.85);
    font-size: clamp(13px, 3.6vw, 15px);
  }

  /* Links: clearer affordance on touch */
  a{ text-decoration: underline; }

  /* Footer spacing */
  .footer{
    margin-top: 24px;
    padding: 16px;
    font-size: 12px;
  }
}
