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

body {
  background: linear-gradient(135deg, #12002a 0%, #1a0035 40%, #0d001a 100%);
  background-attachment: fixed;
  color: #c0b0d0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', Ubuntu, sans-serif;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 48px 20px;
  min-height: 100vh;
}

.app-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-list li {
  border-radius: 10px;
  overflow: hidden;
}

.app-list a {
  display: flex;
  align-items: center;
  color: #d0c0e0;
  text-decoration: none;
  padding: 18px 16px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 100, 255, 0.08);
}

.app-list a:hover,
.app-list a:active {
  background: linear-gradient(135deg, rgba(180, 40, 255, 0.15), rgba(255, 42, 109, 0.10));
  color: #fff;
  border-color: rgba(255, 42, 109, 0.3);
  box-shadow:
    0 0 20px rgba(180, 40, 255, 0.08),
    inset 0 0 20px rgba(255, 42, 109, 0.04);
}

.app-list a::after {
  content: '\203A';
  margin-left: auto;
  color: rgba(180, 100, 255, 0.3);
  font-size: 22px;
  transition: color 0.2s;
}

.app-list a:hover::after,
.app-list a:active::after {
  color: #ff2a6d;
}
