* {
    list-style: none;
    word-wrap: break-word;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    
    

}

html,
body {
    background-color:  #fff;
}

.container {
    
    padding-left: 15px;
    padding-right: 15px;

}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.hero-section {
    background-color: #5C8EFE;
    color: white;
    padding: 80px 20px;
}


.hero-section h1{
    font-family: "Nova Mono", monospace;
    color: #fff;
    font-size: 80px;

}

.hero-section h2{
    font-family: "Nova Mono", monospace;
    color: #fff;
    font-size: 60px;
}
.marketing h1{
    font-family: "Nova Mono", monospace;
    color:  #5C8EFE;
    font-size: 30px;

}
.marketing h2{
    font-family: "Century Gothic", sans-serif;
    color:  #5C8EFE;
    font-size: 26px;

}

p{
    font-family: "Century Gothic", sans-serif;
    color: #fff;
    font-style: italic;
    font-size: 21px;
}
.go-button {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  animation: pulse 4s infinite ease-in-out;
  transition: transform 0.4s ease;
}

.go-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.8s ease;
}

/* 放大縮小效果 */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}
/* 滑鼠靠近時，停止縮放，微放大 */
.go-button:hover {
  animation: none;
  transform: scale(1.05);
}

/* --- 波紋效果 --- */
.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}

/* 滑鼠靠近時觸發波紋動畫 */
.go-button:hover .ripple {
  animation: ripple-effect 1.5s ease-out infinite;
}

@keyframes ripple-effect {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media only screen and (max-width: 1024px) {
  
.hero-section {
    background-color: #5C8EFE;
    color: white;
    padding: 80px 20px;
}


.hero-section h1{
    font-family: "Nova Mono", monospace;
    color: #fff;
    font-size: 60px;

}

.hero-section h2{
    font-family: "Nova Mono", monospace;
    color: #fff;
    font-size: 48px;
}
.marketing h1{
    font-family: "Nova Mono", monospace;
    color:  #5C8EFE;
    font-size: 24px;

}
.marketing h2{
    font-family: "Century Gothic", sans-serif;
    color:  #5C8EFE;
    font-size: 20px;

}

p{
    font-family: "Century Gothic", sans-serif;
    color: #fff;
    font-style: italic;
    font-size: 16px;
}
  
}
@media only screen and (max-width: 320px) {
  
.hero-section {
    background-color: #5C8EFE;
    color: white;
    padding: 80px 20px;
}


.hero-section h1{
    font-family: "Nova Mono", monospace;
    color: #fff;
    font-size: 40px;

}

.hero-section h2{
    font-family: "Nova Mono", monospace;
    color: #fff;
    font-size: 28px;
}
.marketing h1{
    font-family: "Nova Mono", monospace;
    color:  #5C8EFE;
    font-size: 15px;

}
.marketing h2{
    font-family: "Century Gothic", sans-serif;
    color:  #5C8EFE;
    font-size: 12px;

}

p{
    font-family: "Century Gothic", sans-serif;
    color: #fff;
    font-style: italic;
    font-size: 12px;
}
  
}