@font-face {
  font-family: "Patung";
  src: url("/Patung.c39f5131.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --text-color: #ffffff;
  --background-color: #0D0D0D;
  --card-bg: #1A1A1A;
  --border-color: #333333;
}

[data-theme=light] {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --text-color: #333333;
  --background-color: #f5f5f5;
  --card-bg: rgba(255, 255, 255, 0.8);
  --border-color: rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
  transition: all 5s ease;
}
body.light-theme {
  color: #000000;
  background-color: #ffffff;
}

.theme-switcher {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 5s ease;
}
.theme-switcher .sun-icon, .theme-switcher .moon-icon {
  width: 24px;
  height: 24px;
  transition: all 5s ease;
  stroke: #ffffff;
}
.theme-switcher .sun-icon {
  display: none;
  opacity: 0;
  transform: rotate(-180deg);
  transition: opacity 5s ease, transform 5s ease, stroke 5s ease;
}
.theme-switcher .moon-icon {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
  transition: opacity 5s ease, transform 5s ease, stroke 5s ease;
}
body.light-theme .theme-switcher {
  color: #000000;
}
body.light-theme .theme-switcher .sun-icon, body.light-theme .theme-switcher .moon-icon {
  stroke: #000000;
}
body.light-theme .theme-switcher .sun-icon {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
}
body.light-theme .theme-switcher .moon-icon {
  display: none;
  opacity: 0;
  transform: rotate(180deg);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 1s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.light-theme .navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar .nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 5s ease;
}
.navbar .logo-container img.logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: all 5s ease;
}
body.light-theme .navbar .logo-container img.logo {
  filter: invert(1);
}
.navbar .logo-container .logo {
  font-family: "Patung", sans-serif;
  font-size: 25px;
  color: #ffffff;
  text-decoration: none;
  transition: all 5s ease;
}
body.light-theme .navbar .logo-container .logo {
  color: #000000;
}
.navbar .logo-container .logo span {
  color: rgb(255, 0, 166);
  transition: all 5s ease;
}
.navbar .nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.navbar .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 1s ease;
  position: relative;
}
body.light-theme .navbar .nav-links a {
  color: #000000;
}
.navbar .nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(255, 0, 166);
  transition: width 1s ease;
}
.navbar .nav-links a:hover {
  color: rgb(255, 0, 166);
}
.navbar .nav-links a:hover:after {
  width: 100%;
  transition: width 0.3s ease;
}
.navbar .nav-links .back-to-xayrus {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-project-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-tile {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.letter-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Patung", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 5s ease;
}
body.light-theme .letter-badge {
  color: #000000;
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

.footer-letter-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  transition: all 5s ease;
}
.section-header h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: all 5s ease;
}
body.light-theme .section-header h2 {
  color: #000000;
}
.section-header p {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.8;
  transition: all 5s ease;
}
body.light-theme .section-header p {
  color: #000000;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000000;
  transition: all 5s ease;
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  transition: all 5s ease;
}
.hero .hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  transition: all 5s ease;
}
.hero .hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  transition: all 5s ease;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: all 5s ease;
}
.hero .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
  opacity: 1;
  transition: opacity 5s ease;
}
body.light-theme .hero .dark-overlay {
  opacity: 0;
}

.tech-stack {
  padding: 8rem 2rem;
  background: #000000;
  position: relative;
  overflow: hidden;
  transition: all 5s ease;
}
body.light-theme .tech-stack {
  background: #ffffff;
}
.tech-stack .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.tech-stack .tech-item {
  background: rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 1s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.light-theme .tech-stack .tech-item {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.tech-stack .tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgb(255, 0, 166);
  transition: all 0.3s ease;
}
.tech-stack .tech-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  transition: all 5s ease;
  filter: brightness(0) invert(1);
}
body.light-theme .tech-stack .tech-item img {
  filter: none;
}
.tech-stack .tech-item h3 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  transition: all 5s ease;
}
body.light-theme .tech-stack .tech-item h3 {
  color: #000000;
}

.projects .project-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.projects .project-hero .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.projects .project-hero .video-container .project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.projects .project-hero .video-container .project-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.projects .project-hero .video-container .project-cta h2 {
  color: #ffffff;
  font-size: 4.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: static;
  transform: none;
}
.projects .project-hero .video-container .project-cta .play-button {
  position: static;
  transform: none;
  cursor: pointer;
  pointer-events: auto;
}
.projects .project-hero .video-container:hover .project-video {
  filter: grayscale(0%);
}
.projects .project-hero .video-container:hover .play-button {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background: #000000;
  color: #ffffff;
  padding: 6rem 2rem 2rem;
  transition: all 5s ease;
}
body.light-theme .footer {
  background: #ffffff;
  color: #000000;
}
.footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
}
body.light-theme .footer .footer-brand img.logo {
  filter: invert(1);
}
.footer .footer-brand .footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer .footer-brand .footer-project-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer .footer-brand .footer-logo {
  font-size: 45px;
  transition: all 5s ease;
  font-family: "Patung", sans-serif;
}
.footer .footer-brand .footer-logo span {
  color: rgb(255, 0, 166);
  transition: all 5s ease;
}
.footer .footer-brand .footer-tagline {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
  color: #ffffff;
  transition: all 5s ease;
}
body.light-theme .footer .footer-brand .footer-tagline {
  color: #000000;
}
.footer .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 4rem;
}
.footer .footer-links .footer-section h3 {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 600;
  transition: all 5s ease;
}
body.light-theme .footer .footer-links .footer-section h3 {
  color: #000000;
}
.footer .footer-links .footer-section a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: all 1s ease;
  font-size: 1rem;
}
body.light-theme .footer .footer-links .footer-section a {
  color: #000000;
}
.footer .footer-links .footer-section a:hover {
  opacity: 1;
  color: rgb(255, 0, 166);
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.footer .footer-bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  transition: all 5s ease;
}
body.light-theme .footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
}
.footer .footer-bottom .powered-by {
  margin-top: 0.5rem;
}
.footer .footer-bottom .powered-by a {
  color: inherit;
  text-decoration: underline;
}

