/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  transition: all 0.5s ease;
  overflow-x: hidden;
}

/* Theme variables */
.dark {
  --bg-primary: #1A1A1A;
  --text-primary: #F5F5F5;
  --accent-green: #2E8B57;
  --accent-gold: #D4A017;
  --accent-burgundy: #4A1B1B;
  --border-color: rgba(212, 160, 23, 0.3);
  --card-bg: rgba(245, 245, 245, 0.05);
  --nav-bg: rgba(26, 26, 26, 0.85);
  --section-bg: rgba(26, 26, 26, 0.8);
}

body:not(.dark) {
  --bg-primary: #F5F5F5;
  --text-primary: #1A1A1A;
  --accent-green: #2E8B57;
  --accent-gold: #D4A017;
  --accent-burgundy: #4A1B1B;
  --border-color: rgba(46, 139, 87, 0.3);
  --card-bg: rgba(26, 26, 26, 0.05);
  --nav-bg: rgba(245, 245, 245, 0.85);
  --section-bg: rgba(245, 245, 245, 0.8);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Particle canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* City silhouette */
.city-silhouette {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  opacity: 0.1;
  z-index: 0;
  color: var(--text-primary);
}

.city-silhouette svg {
  width: 100%;
  height: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--nav-bg);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--accent-green);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(46, 139, 87, 0.4);
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(212, 160, 23, 0.1));
}

.logo-text {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.125rem;
  text-shadow: 0 0 10px rgba(46, 139, 87, 0.6);
}

.corner-tl, .corner-br {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  opacity: 0.6;
}

.corner-tl {
  top: 0;
  left: 0;
  border-top: 2px solid var(--accent-gold);
  border-left: 2px solid var(--accent-gold);
}

.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--accent-gold);
  border-right: 2px solid var(--accent-gold);
}

.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.dark .brand-text {
  text-shadow: 0 0 15px rgba(212, 160, 23, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(46, 139, 87, 0.6);
}

.nav-underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-green), var(--accent-gold));
  transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
  width: 100%;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sun-icon, .moon-icon {
  transition: all 0.3s ease;
}

.dark .sun-icon {
  color: #9CA3AF;
}

body:not(.dark) .sun-icon {
  color: var(--accent-gold);
  filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.6));
}

.dark .moon-icon {
  color: var(--accent-green);
  filter: drop-shadow(0 0 8px rgba(46, 139, 87, 0.6));
}

body:not(.dark) .moon-icon {
  color: #9CA3AF;
}

/* Switch styles */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent-green);
  filter: drop-shadow(0 0 10px rgba(46, 139, 87, 0.4));
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Common styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}

.dark .section-title {
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.section-divider {
  width: 6rem;
  height: 1px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-burgundy));
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

.section-subtitle {
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
  opacity: 0.85;
}

/* Hero section */
.hero {
  padding-top: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.art-deco-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.circle-1, .circle-2, .square-1 {
  position: absolute;
  border: 1px solid currentColor;
}

.circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
}

.circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
}

.square-1 {
  top: 50%;
  left: 33.333%;
  width: 8rem;
  height: 8rem;
  transform: translateY(-50%) rotate(45deg);
}

.ray-1, .ray-2, .ray-3 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 1px;
  height: 8rem;
  background: currentColor;
  opacity: 0.3;
}

.ray-1 { transform: rotate(12deg); }
.ray-2 { transform: rotate(24deg); }
.ray-3 { transform: rotate(36deg); }

.corner-pattern-1, .corner-pattern-2 {
  position: absolute;
  bottom: 25%;
  width: 4rem;
  height: 4rem;
  border: 2px solid currentColor;
}

.corner-pattern-1 {
  left: 25%;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
}

.corner-pattern-2 {
  right: 25%;
  border-left: none;
  border-bottom: none;
  transform: rotate(-45deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-visual {
    display: none;
  }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.dark .hero-title {
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.4);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-title span {
  display: block;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.glow-green {
  color: var(--accent-green);
  text-shadow: 0 0 25px rgba(46, 139, 87, 0.6);
}

.title-divider {
  width: 6rem;
  height: 1px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-burgundy));
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.dark .hero-description {
  text-shadow: 0 0 5px rgba(245, 245, 245, 0.1);
}

/* Forms */
.notify-form {
  display: flex;
  gap: 0.75rem;
  max-width: 28rem;
}

.notify-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: rgba(245, 245, 245, 0.08);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.notify-form input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
  background: linear-gradient(to right, var(--accent-green), #236B43);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(46, 139, 87, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, #236B43, #1E5A37);
  transform: scale(1.05);
}

.full-width {
  width: 100%;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.game-preview {
  aspect-ratio: 1;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  transition: all 0.5s ease;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05), transparent);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.15);
}

