/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(160deg, #05060a 0%, #0a0b14 100%);
  color: #e0e0ff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

/* Links */
a {
  text-decoration: none;
  color: #ffffffaa;
  transition: 0.2s;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

header b {
  font-size: 24px;
  font-weight: 800;
}

.login {
  padding: 10px 16px;
  background: #fff;
  color: #05060a;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.2s;
}

.login:hover {
  background: #ddd;
}

/* Main content */
main {
  flex: 1;
  padding: 60px 10%;
  max-width: 1200px;
  margin: auto;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
}

/* Card grid (products) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.thumb {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg,#ffffff33,#ffffff11);
  font-weight: 700;
  font-size: 20px;
}

.card-body {
  padding: 16px;
}

.price {
  margin-top: 8px;
  font-weight: 700;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #05060a;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #ddd;
}

/* Profile Section */
.profile {
  margin-top: 80px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.owned-items {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
  gap: 16px;
  margin-top: 16px;
}

.owned-item {
  background: rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  transition: 0.2s;
}

.owned-item:hover {
  background: rgba(255,255,255,0.12);
}

/* Footer */
footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

footer a {
  margin: 0 6px;
}

/* Container for TOS/Privacy */
.container {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 32px;
  font-weight: 600;
  padding: 8px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: 0.2s;
}

.back-link:hover {
  background: rgba(255,255,255,0.2);
}

/* Lists */
ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

/* Respo*
