* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f8f8;
  color: #333;
  overflow-x: hidden;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.logo-img {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 220px;
  height: auto;
}

.loading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.loading-text {
  font-size: 24px;
  font-weight: 600;
  color: #ff3b30;
  margin-bottom: 20px;
  text-align: center;
}

#animation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cultural-elements {
  position: absolute;
  bottom: 120px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 2;
}

.element {
  text-align: center;
  transform: translateY(0);
  animation: float 3s ease-in-out infinite;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.element:hover {
  opacity: 1;
}

.element:nth-child(2) {
  animation-delay: 0.5s;
}

.element:nth-child(3) {
  animation-delay: 1s;
}

.element-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ff3b30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.element-name {
  font-weight: 600;
  color: #0000ff;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.message {
  position: absolute;
  bottom: 90px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #666;
  z-index: 3;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #0000ff;
  color: white;
  text-align: center;
  padding: 15px 0;
  z-index: 10;
}

.copyright {
  font-size: 14px;
}