:root {
  --bg-color: #0a0a0c;
  --accent-color: #7c4dff; /* DeepPurpleAccent */
  --glass-bg: rgba(124, 77, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-main: rgba(255, 255, 255, 0.9);
  --text-dim: rgba(255, 255, 255, 0.6);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
}

nav {
  padding: 2rem;
  text-align: center;
}

.brand {
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 1.5rem;
  color: var(--text-main);
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.tagline {
  color: var(--text-dim);
  font-size: 1.2rem;
}

.projects h2 {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* Matching the AppHero.dart design */
.project-card {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(124, 77, 255, 0.05));
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.card-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(124, 77, 255, 0.1);
  border-radius: 50%;
}

.project-logo {
  width: 70px;
  height: auto;
  position: relative;
  z-index: 1;
}

.text-area h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.subtitle {
  display: block;
  font-size: 0.65rem;
  font-weight: bold;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.text-area p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.8;
}

footer {
  text-align: center;
  padding: 4rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

@media (max-width: 600px) {
  .card-content {
    flex-direction: column;
    text-align: center;
  }
  h1 {
    font-size: 2.5rem;
  }
}