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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: linear-gradient(135deg, #3366AA 0%, #33A333 100%);
}

.app-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3366AA 0%, #33A333 100%);
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.background-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(51, 102, 170, 0.15) 0%, transparent 70%);
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation-delay: 5s;
  background: radial-gradient(circle, rgba(51, 163, 51, 0.15) 0%, transparent 70%);
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: -75px;
  animation-delay: 10s;
  background: radial-gradient(circle, rgba(51, 102, 170, 0.1) 0%, transparent 70%);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(51, 102, 170, 0.1);
  max-width: 700px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.cyglera-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  animation: logoFadeIn 1s ease-out;
}

.cyglera-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, #3366AA 0%, #33A333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.name-explanation {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(51, 102, 170, 0.08);
  border-left: 3px solid;
  border-image: linear-gradient(135deg, #3366AA, #33A333) 1;
  border-radius: 8px;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.explanation-text {
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.explanation-text strong {
  color: #333333;
  font-weight: 600;
}

.explanation-text strong:first-child {
  background: linear-gradient(135deg, #3366AA 0%, #33A333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-container {
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3366AA 0%, #33A333 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(51, 102, 170, 0.4), 0 0 20px rgba(51, 163, 51, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(51, 102, 170, 0.6), 0 0 30px rgba(51, 163, 51, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

.arrow-icon {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-button:hover .arrow-icon {
  transform: translateX(5px);
}

.link-text {
  font-size: 1rem;
  color: #666666;
}

.link {
  color: #3366AA;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3366AA, #33A333);
  transition: width 0.3s ease;
}

.link:hover {
  color: #33A333;
}

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

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .content-wrapper {
    padding: 40px 30px;
  }
  
  .name-explanation {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .explanation-text {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .cyglera-logo {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.75rem;
  }
  
  .content-wrapper {
    padding: 30px 20px;
  }
  
  .name-explanation {
    padding: 16px;
    margin-bottom: 25px;
  }
  
  .explanation-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .cyglera-logo {
    max-width: 250px;
  }
}


/*# sourceMappingURL=styles.fbb57f588a4118574f4f.css.map*/