* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #f7f7fb;
  background: #0a0b10;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
}

.logo span {
  color: #9b7cff;
  margin-left: 4px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  color: #c9cad3;
}

.nav a:hover {
  color: #ffffff;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  border-radius: 10px;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(111, 75, 255, 0.28), transparent 35%),
    radial-gradient(circle at 85% 40%, rgba(0, 204, 255, 0.15), transparent 30%);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: #9b7cff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  max-width: 680px;
  color: #c7c8d2;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, #7b5cff, #9f79ff);
  color: white;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.profile-image {
  width: 150px !important;
  height: 150px !important;
  max-width: 150px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 24px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.handle {
  font-weight: 700;
  margin-bottom: 6px;
}

.status {
  color: #b7b8c2;
  margin-bottom: 0;
}

.section {
  padding: 110px 0;
}

.section.alt {
  background: #101119;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  padding: 28px;
  border-radius: 20px;
  background: #141620;
  border: 1px solid rgba(255,255,255,0.08);
}

.card p {
  color: #b8bac5;
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(155, 124, 255, 0.16);
  color: #bca8ff;
}

.text-link {
  color: #bca8ff;
  font-weight: 700;
}

.info-box,
.game-panel,
.contact-box {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.info-row span {
  color: #aeb0bb;
}

.pixel-title {
  font-weight: 800;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.about {
  max-width: 780px;
  font-size: 1.08rem;
  color: #c3c5cf;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.social-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: #141620;
  border: 1px solid rgba(255,255,255,0.08);
}

.social-card strong {
  font-size: 1.1rem;
}

.social-card span {
  color: #aeb0bb;
  font-size: 0.9rem;
}

.social-card:hover {
  border-color: rgba(155,124,255,0.5);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-box p {
  max-width: 650px;
  color: #bfc1cb;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9fa1ac;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 22px;
    border-radius: 16px;
    background: #12131b;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 600px) {
  .profile-image {
    width: 120px !important;
    height: 120px !important;
    max-width: 120px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .section {
    padding: 78px 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
.google-calendar {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 18px;
  background: white;
}

.google-calendar iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .google-calendar {
    height: 700px;
  }

  .google-calendar iframe {
    height: 740px;
  }
}