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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
    'Helvetica Neue', sans-serif;
  background-color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.aqua-nav {
  background: linear-gradient(90deg, #3c94fd 0%, #0a6cff 100%);
  padding: 1px;
  height: 28px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.nav-button {
  background: none;
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-button:active {
  background: rgba(0, 0, 0, 0.1);
}

.menu-container {
  position: relative;
}

.menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 5px 0;
  display: none;
  flex-direction: column;
  min-width: 150px;
  z-index: 1001;
}

.menu-container:hover .menu {
  display: flex;
}

.menu-item {
  background: none;
  border: none;
  color: #333;
  padding: 8px 15px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 14px;
  width: 100%;
}

.menu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-separator {
  border: none;
  border-top: 1px solid #ddd;
  margin: 5px 0;
}


.main-content {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  flex-grow: 1;
}


.aqua-button {
  background: linear-gradient(90deg, #3c94fd 0%, #0a6cff 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.aqua-button:hover {
  opacity: 0.9;
}

.aqua-text {
  color: #1d1d1f;
  font-size: 14px;
}

.progress-bar {
  height: 16px;
  background: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  animation: progress 3s linear infinite;
}

@keyframes progress {
  0% {
    background: linear-gradient(90deg, #e0e0e0 0%, #3c94fd 100%);
  }

  100% {
    background: linear-gradient(90deg, #3c94fd 0%, #e0e0e0 100%);
  }
}

.glass-effect {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
}

.pulsing-element {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}


.dock {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  z-index: 1000;
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.1);
}