@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --accent1: #C79C0E;
  --accent2: #F9D402;
  --accent3: #9C59BD;
  --secondary-background: #3a0157;
  --main-background: #27023a;
  --text-light: #ffffff;
  --text-muted: #666666;
  --header-height: 70px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: rgb(31, 1, 44);
  position: relative;
  min-height: 100vh;
  color: var(--text-light);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/body-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  backdrop-filter: blur(10px);
  opacity: 0.6;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}


/* HEADER START */
.main-header {
  background: transparent;
  backdrop-filter: blur(8px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo img {
  height: 55px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 50px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav-icon {
  width: 30px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
  filter: brightness(0) invert(0);
}

.nav-link:hover {
  color: var(--main-background);
  background-color: var(--accent1);
  font-weight: bold;
}

.nav-link i {
  font-size: 0.7rem;
  transition: var(--transition);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-background);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  text-align: center;
}

.dropdown-content img {
  width: 130px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.dropdown-content a:hover img {
  transform: scale(1.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 15px;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  margin-left: auto;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
  
  .nav-link {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .nav-icon {
    width: 24px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    padding: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    flex-direction: column;
    background-color: var(--main-background);
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 20px 15px;
    gap: 8px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-links.active {
    left: 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    padding: 15px 20px;
    justify-content: flex-start;
    align-items: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 5px 0;
    transition: all 0.2s ease;
  }
  
  .nav-link:active {
    transform: scale(0.98);
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-link i {
    transition: transform 0.3s ease;
    margin-left: auto;
    padding-left: 10px;
  }

  .dropdown.active .nav-link i {
    transform: rotate(180deg);
  }

  .dropdown-content {
    position: static;
    transform: none;
    display: none;
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow: none;
    margin: 5px 0 5px 15px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
  }

  .dropdown.active .dropdown-content {
    display: block;
    max-height: 500px;
  }

  .dropdown-content a {
    padding: 12px 25px;
    display: flex;
    justify-content: center;
    transition: background-color 0.2s ease;
  }
  
  .dropdown-content a:active {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .dropdown-content img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    transition: transform 0.2s ease;
  }
  
  .dropdown-content a:active img {
    transform: scale(0.98);
  }
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HEADER END */

/* HERO START */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 100px 20px;
    box-sizing: border-box;
}

.hero-title {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-title h1 {
    z-index: 1;
    font-family: 'Audiowide', cursive;
    font-size: 12rem;
    background: linear-gradient(90deg, 
        var(--accent1), 
        var(--accent2), 
        var(--accent3),
        var(--accent1)
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
    text-shadow: 0 0 30px rgba(249, 212, 2, 0.3);
    line-height: 1.1;
    letter-spacing: 2px;
    animation: gradientMove 8s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-decoration {
    position: absolute;
    max-width: 200px;
    opacity: 1;
    transition: all 0.5s ease;
}

.hero-decoration.top-left {
    top: 35%;
    left: -5%;
}

.hero-decoration.top-right {
    top: 0%;
    right: 0%;
    transform: scaleX(-1);
}

.hero-decoration.bottom-left {
    height: 90px;
    top: -5%;
    left: 21%;
    z-index: -1;
}

.hero-decoration.bottom-right {
    height: 150px;
    bottom: 10%;
    right: 45%;
}

.hero-detail {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-top: 150px;
    padding: 0 10px;
}

.hero-detail p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-detail p span {
    color: var(--accent2);
    text-shadow: 0 0 10px var(--main-background);
    background-color: var(--accent3);
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent2), var(--accent1));
    color: var(--main-background);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 156, 14, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent1);
    border: 2px solid var(--accent1);
}

.btn-secondary:hover {
    background: rgba(199, 156, 14, 0.1);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-down-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.scroll-down-link:hover {
    color: var(--accent1);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin-bottom: 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: var(--accent1);
    border-radius: 3px;
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent1);
    font-weight: 500;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent1);
    border-bottom: 2px solid var(--accent1);
    transform: rotate(45deg);
    margin: -3px 0;
    animation: arrowDown 2s infinite;
    opacity: 0;
}

.arrow:nth-child(1) {
    animation-delay: 0s;
}

.arrow:nth-child(2) {
    animation-delay: 0.3s;
}

.arrow:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes arrowDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

@media screen and (max-width: 1200px) {
  .hero-title h1 {
    font-size: 9rem;
  }

  .hero-decoration {
    max-width: 150px;
  }

  .hero-decoration.bottom-left {
    width: 100px;
    height: auto;
    top: -4%;
    left: 20%;
  }
}

@media screen and (max-width: 900px) {
  .hero-title h1 {
    font-size: 6rem;
  }

  .hero-decoration {
    max-width: 120px;
  }

  .hero-decoration.bottom-left {
    width: 70px;
    height: auto;
    top: -4%;
    left: 20%;
  }
}

@media screen and (max-width: 629px) {
  .hero-title h1 {
    font-size: 3rem;
  }

  .hero-decoration {
    max-width: 80px;
  }

  .hero-decoration.bottom-left {
    width: 40px;
    height: auto;
    top: -4%;
    left: 20%;
  }

  .hero-decoration.bottom-right {
    width: 60px;
    height: auto;
    bottom: 10%;
    right: 45%;
  }
}

/* HERO END */

/* BONUSES START */
#bonuses {
    padding: 80px 20px;
    position: relative;
    background: transparent;
    backdrop-filter: blur(10px);
}

.bonus-title {
    text-align: center;
    margin-bottom: 50px;
}

.bonus-title h2 {
    font-family: 'Audiowide', cursive;
    color: var(--accent1);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(199, 156, 14, 0.2);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bonus-logo {
    width: 300px;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 156, 14, 0.1);
    border-radius: 10px;
    padding: 15px;
    border: 2px solid var(--accent1);
}

.bonus-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bonus-code {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px dashed var(--accent1);
}

.bonus-code span {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.bonus-code .code {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    color: var(--accent2);
    letter-spacing: 2px;
    font-weight: bold;
}

.bonus-features {
    text-align: left;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.bonus-features li {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.bonus-features i {
    color: var(--accent1);
    margin-right: 10px;
    font-size: 1.1rem;
}

.bonus-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

/* Coming Soon Card */
.bonus-card.coming-soon {
    position: relative;
    opacity: 0.8;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(39, 2, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card.coming-soon:hover .coming-soon-overlay {
    opacity: 1;
}

.coming-soon-overlay span {
    background: var(--accent1);
    color: var(--main-background);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.bonus-card.coming-soon h3 {
    color: var(--accent2);
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.bonus-card.coming-soon p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .bonus-card {
        padding: 25px 20px;
    }
    
    .bonus-title h2 {
        font-size: 2rem;
    }

    .bonus-logo {
      width: auto;
    }
}

