body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 90vw;
  width: 100%;
}

.logo {
  margin-bottom: 2rem;
}

.menu {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 600px;
}

.social-links {
  margin: 2rem 0 4rem 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
}

.social-links::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a6896e;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #a6896e;
  margin-left: 1rem;
  line-height: 1;
}

.menu-button:hover {
  background: #000;
  color: #a6896e;
  border-color: #a6896e;
  transform: translateY(-2px);
}

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

/* Cat Styles */
.cat {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.orange-cat {
  right: 20px;
}

.tuxedo-cat {
  left: 20px;
}

.cat-body {
  position: relative;
  width: 60px;
  height: 40px;
  background: #ff8c42;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.cat-head {
  position: absolute;
  top: -15px;
  left: -5px;
  width: 35px;
  height: 30px;
  background: #ff8c42;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.cat-ears {
  position: relative;
  top: -5px;
}

.ear {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #ff8c42;
  transition: all 0.3s ease;
}

.left-ear {
  left: 2px;
  transform: rotate(-15deg);
}

.right-ear {
  right: 2px;
  transform: rotate(15deg);
}

.cat-face {
  position: relative;
  top: 8px;
}

.cat-eyes {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  margin-bottom: 5px;
}

.eye {
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cat-nose {
  width: 4px;
  height: 2px;
  background: #ff6b9d;
  border-radius: 1px;
  margin: 0 auto 3px;
}

.cat-mouth {
  width: 8px;
  height: 2px;
  border-bottom: 1px solid #000;
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.cat-tail {
  position: absolute;
  right: -15px;
  top: 15px;
  width: 20px;
  height: 4px;
  background: #ff8c42;
  border-radius: 2px;
  transform: rotate(-15deg);
  transition: all 0.3s ease;
}

/* Sleeping state */
.cat:hover .cat-body {
  transform: scale(1.1);
}

.cat:hover .cat-head {
  transform: translateY(-2px);
}

.cat:hover .ear {
  transform: rotate(0deg);
}

.cat:hover .eye {
  height: 8px;
  border-radius: 50% 50% 0 0;
}

.cat:hover .cat-mouth {
  height: 4px;
  border-radius: 0 0 8px 8px;
  border-bottom: 2px solid #000;
}

.cat:hover .cat-tail {
  transform: rotate(15deg);
  animation: tail-wag 0.5s ease-in-out infinite alternate;
}

@keyframes tail-wag {
  0% { transform: rotate(15deg); }
  100% { transform: rotate(25deg); }
}

/* Tuxedo cat specific styles */
.tuxedo-cat .cat-body {
  background: #2c2c2c;
  position: relative;
}

.tuxedo-cat .cat-body::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 25px;
  background: #fff;
  border-radius: 15px 15px 0 0;
  z-index: 1;
}

.tuxedo-cat .cat-head {
  background: #2c2c2c;
}

.tuxedo-cat .ear {
  border-bottom-color: #2c2c2c;
}

.tuxedo-cat .cat-tail {
  background: #2c2c2c;
}

.tuxedo-cat .cat-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 8px;
  background: #fff;
  border-radius: 4px 4px 0 0;
  z-index: 2;
}

/* Breathing animation for sleeping state */
.cat-body {
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cat {
    bottom: 15px;
    transform: scale(0.8);
  }
  
  .orange-cat {
    right: 15px;
  }
  
  .tuxedo-cat {
    left: 15px;
  }
  
  .cat:hover {
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .cat {
    bottom: 10px;
    transform: scale(0.7);
  }
  
  .orange-cat {
    right: 10px;
  }
  
  .tuxedo-cat {
    left: 10px;
  }
  
  .cat:hover {
    transform: scale(0.8);
  }
}

.contact-button {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
}

.contact-button:hover {
  background: #000;
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}