@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-deep: #000000;
  --bg-dark: #070707;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --primary: #ffffff;
  --primary-glow: rgba(255, 255, 255, 0.35);
  --primary-hover: #e0e0e0;
  --text-main: #ffffff;
  --text-muted: #888888;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.2);
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glow-shadow: 0 0 25px var(--primary-glow);
}

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

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

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle 350px at var(--mx, 0px) var(--my, 0px), rgba(255, 255, 255, 0.04), transparent 80%);
}

.blueprint-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-size: 80px 80px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  z-index: -2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  width: 0%;
  z-index: 1000;
  box-shadow: 0 0 10px var(--primary);
  transition: width 0.1s ease-out;
}

.container-max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header / Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(5, 2, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand-link {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.brand-dot {
  color: var(--primary);
  text-shadow: 0 0 12px var(--primary);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-hover);
  text-shadow: 0 0 8px var(--primary-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(155, 93, 229, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-pill {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 8rem 0 4rem;
}

.section-head {
  margin-bottom: 3.5rem;
  text-align: left;
}

.kicker {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--text-main) 30%, #b580f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Centered layout Hero Section */
.hero-asymmetric {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 8rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Big Domain Card Container */
.domain-card-wrapper {
  width: 100%;
  margin-bottom: 2rem;
}

.domain-field {
  display: flex;
  justify-content: center;
  align-items: center;
}

.domain-title {
  font-size: clamp(2rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--text-main);
  user-select: none;
  white-space: nowrap;
}

.domain-letter-shell {
  display: inline-flex;
  cursor: pointer;
  padding-block: 0.08em;
  transform: translate3d(var(--rx, 0px), var(--ry, 0px), 0) scale(var(--rs, 1));
  transition: transform 185ms cubic-bezier(0.22, 1, 0.36, 1);
}

.domain-letter {
  display: inline-block;
  animation: floatLetter var(--float-duration, 4s) ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.domain-letter:hover {
  color: var(--text-main);
  text-shadow: 0 0 35px var(--primary-glow);
  transform: translateY(-12px) scale(1.1) rotate(-3deg) !important;
}

.domain-letter-dot {
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary);
}

@keyframes floatLetter {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  width: 100%;
}

/* Stats Block */
.stats-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2.5rem;
  width: 100%;
}

@media (max-width: 600px) {
  .stats-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stat-value-small {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: var(--font-mono);
}

.stat-label-small {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bento Grid Redesign */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(130px, auto);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
}

.bento-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.main-intro {
  grid-column: span 2;
  grid-row: span 2;
}

.focus-goal {
  grid-column: span 1;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .main-intro, .focus-goal {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.bento-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: space-around;
}

.bento-split-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bento-split-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.bento-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.bento-stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Terminal Card Widget */
.terminal-card {
  background: #06030c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  font-family: var(--font-mono);
  text-align: left;
}

.terminal-header {
  background: #0f0a18;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 1rem;
}

.terminal-dots {
  display: flex;
  gap: 0.35rem;
}

.terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.terminal-dots span:nth-child(1) { background: #ff5f56; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #27c93f; }

.terminal-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 1.25rem;
  font-size: 0.8rem;
  line-height: 1.6;
  min-height: 200px;
  color: rgba(255, 255, 255, 0.85);
}

.terminal-line {
  margin-bottom: 0.5rem;
}

.terminal-line.status-success {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.skill-category h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.skill-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: translateY(-2px);
}

/* Projects Grid */
/* Asymmetric Project Cards */
.projects-grid-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.project-card-wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .project-card-wide {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.project-card-wide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.project-status {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.project-status.live {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.project-status.planned {
  background: rgba(156, 163, 175, 0.15);
  color: #d1d5db;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.project-status.in-dev {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.project-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.project-links {
  display: flex;
  gap: 1rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Services */
/* Services Numbered List Accordion */
.services-list-wrapper {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-glass);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.015);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-color: rgba(255, 255, 255, 0.15);
}

.service-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: var(--transition-smooth);
}

.service-row:hover .service-num {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.service-main h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.discord-cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* Partner Section */
.partner-card {
  padding: 3rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.partner-left h3, .partner-right h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.partner-list {
  list-style: none;
}

.partner-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.partner-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.partner-ideal {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.partner-ideal h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.partner-ideal p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.partner-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.partner-serious {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--primary-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.availability-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

.availability-banner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.availability-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.availability-banner .highlight {
  color: var(--text-main);
  font-weight: 600;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--border-glass);
}

.contact-card-button {
  background: var(--bg-card);
  width: 100%;
  font-family: inherit;
  color: inherit;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px var(--primary);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 3rem;
  margin-top: 8rem;
  background: #000000;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-title {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--primary-hover);
  padding-left: 4px;
}

.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
}

/* Reveal scroll effect states */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Music Player Widget */
.music-player-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.music-player-widget:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.music-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.music-btn:hover {
  transform: scale(1.08);
}

.volume-slider-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

#volumeSlider {
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  transition: var(--transition-smooth);
}

#volumeSlider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* Click to Enter Splash Overlay */
.enter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.enter-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.enter-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.enter-logo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  font-family: var(--font-main);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.enter-btn {
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
}
