html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  background: white;
}

body,
html {
}

ol,
ul {
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
}

canvas {
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  height: 100vh;
  width: 100vw;
  position: relative;
  background-color: black;
  overflow: hidden;
}

.content-container {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  font: normal 15pt "caponi", Helvetica, sans-serif;
  padding: 0px 50px 0px 30px;

  /* ✨ Fade-in animation */
  animation: fadeIn 1.2s ease-out forwards;
  opacity: 0;
}

.logo {
  width: 300px;
  height: auto;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;

  /* 🛑 Prevent dragging or selection */
  -webkit-user-drag: none;
  user-select: none;

  /* ✨ Optional staggered fade-in */
  animation: fadeIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;

  /* ✨ Smooth transition for hover effect (slower now) */
  transition: filter 0.6s ease;
}

.logo:hover {
  /* ✨ Brighter white glow around visible logo pixels only */
  filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}

.copy {
  padding-bottom: 30px;

  /* ✨ Optional staggered fade-in */
  animation: fadeIn 1.2s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.video {
  min-width: 100vw;
  min-height: 100vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  /* ✨ Background video fade-in */
  animation: bgFadeIn 1.2s ease-out forwards;
  background: white;
  opacity: 0;
}

.video video {
  border: 5px solid red;

  /* 🔒 Prevent dragging */
  -webkit-user-drag: none;
  user-select: none;
}

/* ✨ Fade underline on email link */
.copy h3 a {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  color: #ffffff;
  transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.copy h3 a:hover {
  text-decoration-color: transparent;
  color: #aee4ff;
}

.copy p {
  margin-top: 56px;
  font-size: 12pt;
}

/* ✨ Subtle drop shadow for legibility */
.copy h3,
.copy p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 550px) {
  .copy-break {
    display: none;
  }
}

@media only screen and (max-width: 420px), (max-height: 500px) {
  .content-container {
    padding: 0px 30px 0px 15px;
  }
  .copy p {
    margin-top: 40px;
  }
}

@media only screen and (max-height: 400px) {
  .content-container {
    font-size: 12pt;
  }
  .copy p {
    font-size: 9pt;
    margin-top: 20px;
  }
}

/* 🔑 Fade-in keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}