:root {
  --bg1: #0f0f10;
  --bg2: #1b1b1d;
  --bg3: #2a2118;
  --card: rgba(255, 255, 255, 0.05);
  --card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(212, 175, 55, 0.18);
  --text: #f3efe7;
  --muted: #b9b0a2;
  --gold: #d4af37;
  --gold-soft: #b8942f;
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg3) 100%);
  position: relative;
  min-height: 100vh;
  padding: 24px;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.main-logo {
  width: 110px;
  max-width: 30vw;
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
  border-radius: 16px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 1px;
  color: #f8f3e8;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  box-shadow: 0 16px 40px var(--shadow);
}

.card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, var(--card-hover), rgba(255, 255, 255, 0.05));
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.app-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
}

.card h2 {
  margin: 0;
  font-size: 24px;
  color: #f8f3e8;
}

.card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.badge {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  background: rgba(212, 175, 55, 0.14);
  color: #f0d87a;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer {
  text-align: center;
  margin-top: 30px;
  color: #9f9482;
  font-size: 14px;
}

.card {
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  text-align: center;
  backdrop-filter: blur(8px);
  transition: 0.25s;
  box-shadow: 0 16px 40px var(--shadow);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
}

.card-logo {

  width: 120px;
  height: auto;

  margin-bottom: 18px;

  object-fit: contain;

  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));

}

.card h2 {
  margin: 10px 0 10px 0;
  font-size: 26px;
}

.card p {
  margin-bottom: 18px;
  color: var(--muted);
}