*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --g:      #c8952e;
  --g2:     #f0c040;
  --g3:     #fad86a;
  --off:    #f5edda;
  --dark:   #0e0a04;
  --mid:    #150f06;
  --alt:    #1a1208;
  --muted:  #8a7455;
  --disc:   #5865f2;
  --border: rgba(200,149,46,0.15);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--dark);
  color: var(--off);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* Fallback cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { cursor: none; }

/* CURSOR */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--g2);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

#cursor-trail {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(240,192,64,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.2s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
}

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: padding .35s, background .35s, border-color .35s;
}

#nav.stuck {
  padding: 16px 48px;
  background: rgba(14,10,4,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .12em;
  color: var(--g2);
  text-decoration: none;
  text-shadow: 0 0 40px rgba(240,192,64,.4);
  flex-shrink: 0;
  cursor: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--off);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .5;
  transition: opacity .2s, color .2s;
  font-weight: 500;
  white-space: nowrap;
  cursor: none;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--g2);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--g2);
  transition: transform .3s, opacity .3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(14,10,4,.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--g2);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}

.mobile-close:hover { opacity: 1; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: .1em;
  color: var(--off);
  text-decoration: none;
  opacity: .6;
  transition: opacity .2s, color .2s;
}

.mobile-nav a:hover {
  opacity: 1;
  color: var(--g2);
}

.mobile-menu-skull {
  font-size: 2rem;
  margin-top: 40px;
  opacity: .3;
}

/* HERO */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#bgvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(14,10,4,.55) 0%,
    rgba(14,10,4,.25) 30%,
    rgba(14,10,4,.55) 70%,
    rgba(14,10,4,1)   100%
  );
}

/* ENTRY MODAL */
.entry-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,10,4,.95);
  opacity: 1;
  transition: opacity .5s ease;
}

.entry-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.secret-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 28px;
  height: 28px;
  opacity: 0;
  z-index: 9999;
  cursor: none;
}

.entry-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--g2);
  margin-bottom: 20px;
}

.entry-btn {
  background: var(--g);
  color: var(--dark);
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: background .2s;
}

.entry-btn:hover {
  background: var(--g2);
}

#particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  width: 100%;
}

.hero-skull-top {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: floatSkull 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(240,192,64,.6));
  color: var(--g2);
}

.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 16px;
  font-weight: 500;
  opacity: 0;
  animation: heroUp .8s .4s ease both;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5.5rem, 18vw, 14rem);
  line-height: .9;
  letter-spacing: .04em;
  color: var(--off);
  opacity: 0;
  animation: heroUp 1s .6s cubic-bezier(.16,1,.3,1) both;
  text-shadow: 0 0 80px rgba(240,192,64,.15);
}

.gold-dot { color: var(--g2); }

.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--off);
  opacity: 0;
  margin-top: 20px;
  line-height: 1.6;
  animation: heroUp .8s 1s ease both;
  text-shadow: 0 2px 16px rgba(0,0,0,.8);
}

.hero-skull-bottom {
  margin-top: 28px;
  font-size: 1.4rem;
  letter-spacing: 1.2rem;
  color: var(--g);
  opacity: 0;
  animation: heroUp .7s 1.3s ease both;
  filter: drop-shadow(0 0 12px rgba(200,149,46,.5));
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--g);
  opacity: 0;
  animation: fadeIn 1s 1.8s ease both;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--g), transparent);
  animation: drip 2.2s 2s ease-in-out infinite;
}

/* SECTIONS */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

section { padding: 110px 0; }
section.alt { background: var(--alt); }

#fiverr { background: #100803; }

.discord-profile {
  background: rgba(200,149,46,.08);
  border: 1px solid rgba(200,149,46,.16);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}

.profile-banner {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--g), var(--g2));
  position: relative;
}

.profile-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content {
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 20px;
}

.profile-pfp {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--g);
  overflow: hidden;
  flex-shrink: 0;
}

