/* =========
   Variables
   ========= */
:root{
  --yellow: #F7C948;   /* hazard yellow */
  --yellow-dark:#E0AE00;
  --black: #0b0b0b;
  --ink: #111;
  --ink-2:#1b1b1b;
  --grey:#b9b9b9;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Base reset tweaks */
html,body{height:100%;}
html{font:16px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";}
body{margin:0; color:#eee; background: var(--black);}

/* =========
   Background: diagonal hazard stripes
   ========= */
.bg-stripes{
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
    #000 0 22px,
    var(--yellow) 22px 44px);
  opacity: .12;
  pointer-events: none;
}

/* =========
   Layout
   ========= */
.page{
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.Content{
  position: relative;
  width: min(960px, 100%);
  background: linear-gradient(180deg, #121212, #0e0e0e);
  border: 2px solid var(--ink-2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 48px);
  overflow: hidden;
  isolation: isolate;
}

/* =========
   Caution Tape
   ========= */
.tape{
  position: absolute;
  z-index: 0;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #111;
  background:
    repeating-linear-gradient(90deg,
    var(--yellow) 0 24px,
    #111 24px 48px);
  border: 2px solid #000;
  box-shadow: 0 6px 20px rgba(0,0,0,.45);
  padding: .45rem 1rem;
  white-space: nowrap;
}
.tape--tl{ /* top-left to bottom-right */
  top: 10%;
  left: -15%;
  transform: rotate(-18deg);
  width: 140%;
}
.tape--br{ /* bottom-right to top-left */
  bottom: 10%;
  right: -15%;
  transform: rotate(14deg);
  width: 140%;
}

/* =========
   Brand / header
   ========= */
.brand{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(16px, 4vw, 28px);
  background: #151515;

}

.hat{
  width: clamp(64px, 10vw, 96px);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.5));
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

#uc-title{
  margin: .6rem 0 .25rem 0;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
}
.tagline{
  margin: 0;
  color: var(--grey);
  font-size: clamp(.95rem, 2.2vw, 1.05rem);
}

/* =========
   Hero image (optional)
   ========= */
.hero{
  display:block;
  margin: 22px auto;
  max-width: min(520px, 90%);
  height: auto;
  border-radius: 14px;
  border: 2px solid #1c1c1c;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* =========
   Info and buttons
   ========= */
.info{
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: clamp(16px, 3.5vw, 24px);
}

.info p{
  margin: 0 0 1rem 0;
  color: #d9d9d9;
  text-align: center;
}

.cta-row{
  display:flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.btn{
  --pad: .85rem 1.15rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: var(--pad);
  font-weight: 700;
  border-radius: 999px;
  text-decoration:none;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  cursor: pointer;
  user-select: none;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn--primary{
  background: linear-gradient(180deg, var(--yellow), var(--yellow-dark));
  color: #111;
  box-shadow: 0 6px 18px rgba(247,201,72,.25);
}
.btn--primary:hover{
  box-shadow: 0 10px 24px rgba(247,201,72,.35);
}

.btn--ghost{
  background: transparent;
  color: #e9e9e9;
  border-color: #2a2a2a;
}
.btn--ghost:hover{
  background: #151515;
}

/* =========
   Footer + warning beacon
   ========= */
.footer{
  position: relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  margin-top: 18px;
  color: #aaa;
  text-align:center;
}

.beacon{
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(247,201,72,.75);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0% { box-shadow: 0 0 0 0 rgba(247,201,72,.6); }
  70%{ box-shadow: 0 0 0 12px rgba(247,201,72,0); }
  100%{ box-shadow: 0 0 0 0 rgba(247,201,72,0); }
}

/* A11y */
a:focus-visible, .btn:focus-visible{
  outline: 2px dashed var(--yellow);
  outline-offset: 3px;
}

/* Print */
@media print{
  .bg-stripes, .tape, .hero, .beacon { display:none !important; }
  .Content{ box-shadow:none; border-color:#000; }
}
