body {
background-color: #181818;
font-family: 'Lato', sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #151515;
    padding: 10px 15px;
    color: white;
    border-radius: 15px;
}


.navbar:hover {

    transform: scale(1.003);
}


.logo img {
    height: 80px; 
    width: auto;
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 50px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #B0B0B0; 
}


.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(0, 255, 0);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}


.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    background-color: #5865f2;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-discord .icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, fill 0.3s ease;
    fill: white; 
  }
  
  .btn-discord .text {
    position: relative;
    font-family: 'Poppins', sans-serif;
    z-index: 10;
  }
  
  
  .btn-discord:hover {
    color: #5865f2;
    transform: scale(1.05);
  }

  .btn-discord:hover .text {
    opacity: 0%;
  }
  
  .btn-discord:hover .icon {
    transform: translateX(135px); 
    fill: #ffffff; 
  }
  
  .btn-discord:hover::before {
    height: 100%;
    top: 0;
  }
  
  .btn-discord:hover::after {
    width: 100%;
    left: 0;
  }
  
  .btn-discord:active {
    transform: scale(1);
  }
  
  .btn-discord:focus {
    outline: none;
  }
  


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&family=Open+Sans:wght@300;400;600&display=swap');

#start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px;
    background-color: #181818;
    color: white;
    margin-top: 100px; 
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.text {
    flex: 1;
    padding-right: 50px;
}

.text h1 {
    font-size: 60px;
    font-weight: 600;
    color: #00ff00; 
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.typing-effect {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgb(170, 170, 170);
    margin-bottom: 20px;
    overflow: hidden;
    border-right: .15em solid #00ff00;
    white-space: nowrap;
    width: 0;
    animation: typing 4s steps(40) forwards, blink 0.75s step-end infinite;
}

#line1 {
    animation-delay: 0s;
}

#line2 {
    animation-delay: 2s; 
}

#line3 {
    animation-delay: 5s; 
}

@keyframes typing {
    100% {
        width: 100%;
    }
}

@keyframes blink {
    0% {
        border-color: transparent;
    }
}

.image {
    animation: float 3s ease-in-out infinite; 
}

.image img {
    max-width: 500px;
    width: 100%;
    object-fit: contain; 
}

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

.btn-join {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-color: #00ff00;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-join:hover {
    background-color: #32e832;
    transform: scale(1.05);
}

.btn-join:focus {
    outline: none;
}

.btn-join:active {
    transform: scale(1);
}

#offer {
    margin-top: 100px; 
}

.offer-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #00ff00; 
    margin-bottom: 50px; 
    font-family: 'Montserrat', sans-serif;
}

.offer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.offer-box {
    background-color: #202020;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

.offer-box:hover {
    transform: scale(1.05);
}

.offer-box h3 {
    font-size: 22px;
    margin-top: 10px;
    color: #00ff00;
    transition: color 0.3s ease, text-decoration 0.3s ease; 
}


.offer-box p {
    margin-top: 10px;
    color: #bbb;
}


.offer {
    background-color: #181818;
    color: white;
    padding: 60px 0;
}

.offer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.offer-box {
    background-color: #202020;
    padding: 30px;
    border-radius: 20px; 
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    transition: transform 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

.offer-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-radius: 30px; 
}


.icon i {
    font-size: 60px;
    color: #00ff00; 
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.offer-box:hover .icon i {
    transform: scale(1.1); 
}


.offer-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-box p {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: rgb(170, 170, 170);
}

.offer-box:hover .icon img {
    transform: scale(1.1);
}

.portfolio {
    background-color: #181818;
    padding: 60px 0;
    color: white;
}

.portfolio-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #00ff00;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.portfolio-item {
    text-align: center;
    width: 45%;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px; 
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-name {
    font-size: 20px;
    font-weight: 600;
    color: #00ff00;
    margin-bottom: 10px;
}

.description {
    color: #bbb;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.portfolio-item:hover .discord-name {
    color: #32e832; 
}

.portfolio-item:hover .description {
    color: #ccc; 
}

@keyframes floating {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0);
    }
  }
  

.about-us-title {
  text-align: center; 
  font-size: 3rem; 
  font-weight: bold;
  color: #02fd24; 
  margin-bottom: 40px; 
  margin-top: 60px; 
}


.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background-color: #181818; 
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px; 
  margin-bottom: 100px; 
}

.about-us-image {
  position: relative;
  width: 35%;
}

.about-us-image .floating-image {
  width: 100%; 
  height: auto;
  animation: floating 2s ease-in-out infinite; 
  transition: transform 0.3s ease-in-out; 
}

.about-us-image .floating-image:hover {
  transform: scale(1.05); 
}

.about-us-content {
  width: 50%;
  padding-left: 40px;
}

.about-us p {
  font-size: 1.125rem; 
  color: #9e9e9e; 
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-us {
    flex-direction: column; 
    text-align: center;
  }

  .about-us-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-us-content {
    width: 100%;
    padding-left: 0;
  }
}
.footer {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 20px;
    color: #00ff00;
}

.highlight {
    color: var(--yellow);
    font-weight: bold;
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}