.profile-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--g2);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(240,192,64,.3);
}

.profile-username {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.profile-quote {
  font-style: italic;
  color: #c4b490;
  line-height: 1.6;
  margin: 0;
  border-left: 3px solid var(--g);
  padding-left: 16px;
}

.youtube-channels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.youtube-card {
  background: rgba(200,149,46,.08);
  border: 1px solid rgba(200,149,46,.16);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.youtube-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(200,149,46,.2);
}

.yt-banner {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  position: relative;
}

.yt-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-content {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 14px;
}

.yt-pfp {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff0000;
  overflow: hidden;
  flex-shrink: 0;
}

.yt-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-info {
  flex: 1;
}

.yt-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #ff0000;
  margin-bottom: 2px;
  text-shadow: 0 0 10px rgba(255,0,0,.3);
}

.yt-handle {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .05em;
}

.yt-desc {
  font-size: .9rem;
  line-height: 1.5;
  color: #c4b490;
  margin-bottom: 10px;
}

.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff0000;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,0,0,.3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.yt-link:hover {
  color: #cc0000;
  border-color: #cc0000;
}

.fiverr-card {
  background: rgba(29,166,80,.08);
  border: 1px solid rgba(29,166,80,.16);
  border-radius: 24px;
  padding: 16px;
  transition: transform .2s, box-shadow .2s;
}

.fiverr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(29,166,80,.2);
}

.fiverr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fiverr-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #1da650;
  overflow: hidden;
  flex-shrink: 0;
}

.fiverr-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fiverr-meta {
  flex: 1;
}

.fiverr-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #1da650;
  margin-bottom: 2px;
  text-shadow: 0 0 10px rgba(29,166,80,.3);
}

.fiverr-handle {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: .05em;
}

.fiverr-stars {
  font-size: .85rem;
  color: #1da650;
  font-weight: 600;
}

.fiverr-body {
  padding-top: 12px;
  border-top: 1px solid rgba(29,166,80,.1);
}

.fiverr-desc {
  font-size: .9rem;
  line-height: 1.5;
  color: #c4b490;
  margin-bottom: 10px;
}

.fiverr-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1da650;
  text-decoration: none;
  border-bottom: 1px solid rgba(29,166,80,.3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  font-weight: 600;
}

.fiverr-btn:hover {
  color: #16a34a;
  border-color: #16a34a;
}

.roblox-card {
  background: rgba(228,64,95,.08);
  border: 1px solid rgba(228,64,95,.16);
  border-radius: 24px;
  padding: 16px;
  transition: transform .2s, box-shadow .2s;
}

.roblox-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(228,64,95,.2);
}

.roblox-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.roblox-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #E4405F;
  overflow: hidden;
  flex-shrink: 0;
}

.roblox-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roblox-meta {
  flex: 1;
}

.roblox-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #E4405F;
  margin-bottom: 2px;
  text-shadow: 0 0 10px rgba(228,64,95,.3);
}

.roblox-handle {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .05em;
}

.roblox-body {
  padding-top: 12px;
  border-top: 1px solid rgba(228,64,95,.1);
}

.roblox-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #E4405F;
  text-decoration: none;
  border-bottom: 1px solid rgba(228,64,95,.3);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  font-weight: 600;
}

.roblox-btn:hover {
  color: #d63650;
  border-color: #d63650;
}

.sec-header { margin-bottom: 0; }

.sec-label {
  font-size: .68rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--g);
  opacity: .8;
  margin-bottom: 10px;
  font-weight: 500;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: .06em;
  line-height: 1;
  color: var(--g2);
  margin-bottom: 18px;
  text-shadow: 0 0 60px rgba(240,192,64,.15);
}

.rule {
  height: 1px;
  width: 64px;
  background: linear-gradient(to right, var(--g), transparent);
  opacity: .5;
  margin-bottom: 56px;
}

