:root {
  /* Rich deep red background gradient colors */
  --bg-gradient: radial-gradient(circle at center, #3b050e 0%, #1c0206 70%, #0d0003 100%);
  --card-bg: rgba(61, 10, 20, 0.7);
  --card-hover: rgba(92, 16, 30, 0.9);
  --text-gold: #f7e7a9;
  --accent-gold: #e5b842;
  --border-color: #6e1c27;
  --glow-gold: rgba(229, 184, 66, 0.35);
}

body {
  margin: 0;
  padding: 20px;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-gold);
  font-family: 'Georgia', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 12px var(--glow-gold);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

/* Central Sri Chakra */
.center-frame {
  margin: 20px 0 40px 0;
  text-align: center;
}

.srichakra-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 30px var(--glow-gold);
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.srichakra-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(229, 184, 66, 0.6);
}

/* Grid for Links */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 15px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-link:hover {
  background-color: var(--card-hover);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px var(--glow-gold);
}

.icon-container {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  margin-bottom: 15px;
  background-color: #1c0206;
}

.icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p.label {
  margin: 0;
  font-size: 1.05rem;
  text-align: center;
  color: var(--text-gold);
  line-height: 1.4;
  font-weight: 500;
}