@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
@import url("https://fonts.googleapis.com/css?family=Raleway");

:root {
    --glow-color: hsl(186 100% 69%);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    margin-top: 30px;
    margin-bottom: 70px;
    text-align: center;
}

header h1 {
    margin: 0px;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a1 {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    text-decoration: underline;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}


.banner {
    height: auto;
    margin-top: 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

section {
    margin-bottom: 20px;
}

section h2 {
    margin-top: 10px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section p {
    margin-bottom: 30px;
}

section h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
}

section h4 {
  font-size: 1.2em;
  margin-top: 30px;
  margin-bottom: 10px;
}

section h5 {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 10px;
}

section h6 {
  text-decoration: underline;
  font-size:medium;
  margin-bottom: 30px;
}

section h1 {
  text-decoration: underline;
  font-size:medium;
  margin-bottom: 30px;
  text-align: center;
}

.buy {
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-bottom: 150px;
    text-align: center;
}

footer {
    color: white;
    background-color: #1f1f1f;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #333;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
.action {
  position: fixed;
  bottom: 50px;
  left: 50px;
  width: 50px;
  height: 50px;
  background: #000000;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}
.action span {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a13dea;
  font-size: 2em;
  transition: .3s ease-in-out;
}
.action.active span  {
  transform: rotate(135deg);
}

.action ul {
  position: absolute;
  bottom: 55px;
  background: #000000;
  min-width: 250px;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.action.active ul {
  bottom: 65px;
  opacity: 1;
  visibility: visible;
  transition: .3s;
}
.action ul li a {
    margin-left: 25px;
    color: white;
  list-style:none;
   text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 7px 0;
}

.action ul li a:hover {
  font-weight: 600;
}
.action ul li a:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.action ul li img {
  margin-right: 15px;
  opacity: .2;
  transform: scale(.7);
}
.action ul li a:hover img {  
  opacity: .8;
  transform: scale(1.0);
}

.action ul li b {
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    
}

.glowing-btn a {
    color: aqua;
    text-align: center;
}

.glowing-btn a:hover {
    color: rgb(0, 0, 0);
}

.glowing-btn {
    margin-bottom: 70px;
    margin-top: 20px;
    text-decoration: none;
    position: relative;
    color: var(--glow-color);
    cursor: pointer;
    padding: 0.35em 1em;
    border: 0.15em solid var(--glow-color);
    border-radius: 0.45em;
    background: none;
    perspective: 2em;
    font-family: "Raleway", sans-serif;
    font-size: 2em;
    font-weight: 900;
    letter-spacing: 1em;
    text-align: center;
  
    -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
      0px 0px 0.5em 0px var(--glow-color);
    -moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
      0px 0px 0.5em 0px var(--glow-color);
    box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
      0px 0px 0.5em 0px var(--glow-color);
    animation: border-flicker 2s linear infinite;
  }
  
  .glowing-txt {
    text-decoration: none;
    float: left;
    margin-right: -0.8em;
    -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
      0 0 0.45em var(--glow-color);
    -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
      0 0 0.45em var(--glow-color);
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
    animation: text-flicker 3s linear infinite;
  }
  
  .faulty-letter {
    text-decoration: none;
    opacity: 0.5;
    animation: faulty-flicker 2s linear infinite;
  }
  
  .glowing-btn::before {
    text-decoration: none;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    filter: blur(1em);
    transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
    background: var(--glow-color);
    pointer-events: none;
  }
  
  .glowing-btn::after {
    text-decoration: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    background-color: var(--glow-color);
    box-shadow: 0 0 2em 0.2em var(--glow-color);
    transition: opacity 100ms linear;
  }
  
  .glowing-btn:hover {
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
    animation: none;
    text-decoration: none;
  }
  
  .glowing-btn:hover .glowing-txt {
    text-decoration: none;
    animation: none;
  }
  
  .glowing-btn:hover .faulty-letter {
    text-decoration: none;
    animation: none;
    text-shadow: none;
    opacity: 1;
  }
  
  .glowing-btn:hover:before {
    text-decoration: none;
    filter: blur(1.5em);
    opacity: 1;
  }
  
  .glowing-btn:hover:after {
    text-decoration: none;
    opacity: 1;
  }
  
  @keyframes faulty-flicker {
    0% {
      opacity: 0.1;
    }
    2% {
      opacity: 0.1;
    }
    4% {
      opacity: 0.5;
    }
    19% {
      opacity: 0.5;
    }
    21% {
      opacity: 0.1;
    }
    23% {
      opacity: 1;
    }
    80% {
      opacity: 0.5;
    }
    83% {
      opacity: 0.4;
    }
  
    87% {
      opacity: 1;
    }
  }
  
  @keyframes text-flicker {
    0% {
      opacity: 0.1;
    }
  
    2% {
      opacity: 1;
    }
  
    8% {
      opacity: 0.1;
    }
  
    9% {
      opacity: 1;
    }
  
    12% {
      opacity: 0.1;
    }
    20% {
      opacity: 1;
    }
    25% {
      opacity: 0.3;
    }
    30% {
      opacity: 1;
    }
  
    70% {
      opacity: 0.7;
    }
    72% {
      opacity: 0.2;
    }
  
    77% {
      opacity: 0.9;
    }
    100% {
      opacity: 0.9;
    }
  }
  
  @keyframes border-flicker {
    0% {
      opacity: 0.1;
    }
    2% {
      opacity: 1;
    }
    4% {
      opacity: 0.1;
    }
  
    8% {
      opacity: 1;
    }
    70% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .glowing-btn{
      font-size: 1em;
    }
  }
  

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 1em;
    }

    
    .banner {
        height: 30%;
        background-color: #ffffff;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    

    main {
        padding: 10px;
    }

    section h2 {
        font-size: 1.5em;
    }

    footer p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    nav ul li a {
        font-size: 0.9em;
    }
    .banner {
        height: 30%;
        background-color: #ffffff;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    

    section h2 {
        font-size: 1.2em;
    }
}