/* ABOUT */
#about { background: var(--mid); }

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.body-text {
  font-size: 1.04rem;
  line-height: 1.95;
  color: #c4b490;
  font-weight: 300;
}

.body-text p { margin-bottom: 1rem; }
.body-text b { color: var(--off); font-weight: 500; }

.adhd-tag {
  display: inline-block;
  border: 1px solid rgba(200,149,46,.3);
  color: var(--g);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 16px;
  margin-top: 22px;
}

.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-item {
  background: #1c1509;
  padding: 28px 22px;
  transition: background .25s;
  position: relative;
}

.stat-item:hover { background: #241d0d; }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.stat-item:hover::before { opacity: 1; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--g2);
  letter-spacing: .04em;
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px rgba(240,192,64,.3);
}

.stat-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--g);
  vertical-align: super;
}

.stat-lbl {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* PROJECTS */
#projects { background: var(--dark); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: #1c1408;
}

.proj-card {
  background: var(--dark);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.proj-card:hover { background: #110d05; }

.proj-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), var(--g2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.proj-card:hover::after { transform: scaleX(1); }

.proj-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,149,46,.04), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}

.proj-card:hover::before { opacity: 1; }

.proj-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}

.proj-era {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--g);
  opacity: .6;
  margin-bottom: 6px;
}

.proj-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--off);
  margin-bottom: 10px;
  line-height: 1.3;
}

.proj-desc {
  font-size: .95rem;
  line-height: 1.85;
  color: #8a7a60;
}

.tag-row { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 4px; }

.tag {
  display: inline-block;
  border: 1px solid rgba(200,149,46,.18);
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 9px;
}

/* SERVERS */
#servers { background: var(--mid); }

.servers-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: #c4b490;
  max-width: 580px;
  margin-bottom: 52px;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1px;
  background: #0f0a18;
}

.srv-card {
  background: #0d0b18;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.srv-card:hover { background: #111020; }

.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--disc), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s ease;
}

.srv-card:hover::before { transform: scaleY(1); }

.srv-card.featured {
  border-top: 1px solid rgba(240,192,64,.2);
}

.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #2a2d40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.srv-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.srv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f0b429;
  margin-bottom: 9px;
}

.srv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0b429;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

.srv-dot.live {
  background: #3ba55d;
  animation: none;
  box-shadow: 0 0 0 3px rgba(59,165,93,.2);
}

.srv-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.12rem;
  color: #c0caff;
  margin-bottom: 9px;
  line-height: 1.3;
}

.srv-desc {
  font-size: .93rem;
  line-height: 1.82;
  color: #6a6d8e;
}

.srv-tag {
  display: inline-block;
  border: 1px solid rgba(88,101,242,.2);
  color: #6472b8;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 9px;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--disc);
  text-decoration: none;
  border-bottom: 1px solid rgba(88,101,242,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  font-weight: 500;
  cursor: none;
}

.srv-link:hover { color: #8891f7; border-color: #8891f7; }

.srv-soon {
  display: inline-block;
  border: 1px solid rgba(240,180,41,.2);
  color: #f0b429;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-top: 14px;
}

/* SKILLS */
#skills { background: var(--dark); }

.skills-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill {
  border: 1px solid rgba(200,149,46,.2);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 16px;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
  cursor: default;
}

.skill:hover {
  border-color: var(--g);
  color: var(--g2);
  background: rgba(200,149,46,.05);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  padding: 60px 48px 48px;
  border-top: 1px solid rgba(200,149,46,.08);
  text-align: center;
  background: var(--dark);
}

.footer-skull {
  font-size: 2.5rem;
  color: var(--g2);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(240,192,64,.3));
  animation: floatSkull 4s ease-in-out infinite;
}

.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .15em;
  color: var(--g2);
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(240,192,64,.25);
}

.footer-copy {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .5;
}

/* REVEAL */
.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.r.on {
  opacity: 1;
  transform: none;
}
