@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* HEADER */
header {
background: linear-gradient(135deg, #C57A3E 0%, #A12EFF 100%);
  padding: 60px 20px;
  text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.8);
}

.logo {
  width: 150px;
  display: block;
  margin: 0 auto 20px auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* TITLES */
h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* LAYOUT */
section {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* IMAGES */
img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* BUY STEPS */
.buy-step {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin: 20px auto;
  border-radius: 20px;
  border: 2px solid;
  border-image: linear-gradient(90deg, #00ff00, #ff00ff) 1;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transition: transform 0.3s;
}

.buy-step:hover {
  transform: scale(1.03);
}

.buy-step h3 {
  color: #00ff00;
  margin-bottom: 5px;
}

.buy-step a {
  color: #ff00ff;
  font-weight: 600;
  text-decoration: none;
}

.buy-step a:hover {
  text-decoration: underline;
}

/* CONTRACT BOX */
.ca-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
}

.ca-box span {
  font-size: 1rem;
  margin-right: 10px;
  word-break: break-all;
}

.ca-box button {
  background: #00ff00;
  border: none;
  border-radius: 7px;
  padding: 10px 15px;
  cursor: pointer;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.ca-box button:hover {
  background: #ff00ff;
  color: #fff;
}

/* BUTTONS */
.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff00ff, #00ff00);
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: scale(1.1);
}

/* IFRAME */
iframe {
  width: 90%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* SOCIALS */
.social-links a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  margin: 10px;
  background: #ff00ff;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.social-links a:hover {
  background: #00ff00;
}