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

.abeezee-regular {
  font-family: "ABeeZee", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.abeezee-regular-italic {
  font-family: "ABeeZee", sans-serif;
  font-weight: 400;
  font-style: italic;
}

body {
  font-family: "ABeeZee", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "ABeeZee", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 0px #ff6b6b;
}

.nav-links {
  font-family: "ABeeZee", sans-serif;
  color: white;
  font-weight: bold;
}

.project-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
  animation: bounce 2s infinite;
}

.header h1 {
  font-family: "ABeeZee", sans-serif;
  font-size: 3.5rem;
  color: white;
  text-shadow: 3px 3px 0px #ff6b6b;
  margin-bottom: 10px;
  font-weight: bold;
}

.header p {
  font-family: "ABeeZee", sans-serif;
  font-size: 1.3rem;
  color: #f0f8ff;
  margin-bottom: 20px;
}

.rotating {
  animation: spin 3s linear infinite;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  min-width: 120px;
}

.stat-card:nth-child(even) {
  transform: rotate(2deg);
}

.stat-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.stat-number {
  font-family: "ABeeZee", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b6b;
}

.stat-label {
  font-family: "ABeeZee", sans-serif;
  font-size: 1rem;
  color: #666;
  margin-top: 5px;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: white;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.project-title {
  font-family: "ABeeZee", sans-serif;
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
  flex: 1;
}

.difficulty {
  font-family: "ABeeZee", sans-serif;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.difficulty-easy {
  background-color: #4ade80;
  color: white;
}

.difficulty-medium {
  background-color: #fbbf24;
  color: white;
}

.difficulty-hard {
  background-color: #f87171;
  color: white;
}

.project-description {
  font-family: "ABeeZee", sans-serif;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.project-category {
  font-family: "ABeeZee", sans-serif;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-date {
  font-family: "ABeeZee", sans-serif;
  color: #999;
  font-size: 0.9rem;
}

/* Category Colors */
.bg-blue-400 {
  background-color: #60a5fa;
}

.bg-purple-400 {
  background-color: #a78bfa;
}

.bg-green-400 {
  background-color: #4ade80;
}

.bg-yellow-400 {
  background-color: #facc15;
}

.bg-pink-400 {
  background-color: #f472b6;
}

.bg-red-400 {
  background-color: #f87171;
}

/* Action Section */
.action-section {
  text-align: center;
  margin: 50px 0;
}

.add-project-btn {
  font-family: "ABeeZee", sans-serif;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.add-project-btn:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  font-family: "ABeeZee", sans-serif;
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  color: white;
  font-size: 1.1rem;
}

.emoji-row {
  margin-top: 20px;
}

.fun-emoji {
  font-size: 2rem;
  margin: 0 10px;
  animation: spin 3s linear infinite;
}

/* Animations */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .project-header {
    flex-direction: column;
    gap: 10px;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    padding: 15px;
  }
}