.btn {
  background-color: #1a1c25;
  border: 0.05px solid #454549;
  color: white;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 20px !important;
  border-radius: clamp(45px, 5rem, 60px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: 0.5s;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  text-transform: uppercase;
}
.btn .btn-caret {
  transition: transform 0.3s ease;
}
.btn:hover .btn-caret {
  transform: translateX(3px);
}
.btn.primary {
  background: #1a1c25;
  color: #ffffff;
}
.btn.primary:hover {
  background: rgb(178.5, 0, 116.2);
}

.modal-video {
  width: calc(100% - 40px);
  height: 80vh;
  flex-shrink: 0;
  margin: 20px auto 0;
  border-radius: 12px;
  overflow: hidden;
}
.modal-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-video-label {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal-video-label .modal-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-video-label .modal-title-row .modal-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.modal-video-label .modal-title-row h1, .modal-video-label .modal-title-row h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.modal-details {
  text-align: center;
  max-width: 600px;
  padding: 0 2rem;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-details .modal-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.modal-details .modal-title-row .modal-logo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.modal-details h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.modal-details .modal-tagline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.modal-details .modal-copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-top: 1rem;
}

.modal-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}
.modal-phones .phone-mockup {
  transform: scale(0.85);
  opacity: 0.8;
  transition: all 0.4s ease;
}
.modal-phones .phone-mockup.phone-center {
  transform: scale(1);
  opacity: 1;
}
.modal-phones .phone-mockup:hover {
  transform: scale(0.9);
  opacity: 1;
}
.modal-phones .phone-mockup.phone-center:hover {
  transform: scale(1.05);
}
.modal-phones .phone-frame {
  width: 220px;
  height: 450px;
  background: linear-gradient(135deg, #1c1e22 0%, #0b0b0d 40%, #000 100%);
  border-radius: 36px;
  padding: 8px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.22);
}
.modal-phones .phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
.modal-phones .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 10px 20px rgba(0, 0, 0, 0.35);
}
.modal-phones .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.modal-phones .phone-home-indicator {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35));
  opacity: 0.9;
  z-index: 3;
}

.modal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2rem 4rem;
}
.modal-links .store-links, .modal-links .social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.modal-links .store-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.modal-links .store-badge .store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.modal-links .store-badge .store-badge-text small {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.modal-links .store-badge:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.modal-links .store-badge.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.modal-links .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.modal-links .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.project-page {
  min-height: 100vh;
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#tryme-page {
  background: linear-gradient(135deg, #F52776 0%, #F9666D 50%, #ff8a7a 100%);
}

#condora-page {
  background: linear-gradient(135deg, #000000 0%, #9810fa 50%, #2b7fff 100%);
}

.policy-content {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  color: #fff;
}
.policy-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.policy-content .policy-updated {
  opacity: 0.8;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}
.policy-content p, .policy-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.policy-content ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.policy-content ul li {
  margin-bottom: 0.5rem;
}
.policy-content a {
  color: #fff;
  text-decoration: underline;
}

.modal-platform-section {
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-platform-section .platform-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.modal-platform-section .platform-label svg {
  opacity: 0.7;
}
.modal-platform-section .platform-description {
  max-width: 600px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.browser-mockup {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.browser-mockup .browser-topbar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 12px;
}
.browser-mockup .browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.browser-mockup .browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-mockup .browser-dots .dot-red {
  background: #ff5f57;
}
.browser-mockup .browser-dots .dot-yellow {
  background: #febc2e;
}
.browser-mockup .browser-dots .dot-green {
  background: #28c840;
}
.browser-mockup .browser-url-bar {
  flex: 1;
  max-width: 400px;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
.browser-mockup .browser-spacer {
  width: 50px;
  flex-shrink: 0;
}
.browser-mockup .browser-screen {
  background: #1a1a1a;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser-mockup .browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .hero .hero-content p {
    font-size: 1.2rem;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .modal-phones {
    gap: 1rem;
  }
  .modal-phones .phone-frame {
    width: 160px;
    height: 330px;
    border-radius: 28px;
    padding: 6px;
  }
  .modal-phones .phone-notch {
    width: 60px;
    height: 18px;
    top: 12px;
  }
  .modal-phones .phone-screen {
    border-radius: 22px;
  }
  .modal-phones .phone-home-indicator {
    width: 56px;
    bottom: 10px;
  }
  .modal-details h2 {
    font-size: 1.8rem;
  }
  .modal-tagline {
    font-size: 1.6rem;
  }
  .project-page {
    padding-top: 76px;
  }
}

/*# sourceMappingURL=/main.3443792a.css.map */