@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400&family=Space+Mono&display=swap");

:root {
  --bg-main: #1d1a27;
  --bg-card: #282335;
  --bg-card-hover: #332d44;
  --color-text: #ebdcd5;
  --color-text-muted: #a5a1b5;
  --color-accent: #d4af37;
  --color-accent-light: #e5c158;
  --color-accent-dim: rgba(212, 175, 55, 0.15);
  --border-color: rgba(212, 175, 55, 0.2);
  --font-sans: "Outfit", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--bg-main);
}

body {
  background-color: var(--bg-main);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-text);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

input,
textarea,
button {
  font-family: var(--font-sans);
}

.blueprint-grid {
  background-size: 30px 30px;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
}

.blueprint-dot {
  background-size: 20px 20px;
  background-image: radial-gradient(
    rgba(212, 175, 55, 0.15) 1px,
    transparent 1px
  );
}

.shadowrunplay\.com-header {
  position: fixed;
  top: 24px;
  left: 5%;
  width: 90%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: rgba(29, 26, 39, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadowrunplay\.com-header.scrolled {
  padding: 12px 30px;
  background: rgba(29, 26, 39, 0.95);
  top: 12px;
}

.shadowrunplay\.com-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.shadowrunplay\.com-nav ul li a {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.shadowrunplay\.com-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.shadowrunplay\.com-nav ul li a:hover {
  color: var(--color-accent);
}

.shadowrunplay\.com-nav ul li a:hover::after {
  width: 100%;
}

.shadowrunplay\.com-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  font-family: var(--font-mono);
}

.shadowrunplay\.com-contacts a:hover {
  color: var(--color-accent);
}

.shadowrunplay\.com-burger {
  display: none;
  font-size: 24px;
  color: var(--color-accent);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.shadowrunplay\.com-burger:hover {
  transform: scale(1.1);
}

.shadowrunplay\.com-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--bg-card);
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.shadowrunplay\.com-mobile-menu.active {
  right: 0;
}

.shadowrunplay\.com-mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shadowrunplay\.com-mobile-nav ul li a {
  font-size: 18px;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shadowrunplay\.com-mobile-nav ul li a:hover {
  color: var(--color-accent);
  padding-left: 10px;
}

.shadowrunplay\.com-mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.shadowrunplay\.com-footer {
  background: var(--bg-card);
  padding: 80px 5% 40px;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.shadowrunplay\.com-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.shadowrunplay\.com-footer-brand p {
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.shadowrunplay\.com-footer h4 {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shadowrunplay\.com-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shadowrunplay\.com-footer ul li a {
  color: var(--color-text-muted);
  font-size: 14px;
}

.shadowrunplay\.com-footer ul li a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.shadowrunplay\.com-footer-contacts p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.shadowrunplay\.com-footer-contacts a {
  color: var(--color-text);
}

.shadowrunplay\.com-footer-contacts a:hover {
  color: var(--color-accent);
}

.shadowrunplay\.com-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.shadowrunplay\.com-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

.shadowrunplay\.com-footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.shadowrunplay\.com-footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.shadowrunplay\.com-footer-socials a:hover {
  background: var(--color-accent);
  color: var(--bg-main);
  transform: translateY(-3px);
}

.shadowrunplay\.com-footer-copy {
  text-align: right;
  font-size: 13px;
  color: var(--color-text-muted);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(29, 26, 39, 0.6);
  backdrop-filter: blur(5px);
  color: var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--color-accent);
  color: var(--bg-main);
}

.slider-arrow-left {
  left: 30px;
}

.slider-arrow-right {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: var(--color-accent);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 20px;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

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

.glass-panel {
  background: rgba(40, 35, 53, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-size: 12vw;
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(212, 175, 55, 0.03);
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s ease,
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-accent-light);
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: var(--bg-card-hover);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    padding 0.4s ease;
  background: rgba(40, 35, 53, 0.3);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.accordion-item.active .accordion-content {
  padding: 20px;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

main {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .shadowrunplay\.com-header {
    width: 92%;
    left: 4%;
    padding: 12px 24px;
    border-radius: 24px;
  }
  .shadowrunplay\.com-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shadowrunplay\.com-footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shadowrunplay\.com-footer-copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .shadowrunplay\.com-nav {
    display: none;
  }
  .shadowrunplay\.com-contacts {
    display: none;
  }
  .shadowrunplay\.com-burger {
    display: block;
  }
  .shadowrunplay\.com-footer-grid {
    grid-template-columns: 1fr;
  }
  main {
  padding-top: 150px;
}
}

.awwwards-cross {
  position: relative;
}

.awwwards-cross::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
  z-index: 1;
}

.awwwards-cross::after {
  content: "";
  position: absolute;
  left: 40%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--border-color);
  z-index: 1;
}

.meta-number {
  font-size: 15vw;
  font-family: var(--font-mono);
  line-height: 1;
  color: rgba(212, 175, 55, 0.05);
  user-select: none;
}

.difference-text {
  mix-blend-mode: difference;
  color: #fff;
}

.text-outline {
  -webkit-text-stroke: 1px var(--color-accent);
  color: transparent;
}

.hover-reveal-card {
  position: relative;
  overflow: hidden;
}

.hover-reveal-card .reveal-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(40, 35, 53, 0.95);
  transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-reveal-card:hover .reveal-content {
  bottom: 0;
}

.grid-axis {
  position: relative;
}

.grid-axis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(212, 175, 55, 0.1);
}

.stagger-col-1 {
  transform: translateY(0px);
}

.stagger-col-2 {
  transform: translateY(30px);
}

.stagger-col-3 {
  transform: translateY(60px);
}
html {
  overflow-x: clip;
}
.awwwards-header-text {
  font-size: calc(2rem + 3vw);
  font-family: var(--font-serif);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.blueprint-cage-cell {
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.blueprint-cage-cell::after {
  content: "+";
  position: absolute;
  top: -6px;
  right: -5px;
  font-size: 10px;
  color: var(--color-accent);
  font-family: var(--font-mono);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.stack-container {
  position: relative;
  width: 100%;
}

.stack-card {
  position: sticky;
  border-radius: 28px;
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  min-height: 280px;
  margin-bottom: 50px;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.stack-card:nth-child(1) {
  top: 100px;
  background-color: #282335;
}

.stack-card:nth-child(2) {
  top: 130px;
  background-color: #332d44;
}

.stack-card:nth-child(3) {
  top: 160px;
  background-color: #1e1b29;
}

.stack-card:hover {
  border-color: var(--color-accent);
  box-shadow:
    0 20px 50px rgba(212, 175, 55, 0.12),
    0 -20px 50px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1024px) {
  .horizontal-slider {
    display: flex;
    height: 480px;
    gap: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: #020205;
    position: relative;
  }

  .horizontal-card {
    flex: 1;
    width: 0;
    min-width: 0;
    height: 100%;
    border-right: 1px solid var(--border-color);
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
  }

  .horizontal-card:last-child {
    border-right: none;
  }

  .horizontal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(29, 26, 39, 0.25) 0%,
      rgba(29, 26, 39, 0.5) 100%
    );
    transition:
      opacity 0.8s,
      background 0.8s;
    z-index: 2;
    pointer-events: none;
  }

  .horizontal-card:hover {
    flex: 12 !important;
    z-index: 5;
  }

  .horizontal-slider:hover .horizontal-card:not(:hover) {
    flex: 0.7 !important;
  }

  .horizontal-card:hover::before {
    background: linear-gradient(
      180deg,
      rgba(29, 26, 39, 0.05) 0%,
      rgba(29, 26, 39, 0.35) 100%
    );
  }

  .horizontal-card p {
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.8s,
      transform 0.8s;
    background: rgba(29, 26, 39, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    backdrop-filter: blur(12px);
    max-width: 400px;
  }

  .horizontal-card:hover p {
    opacity: 1;
    transform: translateY(0);
  }
}
