a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(90deg,#0c2436, #0d4b7a);
  text-align: center;
  color: white;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.logo {
  width: 60px;
  height: 60px;
}

.logo:hover {
  transform: scale(1.15);
}

.brand {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  color: #f6751e;
}

.brand:hover {
  color: #ffc233;
}

.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ccc;
  margin-top: -30px;
  margin-bottom: 25px;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.new {
  font-size: 1.5rem;
  color: #ffc233;
  font-weight: bold;
  margin: 10px 0;
}

.desc {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.image-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  overflow: hidden;
}

.deckbox {
  width: 100%;
  transition: transform 0.6s ease;
  display: block;
}

.deckbox:hover {
  transform: scale(1.25);
}

.cta-button {
  display: inline-block;
  background-color: #fcbf3d;
  color: #0c2436;
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 15px;
  transition: transform 0.6s ease;
}

.cta-button:hover {
  background-color: #f6751e;
  transform: scale(1.05);
}

.social-icons {
  display: flex;
  justify-content: center;
  margin: 20px;
  gap: 80px;
  fill="white";
}

.social-icons img {
  width: 40px;
  height: 40px;
  color: white;
  fill="white";
}

.social-icons img:hover {
  transform: scale(1.15);
}

.carousel-container {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  margin: 0 auto 20px auto;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 20px;
}