.dark .game-preview {
  border-color: rgba(212, 160, 23, 0.4);
}

.game-preview:hover {
  transform: scale(1.05);
}

.preview-inner, .preview-core {
  position: absolute;
  border: 1px solid;
  border-radius: 0.5rem;
  border-opacity: 0.3;
}

.preview-inner {
  inset: 1rem;
  border-color: var(--accent-gold);
}

.preview-core {
  inset: 1rem;
  border-color: var(--accent-green);
}

.preview-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.gamepad-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 30px rgba(46, 139, 87, 0.4);
}

.dark .gamepad-icon {
  border-color: var(--accent-green);
}

.gamepad-icon svg {
  color: var(--accent-green);
  filter: drop-shadow(0 0 10px rgba(46, 139, 87, 0.6));
}

.coming-soon {
  font-weight: 500;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
}

.corner-deco {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid;
  opacity: 0.4;
}

.dark .corner-deco {
  border-color: var(--accent-gold);
}

body:not(.dark) .corner-deco {
  border-color: var(--accent-burgundy);
}

.corner-deco.tl { top: 0.5rem; left: 0.5rem; border-right: none; border-bottom: none; }
.corner-deco.tr { top: 0.5rem; right: 0.5rem; border-left: none; border-bottom: none; }
.corner-deco.bl { bottom: 0.5rem; left: 0.5rem; border-right: none; border-top: none; }
.corner-deco.br { bottom: 0.5rem; right: 0.5rem; border-left: none; border-top: none; }

/* About section */
.about-section {
  background-color: var(--section-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-paragraph {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--card-bg);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(46, 139, 87, 0.2);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: all 0.3s ease;
}

.service-card h3 {
  font-weight: 500;
  font-size: 1rem;
}

/* Services section */
.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .services-content {
    grid-template-columns: 1fr;
  }
}

.service-detail-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--card-bg);
  transition: all 0.5s ease;
  cursor: pointer;
}

.service-detail-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(46, 139, 87, 0.15);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-large-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-detail-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(46, 139, 87, 0.6);
}

/* Prohibition section */
.prohibition-section {
  background-color: rgba(74, 27, 27, 0.1);
}

body:not(.dark) .prohibition-section {
  background-color: var(--section-bg);
}

.prohibition-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .prohibition-content {
    grid-template-columns: 1fr;
  }
}

.features-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.game-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.game-feature:hover h4 {
  color: var(--accent-gold);
}

.feature-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--accent-gold);
  margin-top: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.6);
}

.feature-text h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.feature-text p {
  opacity: 0.75;
}

.coming-soon-info {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.coming-soon-text {
  font-weight: 500;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
  margin-bottom: 1rem;
}

.early-access-text {
  opacity: 0.75;
}

.game-preview-large {
  position: relative;
}

.preview-frame {
  aspect-ratio: 16/9;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.5s ease;
  background: linear-gradient(135deg, rgba(74, 27, 27, 0.2), transparent);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.dark .preview-frame {
  border-color: rgba(212, 160, 23, 0.4);
}

body:not(.dark) .preview-frame {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), transparent);
}

.preview-frame:hover {
  transform: scale(1.05);
}

.preview-border-1, .preview-border-2 {
  position: absolute;
  border: 1px solid;
  border-radius: 0.25rem;
  border-opacity: 0.3;
}

.preview-border-1 {
  inset: 1rem;
  border-color: var(--accent-gold);
}

.preview-border-2 {
  inset: 2rem;
  border-color: var(--accent-green);
}

.preview-content-large {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  background-color: rgba(245, 245, 245, 0.05);
}

body:not(.dark) .preview-content-large {
  background-color: rgba(26, 26, 26, 0.05);
}

.large-gamepad-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--accent-gold);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.4);
}

.preview-title {
  font-weight: 500;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
}

.preview-subtitle {
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Contact section */
.contact-section {
  background-color: var(--section-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-title, .social-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--accent-green);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(46, 139, 87, 0.3);
}

.contact-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-value {
  opacity: 0.75;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.contact-form-container {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--card-bg);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: rgba(245, 245, 245, 0.08);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.dark .form-group input,
.dark .form-group textarea {
  background-color: rgba(245, 245, 245, 0.08);
  border-color: rgba(212, 160, 23, 0.4);
}

body:not(.dark) .form-group input,
body:not(.dark) .form-group textarea {
  background-color: rgba(26, 26, 26, 0.08);
  border-color: rgba(46, 139, 87, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
}

.form-group textarea {
  resize: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  position: relative;
  z-index: 10;
  background-color: rgba(26, 26, 26, 0.9);
}

body:not(.dark) .footer {
  background-color: rgba(245, 245, 245, 0.9);
}

.footer-text {
  text-align: center;
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-container {
    padding: 0.75rem 1rem;
  }
  
  .brand-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .notify-form {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}