/* --- HERO BANNER --- */

.hero-banner {

  position: relative;

  width: 100%;

  height: 65dvh;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

}



.hero-banner::after {

  content: '';

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  pointer-events: none;

  background-image: linear-gradient(to top, #161616 10%, transparent);

}



.image-wrapper {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 0;

}



.banner-img {

  width: 100%;

  height: 100%;

  object-fit: cover;


}



.overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.4);

  z-index: 1;

}



.main-content {

  position: relative;

  z-index: 2;

  text-align: center;

  color: white;

  max-width: 800px;

  padding: 0 1rem;

}





.big-title {

  font-size: 5.5rem;

  font-weight: 900;

  text-shadow: 2px 2px 8px rgba(250, 243, 243, 0.3);

  transform: scale(1.05) skewX(-3deg);

  margin-bottom: 1rem;

}



.big-title:hover {

  text-shadow: 4px 4px 12px rgba(231, 227, 227, 0.3);

  cursor: default;

}



.second-paragraph {

  font-size: 1rem;

  color: rgba(255, 255, 255, 0.795);

  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);

  font-weight: 700;

  margin-top: 0;

}











@media screen and (max-width: 450px) {



  .big-title {

    font-size: 3rem; 

    transform: scale(1) skewX(-2deg); 

  }





}



































/*  Features Section */



.features {

  padding: 6rem 2rem;

  color: #e0e0e0;

  font-family: 'Inter', 'Roboto', sans-serif;

}



.features-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

  gap: 3rem;

  max-width: 1400px; 

  margin: 0 auto;

}



.feature-card {

  background: #222;

  border-radius: 1.2rem;

  padding: 3rem 2.5rem 2.5rem;

  border: 2px solid transparent;

  box-shadow:

    0 4px 6px rgba(0,0,0,0.6),

    inset 0 0 0 2px #2c6ba5;

  transition:

    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),

    box-shadow 0.35s ease,

    border-color 0.35s ease;

  text-align: center;

}



.feature-card:hover {

  transform: translateY(-12px);

  border-color: #3ea0ff;

  box-shadow:

    0 16px 30px rgba(62,160,255,0.45),

    inset 0 0 0 2px #3ea0ff;

}



.card-content h3 {

  font-size: 1.85rem;

  margin: 1.2rem 0 1.6rem;

  color: #ffffff;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.05em;

}



.card-content p {

  font-size: 1.1rem;

  line-height: 1.65;

  margin-bottom: 2.4rem;

  color: #d0d8e8dd;

  font-weight: 400;

}



.icon-wrapper {

  width: 80px;

  height: 80px;

  margin: 0 auto 1rem;

  border-radius: 12PX;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: background-color 0.3s ease;

}



.icon-wrapper i {

  font-size: 3.5rem;

  color: #ffffff;

  transition: color 0.3s ease;

}



.feature-card:hover .icon-wrapper {

  background-color: rgba(229, 230, 231, 0.15);

}



.feature-card:hover .icon-wrapper i {

  color: #ffffffc9;

}





.icon-wrapper.discord {

  background-color: #5865F2;

}

.icon-wrapper.discord i {

  color: #f0f0f0;

}

.feature-card:hover .icon-wrapper.discord {

  background-color: #4752c4;

}

.feature-card:hover .icon-wrapper.discord i {

  color: #ffffff;

}



.icon-wrapper.youtube {

  background-color: #FF0000;

}

.icon-wrapper.youtube i {

  color: #fff;

}

.feature-card:hover .icon-wrapper.youtube {

  background-color: #cc0000;

}



.icon-wrapper.github {

  background-color: #333;

}

.icon-wrapper.github i {

  color: #fff;

}

.feature-card:hover .icon-wrapper.github {

  background-color: #555;

}



.icon-wrapper.tiktok {

  background-color: #000000;

}

.icon-wrapper.tiktok i {

  color: #ffffff;

}

.feature-card:hover .icon-wrapper.tiktok {

  background-color: #1a1a1a;

}

.feature-card:hover .icon-wrapper.tiktok i {

  color: #ffffffc9;

}





.icon-wrapper.twitter {

  background-color: #000000;

}

.icon-wrapper.twitter img {

  filter: brightness(100%);

  transition: filter 0.3s ease;

}

.feature-card:hover .icon-wrapper.twitter {

  background-color: #1a1a1a;

}

.feature-card:hover .icon-wrapper.twitter img {

  filter: brightness(85%);

}



.btn {

  display: inline-block;

  padding: 0.75rem 2.2rem;

  font-size: 1rem;

  font-weight: 600;

  border-radius: 12px;

  text-decoration: none;

  cursor: pointer;

  transition: background-color 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 0 0 0 transparent;

  border: none;

  user-select: none;

  color: #fff;

  background-color: #2c6ba5;

}



.btn-primary:hover {

  background-color: #3ea0ff;

  box-shadow: 0 6px 12px rgba(62,160,255,0.5);

}



.btn-primary:focus-visible {

  outline: 3px solid #79bfff;

  outline-offset: 3px;

}







@media (max-width: 640px) {

  .features {

    padding: 4rem 1rem;

  }

  .card-content h3 {

    font-size: 1.5rem;

  }

  .btn {

    width: 100%;

    padding: 0.9rem 0;

  }

}







/* end Features Section */

























