:root {
  --primary-color: #ff69b4;
  /* Bright Hot Pink */
  --secondary-color: #ff1493;
  /* Deep Pink */
  --accent-color: #ffd700;
  /* Gold */
  --text-color: #2d2d2d;
  --bg-color: #fff5f8;
  --glass-bg: rgba(255, 105, 180, 0.1);
  --glass-border: rgba(255, 105, 180, 0.3);
  --gradient-start: #ff69b4;
  --gradient-end: #ff1493;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
}

/* Hero Section */
header {
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(255, 20, 147, 0.6)), url('hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: fadeInDown 1.5s ease-out;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.95;
  animation: fadeInUp 1.5s ease-out;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Profile Section */
.profile-section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.profile-text {
  flex: 1;
  min-width: 300px;
}

.profile-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 10px auto;
  border-radius: 2px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toy Collection Card */
.toy-card {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 40px;
}

.toy-card img {
  width: 400px;
  border-radius: 10px;
}

/* Game Containers */
.game-container {
  padding: 30px;
  margin-bottom: 30px;
}

.game-container h3 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
}

#car-viewer-container,
#racing-game-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
}

/* Service Card */
.service-card {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.service-content h3 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-content ul li {
  padding: 8px 0;
  font-size: 1.05rem;
}



@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .profile-section {
    flex-direction: column;
    text-align: center;
  }

  .toy-card {
    flex-direction: column;
  }

  .toy-card img {
    width: 100%;
  }
}