/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  border-bottom: 2px solid #333;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #9b59b6;
}

header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #cfcfcf;
}

/* Shortcuts */
.shortcuts {
  padding: 2rem 1rem;
}

.shortcuts h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #9b59b6;
}

/* Grid for shortcuts - force 3 columns */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Shortcut Cards */
.shortcut {
  display: block;              /* Make entire card clickable */
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid #2c2c2c;
  text-decoration: none;       /* Remove underline */
  color: inherit;              /* Use card colors instead of link blue */
}

.shortcut h3,
.shortcut p {
  color: inherit;              /* Prevent blue/purple links */
  text-decoration: none;
}

.shortcut:hover {
  background: #292929;
  transform: translateY(-5px);
}

/* Hover text effects */
.shortcut:hover h3 {
  color: #9b59b6;              /* Purple glow for titles */
}

.shortcut:hover p {
  color: #cccccc;              /* Slightly brighter description */
}

.shortcut h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.shortcut p {
  font-size: 0.9rem;
  color: #aaaaaa;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 2px solid #333;
  background: #1a1a1a;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}
