@charset "utf-8";
/* CSS Document */

*, *::before, *::after { box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
		
#video-container { background-repeat: no-repeat;}
#video-overlay { position: absolute; z-index: 2; left: 50%; -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); font-size: 10vw; }

h1 { font-weight: 400; color: #F6F1E7; font-family: "Audiowide", letter-spacing: 0.10em; text-align: center; margin-top: 0px;  margin-bottom: 0px; }
h2 { margin-top: 0px;  margin-bottom: 0px; }

p{
 font-size: 1rem;
 color: white;
}
a {
 font-size: 1rem;
 color: white;
 text-decoration: none;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: aqua;
  background-color: transparent;
  text-decoration: underline;
}
.container {
  margin-top: 20vh;
}

body {
  font-size: 10vw;
  background-color: #000;
  margin-top: 0px; 
  margin-right: 0px; 
  margin-left: 0px; 
  margin-bottom: 0px;
  min-height:100vh;
}  

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("/images/bg2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;

    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.gd-social{
  display: flex;                 /* replaces the table layout */
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
}

.gd-social-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;                   /* keeps columns uniform */
}

.gd-social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 4px;
  text-decoration: none;
  transform: translateZ(0);
}

.gd-icon{
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
  transition: transform .15s ease, filter .15s ease;
}

.gd-social-link:hover .gd-icon{
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.32));
}


@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

.gd-hero-title{
  margin: 0;
  font-family: "Audiowide";
  font-weight: 400;                 /* some cursive fonts ignore weight; still fine */
  font-size: clamp(56px, 6vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.10em;

  /* Gold tone (tweak to match your background logo gold) */
  color: #F6F1E7;

  /* Faint glow using multiple soft shadows */
  text-shadow:
	0 0 6px rgba(212,175,55,0.28),
	0 0 14px rgba(212,175,55,0.18),
	0 0 26px rgba(212,175,55,0.12),
	0 2px 10px rgba(0,0,0,0.35);     /* subtle depth against background */
	animation: gdGlow 3.8s ease-in-out infinite;
}

.gd-hero-subtitle{
  margin-top: 6px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(12px, 1.2vw, 16px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}			

@keyframes gdGlow{
  0%,100%{
	text-shadow:
	  0 0 6px rgba(212,175,55,0.22),
	  0 0 14px rgba(212,175,55,0.14),
	  0 0 26px rgba(212,175,55,0.10),
	  0 2px 10px rgba(0,0,0,0.35);
  }
  50%{
	text-shadow:
	  0 0 8px rgba(212,175,55,0.30),
	  0 0 18px rgba(212,175,55,0.20),
	  0 0 34px rgba(212,175,55,0.14),
	  0 2px 10px rgba(0,0,0,0.35);
  }
}

.gd-audiowide{
  --text: #F6F1E7;              /* off-white (warm/ivory) */
  /* alt: slightly rosier off-white */
  /* --text: #F7EEE9; */

  /* glow intensity knobs */
  --glow1: rgba(246,241,231,0.40);
  --glow2: rgba(246,241,231,0.22);
  --glow3: rgba(246,241,231,0.12);

  font-family: "Audiowide", system-ui, sans-serif;
  font-size: clamp(56px, 6vw, 110px);
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;

  color: var(--text);

  /* crisp edge so it reads like a "lit sign" */
  -webkit-text-stroke: 1px rgba(0,0,0,0.35);

  /* layered glow (this is the main effect) */
  text-shadow:
	0 0 6px  var(--glow1),
	0 0 18px var(--glow2),
	0 0 36px var(--glow3),
	0 3px 14px rgba(0,0,0,0.45);
}

/* Optional: add a "bloom" layer (stronger, softer halo) */
.gd-audiowide{
  position: relative;
  display: inline-block;
}

.gd-audiowide::after{
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  text-shadow:
	0 0 14px rgba(246,241,231,0.35),
	0 0 42px rgba(246,241,231,0.18);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

.gd-home-link,
.gd-home-link:visited,
.gd-home-link:hover,
.gd-home-link:active,
.gd-home-link:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/* prevent link from creating its own glow or highlight */
.gd-home-link * {
  color: inherit;
}

/* optional: keep pointer behavior clean */
.gd-home-link {
  display: inline-block;
}

.gd-latest-release {
  max-width: 760px;
  margin: 10px auto 0;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20,0,35,.78), rgba(0,0,0,.72));
  box-shadow: 0 0 35px rgba(180, 70, 255, .22);
  text-align: center;
  color: #fff;
  font-family: inherit;
}

.gd-latest-release h1 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gd-latest-release h2 {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 400;
  color: #d9b8ff;
}

.gd-release-content {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gd-release-cover {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255,255,255,.18);
}

.gd-release-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.gd-release-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  transition: all .2s ease;
}

.gd-release-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(217,184,255,.35);
  background: rgba(255,255,255,.16);
}

.gd-release-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

@media (max-width: 600px) {
  .gd-latest-release {
	padding: 22px;
  }

  .gd-latest-release h1 {
	font-size: 26px;
  }

  .gd-latest-release h2 {
	font-size: 19px;
  }

  .gd-release-cover {
	width: 160px;
	height: 160px;
  }
}

.email-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #f4eef3;
    text-decoration: none;
    vertical-align: middle;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease;
}

.email-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.email-icon:hover {
    color: #ff87c8;
    transform: translateY(-2px);
    filter:
        drop-shadow(0 0 5px rgba(255, 92, 180, 0.8))
        drop-shadow(0 0 12px rgba(135, 56, 255, 0.55));
}

.email-icon:focus-visible {
    outline: 1px solid #ff87c8;
    outline-offset: 4px;
    border-radius: 50%;
}
