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

body {
  background: #121212;
  color: #e0e0e0;
  padding: 0;
  margin: 0;
}

.app {
  width: 100vw;
  min-height: 100vh;
  background: #1e1e1e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  padding: 60px 80px;
}

.payment-info {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.payment-info p {
  font-size: 18px;
  margin-bottom: 10px;
}

.payment-info .label {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 4px;
}

.payment-info .value {
  font-weight: 600;
  color: #ffffff;
}

.methods {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.method {
  flex: 1 1 240px;
  background: #2d2d2d;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.method:hover {
  background: #3a3a3a;
}

.method img {
  width: 64px;
  height: auto;
  margin-bottom: 10px;
}

.method .name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.method .category {
  font-size: 14px;
  color: #aaaaaa;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #888888;
  background: #1a1a1a;
}
