/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f0f2f, #1f1f4d);
  color: #fff;
  min-height: 100vh;
  padding: 2rem;
}

/* Header Styles */
header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 2.5rem;
  color: #00ffe1;
  text-shadow: 0 0 10px #00ffe1;
}

header p {
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 1.1rem;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Empty Work Box */
.work-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00ffe1;
  border-radius: 15px;
  padding: 2rem;
  height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.work-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffe1;
  background-color: rgba(0, 255, 225, 0.05);
}
