body {
  margin: 0;
  padding-top: 100px;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: #00ffee;
  text-shadow: 0 0 2px #00ffee;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.ring-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #00ffee 5%, #000 60%);
  box-shadow: 0 0 40px #00ffee;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.wizard-image {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

h1 {
  font-size: 2.5em;
  margin-top: 0;
  color: #00ffee;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #00ffee;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  padding: 6px 12px;
  border-radius: 12px;
}

nav a:hover {
  background-color: #00ffee;
  color: #000;
}

main {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 0 20px #00ffee;
}

main h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #00ffee;
  text-align: center;
}

main h3 {
  font-size: 1.3em;
  margin-bottom: 5px;
  color: #00ffee;
  text-align: center;
}

main p,
main li {
  color: #ccffff;
  line-height: 1.6;
  text-align: center;
}


main ul {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
  margin: 20px auto;
}

main ul li {
  display: list-item;
  text-align: center;
  margin-bottom: 6px;
}


main ul li::marker {
  color: #00ffee;
  text-shadow: 0 0 5px #00ffee;
}

footer {
  text-align: center;
  margin-top: 30px;
  color: #888;
  padding: 15px;
  font-size: 0.9em;
}


.pricing-banner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: #000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 15px #00ffee99;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
}

.gif-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px #00ffee55;
}

.pricing-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gif-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  color: #00ffee;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  z-index: 2;
}

.gif-overlay h3 {
  margin: 0;
  font-size: 1.3em;
}

.gif-overlay p {
  margin: 0;
  font-size: 0.9em;
  color: #ccffff;
}

.subscribe-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 20px;
  background-color: #00ffee;
  color: #000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #00ffee;
  transition: background 0.2s;
}

.subscribe-btn:hover {
  background-color: #00ccbb;
  box-shadow: 0 0 15px #00ffeeaa;
}


.floating-flip {
  position: fixed !important;
  top: 100px;
  width: 420px;
  height: auto;
  z-index: 99999 !important;
  animation: flip 7s linear infinite;
  opacity: 0.95;
  pointer-events: none;
  transform-style: preserve-3d;
  box-shadow: 0 0 35px #00ffee;
}

.floating-left {
  left: 20px;
}

.floating-right {
  right: 20px;
}

@keyframes flip {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

.epvp-banner {
  text-align: center;
  margin: 30px 0 10px;
}

.epvp-banner img {
  width: 200px; 
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffee88;
  transition: transform 0.3s, box-shadow 0.3s;
}

.epvp-banner img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ffeecc;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .pricing-banner {
    flex-direction: column;
    align-items: center;
  }

  .gif-container {
    max-width: 90% !important;
    height: auto !important;
    margin-bottom: 20px;
  }

  .subscribe-btn {
    width: 100%;
    max-width: 250px;
  }

  .floating-flip {
    width: 150px;
    top: 80px;
    opacity: 0.4;
  }

  main h2,
  main p {
    text-align: center;
  }

  .epvp-banner img {
    width: 100%;
    max-width: 250px;
  }

  .epvp-banner {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
}