/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-bg: #0a0e27;
  --dark-secondary: #1a1f3a;
  --dark-card: #242b4d;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --accent-purple: #667eea;
  --accent-pink: #f093fb;
  --accent-blue: #4facfe;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 20px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.nav-logo .logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-primary);
}

.nav-logo .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left var(--transition-fast);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
  background: var(--accent-purple);
  transform: translateY(-3px);
}

.hero-image {
  animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 5px solid var(--dark-secondary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: var(--primary-gradient);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--text-secondary);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 10px; }
  100% { opacity: 0; top: 25px; }
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  padding: var(--section-padding);
  background: var(--dark-secondary);
  position: relative;
}

.section-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  text-align: center;
}

.about-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background: var(--dark-card);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ==================== SKILLS SECTION ==================== */
.skills-section {
  padding: var(--section-padding);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.skill-card {
  background: var(--dark-card);
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
}

.skill-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.skill-icon {
  font-size: 48px;
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-fast);
}

.skill-card:hover .skill-icon {
  transform: scale(1.1) rotate(5deg);
}

.skill-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.skill-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: var(--section-padding);
  background: var(--dark-secondary);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform var(--transition-fast);
}

.contact-btn:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

.contact-btn i {
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.contact-btn span {
  position: relative;
  z-index: 1;
}

.discord-btn {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
}

.email-btn {
  background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
  box-shadow: 0 10px 30px rgba(234, 67, 53, 0.3);
}

.email-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(234, 67, 53, 0.5);
}

.github-btn {
  background: linear-gradient(135deg, #333333 0%, #24292e 100%);
  box-shadow: 0 10px 30px rgba(36, 41, 46, 0.3);
}

.github-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(36, 41, 46, 0.5);
}

.status-btn {
  background: linear-gradient(135deg, #00D26A 0%, #00A854 100%);
  box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
}

.status-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 210, 106, 0.5);
}

.donate-btn {
  background: linear-gradient(135deg, #FFDD00 0%, #FF9933 100%);
  box-shadow: 0 10px 30px rgba(255, 221, 0, 0.3);
}

.donate-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 221, 0, 0.5);
}

/* ==================== PROJECTS PAGE ==================== */
.projects-header {
  padding: 150px 20px 80px;
  text-align: center;
  background: var(--dark-secondary);
}

.page-title {
  font-size: 56px;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
}

.projects-section {
  padding: var(--section-padding);
}

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

.project-card {
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-purple);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link-btn {
  padding: 15px 30px;
  background: var(--primary-gradient);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  transition: all var(--transition-fast);
}

.project-card:hover .project-link-btn {
  transform: translateY(0);
}

.project-content {
  padding: 30px;
}

.project-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.project-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.project-tag {
  background: var(--dark-secondary);
  color: var(--accent-purple);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.project-footer {
  padding-top: 20px;
  border-top: 1px solid var(--dark-secondary);
}

.project-link {
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.project-link:hover {
  gap: 12px;
  color: var(--accent-pink);
}

/* ==================== COMPACT PROJECT LIST (Home) ==================== */
.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.project-item {
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(102, 126, 234, 0.08);
}

/* Desktop Layout (min-width: 969px) */
@media (min-width: 969px) {
  .project-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 20px;
    align-items: start;
  }

  .project-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--dark-secondary);
    padding: 10px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    grid-row: 1;
    grid-column: 1;
    transition: all var(--transition-fast);
  }

  .project-item:hover .project-logo {
    border-color: var(--accent-purple);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  }

  .project-info {
    grid-row: 1;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .project-item .project-title {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
  }

  .project-item .project-link {
    color: var(--accent-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
  }

  .project-item .project-description {
    grid-row: 2;
    grid-column: 1 / -1;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
  }
}

.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(102, 126, 234, 0.08);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: var(--section-padding);
  background: var(--dark-secondary);
  text-align: center;
}

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark-bg);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--dark-secondary);
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-purple);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .image-wrapper {
    width: 300px;
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-list {
    grid-template-columns: 1fr;
  }
  
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .skill-card {
    padding: 20px 15px;
  }
  
  .skill-icon {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .skill-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .skill-card p {
    font-size: 13px;
  }
  
  .project-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding: 18px 18px 15px 18px;
    display: grid;
    grid-template-rows: auto auto;
    align-items: flex-start;
    min-height: auto;
  }
  
  .project-logo {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--dark-secondary);
    padding: 8px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    grid-row: 1;
    grid-column: 1;
  }
  
  .project-item:hover .project-logo {
    border-color: var(--accent-purple);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  }
  
  .project-item .project-info {
    gap: 6px;
    grid-row: 1;
    grid-column: 2;
  }
  
  .project-item .project-description {
    margin-bottom: 0;
  }
  
  .project-item .project-title {
    font-size: 20px;
  }
  
  .project-item .project-description {
    grid-row: 2;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 20px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px;
    transition: right var(--transition-fast);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero {
    padding: 100px 20px 40px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .page-title {
    font-size: 40px;
  }
  
  .image-wrapper {
    width: 250px;
    height: 250px;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .contact-btn {
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .contact-btn i {
    font-size: 20px;
  }
  
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .image-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .contact-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}