/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
  background: #000032;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  flex-wrap: wrap;
}

/* App wrapper */
.app-wrapper {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  min-width: 200px;
  color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-wrapper.cadenza {
  background: linear-gradient(135deg, #453380 0%, #000032 100%);
}

.app-wrapper.mai {
  background: linear-gradient(135deg, #db9c48 0%, #ffc300 100%);
}

.app-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}

.app-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  border-radius: 15px;
  object-fit: cover;
}

.app-name {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.app-domain {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.app-wrapper a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.app-wrapper a:hover {
  background: rgba(255,255,255,0.4);
}

/* Arrow styling */
.arrow {
  width: 50px;
  height: 50px;
}

.arrow-desktop {
  display: block;
}

.arrow-mobile {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .arrow-desktop {
    display: none;
  }
  .arrow-mobile {
    display: block;
    width: 40px;
    height: 40px;
  }
}
