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

body {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
}

.main-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  text-align: center;
  max-width: 1200px;
  width: 100%;
}

.hero-animations {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 2rem;
}

.loomo-character {
  position: absolute;
  top: 0;
  animation: float 3s ease-in-out infinite;
}

.left-character {
  left: 10%;
  animation-delay: 0s;
}

.right-character {
  right: 10%;
  animation-delay: 1s;
}

.loomo-character canvas {
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.loomo-character:hover canvas {
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: #2C2C2C;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.subtitle {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.center-character {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

.center-character canvas {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.center-character:hover canvas {
  transform: scale(1.1) rotate(5deg);
}

/* About Page */
.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

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

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #2C2C2C;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.about-character {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  animation: bounce 2s ease-in-out infinite;
}

.about-character canvas {
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about-character:hover canvas {
  transform: scale(1.05);
}

.about-description {
  text-align: left;
  margin-bottom: 3rem;
}

.about-description p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #2C2C2C;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.creator-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.creator-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
  text-align: center;
}

.creator-description {
  text-align: left;
}

.creator-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2C2C2C;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.creator-description p:last-child {
  margin-bottom: 0;
}

.email-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

.back-link {
  text-align: center;
  margin-top: 2rem;
}

.back-button {
  display: inline-block;
  color: #2C2C2C;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  border: 2px solid #2C2C2C;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #2C2C2C;
  color: white;
  transform: translateY(-2px);
}

.nav-link.active {
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
}

/* Burger Menu */
.burger-menu {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.burger-menu:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.burger-line {
  width: 28px;
  height: 3px;
  background: #2C2C2C;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.menu-open {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.menu-open .menu-content {
  transform: scale(1);
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #2C2C2C;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.menu-close:hover {
  color: #3498db;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-link {
  color: #2C2C2C;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.menu-link:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  transform: translateY(-2px);
}

.social-links {
  border-top: 1px solid rgba(44, 44, 44, 0.1);
  padding-top: 2rem;
}

.social-title {
  color: #2C2C2C;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #2C2C2C;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  transform: translateY(-2px);
}

.social-icon {
  font-size: 1.3rem;
}

.navigation {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.nav-link {
  color: #2C2C2C;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
  }
  
  .hero-animations {
    height: 150px;
    margin-bottom: 1rem;
  }
  
  .left-character {
    left: 5%;
  }
  
  .right-character {
    right: 5%;
  }
  
  .loomo-character canvas {
    width: 120px;
    height: 120px;
  }
  
  .center-character canvas {
    width: 100px;
    height: 130px;
  }
  
  .navigation {
    padding: 1rem;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .burger-menu {
    top: 1.5rem;
    left: 1.5rem;
    padding: 1.2rem;
  }
  
  .menu-content {
    padding: 2.5rem 1.5rem;
  }
  
  .menu-link {
    font-size: 1.2rem;
  }
  
  .about-page {
    padding: 1.5rem 1rem;
  }
  
  .page-title {
    margin-bottom: 2rem;
  }
  
  .about-character {
    margin-bottom: 2rem;
  }
  
  .about-character canvas {
    width: 120px;
    height: 160px;
  }
  
  .about-description {
    margin-bottom: 2rem;
  }
  
  .creator-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
  
  .creator-title {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-animations {
    height: 120px;
  }
  
  .loomo-character canvas {
    width: 80px;
    height: 80px;
  }
  
  .center-character canvas {
    width: 80px;
    height: 100px;
  }
  
  .navigation {
    gap: 1rem;
  }
  
  .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .burger-menu {
    top: 1rem;
    left: 1rem;
    padding: 1rem;
  }
  
  .burger-line {
    width: 24px;
  }
  
  .menu-content {
    padding: 2rem 1rem;
    width: 95%;
  }
  
  .menu-link {
    font-size: 1.1rem;
    padding: 0.8rem;
  }
  
  .social-link {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .about-page {
    padding: 1rem;
  }
  
  .about-character canvas {
    width: 100px;
    height: 130px;
  }
  
  .about-description p {
    font-size: 1.1rem;
  }
  
  .creator-section {
    margin-top: 2rem;
    padding-top: 1rem;
  }
  
  .creator-description p {
    font-size: 1.1rem;
  }
  
  .back-button {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
} 
