* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Chalkboard", "Marker Felt", cursive;
  background-color: #000080;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
}

.card {
  border: 4px ridge #c0c0c0;
  overflow: hidden;
}

.header-box {
  background: #000080;
  padding: 18px 20px;
  text-align: center;
}

h1 {
  font-size: 2rem;
  color: #ffff00;
  text-shadow: 3px 3px #ff0000;
  letter-spacing: 2px;
}

.rainbow-hr {
  height: 4px;
  border: none;
  margin: 0 26px;
  background: linear-gradient(to right, red, orange, yellow, lime, cyan, blue, magenta, red);
  background-size: 200% 100%;
  animation: rainbowshift 3s linear infinite;
}

@keyframes rainbowshift {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

.content-box {
  background: rgba(0, 0, 128, 0.85);
  padding: 22px 26px;
}

h2 {
  font-size: 0.9rem;
  color: #00ffff;
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px dashed #224;
  padding-bottom: 4px;
}

h2:first-child {
  margin-top: 0;
}

p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #eeeeee;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #00ff00;
  margin-bottom: 12px;
  border-left: 3px solid #ff00ff;
  padding-left: 12px;
}

a {
  color: #ffff00;
  text-decoration: underline wavy #ff00ff;
}

a:hover {
  color: #00ff00;
}

ul {
  padding-left: 0;
  margin: 6px 0 10px;
  list-style: none;
}

li {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #eeeeee;
  padding-left: 1.4em;
  position: relative;
}

li::before {
  content: "▶︎";
  position: absolute;
  left: 0;
  color: #ff00ff;
  font-size: 0.65em;
  top: 0.38em;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 12px;
  font-size: 0.82rem;
}

.cookie-table th {
  color: #00ffff;
  text-align: left;
  padding: 5px 10px;
  border: 1px solid #fff;
  background: rgba(0,0,60,0.6);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
}

.cookie-table td {
  color: #dddddd;
  padding: 6px 10px;
  border: 1px solid #fff;
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table tr:nth-child(even) td {
  background: rgba(0,0,40,0.4);
}

strong.label {
  color: #00ffff;
}
