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

body, html {
  height: 100%;
  font-family: system-ui, sans-serif;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

header h1 {
  font-size: 3.6rem;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.0rem;
  color: #666;
  text-transform: uppercase;
}

.projects-columns {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section {
  flex: 1 1 45%;
  min-width: 300px;
}

.section-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-label.apps {
  color: rgba(0, 0, 255, 0.4);
}

.section-label.games {
  color: rgba(255, 0, 0, 0.4)
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-card {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s ease, color 0.2s ease;
}

.project-card.apps:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #9491fc;
  color: #4a51b3;
}

.project-card.apps:hover p {
  color: #6f70d7;
}

.project-card.games:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #ff9999;
  color: #a84c4f;
}

.project-card.games:hover p {
  color: #d37273;
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: inherit;
}

.project-card p {
  color: #555;
  transition: color 0.2s ease;
}

.arrow {
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
}

.project-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.coming-soon {
  justify-content: flex-start;
}

footer {
  text-align: center;
  padding: 0px 20px;
  font-size: 0.8rem;
  color: #888;
}

footer .container {
  padding: 30px;
}

body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

body::before {
  background: linear-gradient(to bottom right, rgba(255, 0, 0, 0.08) 0%, transparent 40%);
  rotate: -45deg;
}

body::after {
  background: linear-gradient(to bottom left, rgba(0, 0, 255, 0.08) 0%, transparent 50%);
  rotate: 240deg;
}

