*{
    margin: 0;
    padding: 0;
}



 


nav{
    margin-left: auto;
    margin-right: 209px;
}

a{
    text-decoration: none;
    color: rgb(190, 10, 10);/*<------ pined*/
 }



 /* ---------button contact me--------- */
button {
  padding: 10px 30px;
  margin: 0px 30px;
  text-transform: uppercase;
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  color: #c4161680;
  text-shadow: none;
  background: transparent;
  cursor: pointer;
  box-shadow: transparent;
  border: 2px outset #a11f1f80;
  transition: 0.5s ease;
  user-select: none;
}

.btn:hover,:focus {
  color: #ffffff;
  background: #ff0000c0;
  border: 1px solid #ff0000c0;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
  box-shadow: 0 0 5px #ff0000c0, 0 0 20px #ff0000c0, 0 0 50px #ff0000c0,
    0 0 100px #ff0000c0;
}



 /* ---------header style--------- */
#header{
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}



/* ---------header list--------- */
#header .navbar-list {
    list-style: none;
    display: flex;
    gap: 150px;
    font-size: 19px;
    font-weight: bold;
}



/* ---------logo--------- */
#header .logo-link{
    width: 10%;
    
}

.logo-img{
    width: 163px;
    height: auto;
}

.bg-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 80%;
    object-fit: cover;
    z-index: -1;
}










/* ---------------------------  LOADER.HTML ---------------------------*/

.loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #00000098;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading svg polyline {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loading svg polyline#back {
  fill: none;
}

.loading svg polyline#front {
  fill: none;
  stroke: #FF0000;
  stroke-dasharray: 48, 144;
  stroke-dashoffset: 192;
  animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
  72.5% {
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
  }
}










/* ---------------------------  INDEX.HTML ---------------------------*/

/* ---------main style--------- */
main{
    width: 0;
    height: 0;
}

body {
    background: transparent !important;
}

#main{
    display: inline;
    align-items: center;
    position: relative;
    top: 839px;
    
}
/*carousel*/
.marquee {
  overflow: hidden;
  /* hide the scrolling overflow */
  width: 100%;
  background-color: #00000083;
  color: rgba(189, 45, 45, 0.781);
  -webkit-text-stroke: 2px red;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  
}
.marquee_header {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
  padding-bottom: 8px;
}

.marquee__group {
  display: flex;
}

.marquee__group span {
  margin: 0 1.5rem;
  white-space: nowrap;
  background: #000000;
  color: rgba(228, 18, 18, 0.76);
  padding: 10px 70px 10px 66px;
  border-radius: 6px;
  font-size: 1.2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}









/* ---------------------------  ABOUTME.HTML ---------------------------*/

/* ---------  background ---------*/
.radar-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #030303; /* Deep zinc black */

  /* Base square grid */
  background-image: linear-gradient(
      rgba(177, 1, 1, 0.1) 0.1em,
      transparent 0.1em
    ),
    linear-gradient(90deg, rgba(250, 4, 4, 0.1) 0.1em, transparent 0.1em);
  background-size: 3em 3em;
  overflow: hidden;
}

/* Concentric Radar Rings */
.radar-pattern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw; /* Ensures rings cover the screen even if rotated */
  height: 150vh;
  transform: translate(-50%, -50%);
  background: repeating-radial-gradient(
    circle,
    transparent 0,
    transparent 2.9em,
    rgba(252, 1, 1, 0.2) 3em
  );
  z-index: 1;
}

/* The Sweeping Radar Beam */
.radar-pattern::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40em;
  height: 40em;
  margin-top: -20em;
  margin-left: -20em;
  border-radius: 50%;
  /* Conic gradient creates the sweeping beam light */
  background: conic-gradient(
    from 0deg,
    transparent 75%,
    rgba(255, 1, 1, 0.5) 100%
  );
  animation: radar-spin 4s linear infinite;
  z-index: 2;
}

/* Glowing Center Dot */
.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translate(-50%, -50%);
  background-color: #fa0a02;
  border-radius: 50%;
  z-index: 3;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Animations */
@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0.8em 0.2em rgba(252, 2, 2, 0.6);
  }
  50% {
    box-shadow: 0 0 2em 0.5em rgb(255, 2, 2);
  }
}
body {
    margin: 0;
    background: #080808;
}

.radar-pattern {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.radar-center {
    position: relative;
    z-index: 1;
}






/* ---------  cords ---------*/
#card1{
  background-color: #000000;
  border: 1px solid red;
  border-radius: 6px;
  position: relative;
  top: 150px;
  left: 30px;
  padding: 50px 225px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--- card1 ---*/
.hr1{
  border: none;
  border-top: 1px solid #ff000057;
}

.hed1{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.p1{
  width: 300px;
  font-size: 15px;
  color: #ff000086;
}

/*--- card2 ---*/
#card2{
  background-color: #000000;
  border: 1px solid red;
  border-radius: 6px;
  position: relative;
  top: -606px;
  left: 1441px;
  padding: 50px 215px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hed2{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.hr1{
  border: none;
  border-top: 1px solid #ff000057;
}

.p2{
  width: 318px;
  font-size: 15px;
  color: #ff000086;
}

/*--- card3 ---*/
#card3{
  background-color: #000000;
  border: 1px solid red;
  border-radius: 6px;
  position: relative;
  top: -712px;
  left: 755px;
  padding: 0px 191px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hed3{
  color: #ff0000b4;
  font-weight: 3000;
  margin: 0 0px 20px 0;
  align-items: center;
}

#card3, .sec{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/*instagram icon*/
.tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

.tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.profile {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #52382f;
}

.tooltip-container:hover .tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
  width: 55px;
}
.layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
.icon:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}
.layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 7px;
  transition: all 0.3s;
}

.layer span,
.text {
  color: #e6683c;
  border-color: #e6683c;
}

.icon:hover.layer span {
  box-shadow: -1px 1px 3px #e6683c;
}
.icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

.icon:hover .layer span:nth-child(1) {
  opacity: 0.2;
}
.icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.icon:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.instagramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.user {
  display: flex;
  gap: 10px;
}
.img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #e6683c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.name {
  font-size: 17px;
  font-weight: 700;
  color: #e6683c;
}
.details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.about {
  color: #ccc;
  padding-top: 5px;
}



/*discord icon*/
.tooltip-container2 {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

.tooltip2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow:
    inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3),
    -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.profile2 {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #5865f2;
}

.tooltip-container2:hover .tooltip2 {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon2 {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.layer2 {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
.icon2:hover .layer2 {
  transform: rotate(-35deg) skew(20deg);
}
.layer2 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s;
}

.layer2 span,
.text2 {
  color: #5865f2;
  border-color: #5865f2;
}

.icon2:hover.layer2 span {
  box-shadow: -1px 1px 3px #5865f2;
}
.icon2 .text2 {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition:
    bottom 0.3s ease,
    opacity 0.3s ease;
}
.icon2:hover .text2 {
  bottom: -35px;
  opacity: 1;
}

.icon2:hover .layer2 span:nth-child(1) {
  opacity: 0.2;
}
.icon2:hover .layer2 span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon2:hover .layer2 span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon2:hover .layer2 span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.icon2:hover .layer2 span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.layer2 span.fab2 {
  font-size: 30px;
  line-height: 64px;
  text-align: center;
  fill: #5865f2;
  background: #000;
}
.user2 {
  display: flex;
  gap: 10px;
}
.img2 {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #5865f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.name2 {
  font-size: 17px;
  font-weight: 700;
  color: #5865f2;
}
.details2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.about2 {
  color: #ccc;
  padding-top: 5px;
}



/*linkdin icon*/
.tooltip-container3 {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

.tooltip3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.profile3 {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid rgba(11, 63, 95, 1);
}

.tooltip-container3:hover .tooltip3 {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon3 {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.layer3 {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
.icon3:hover .layer3 {
  transform: rotate(-35deg) skew(20deg);
}
.layer3 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s;
}

.layer3 span,
.text3 {
  color: #1da1f2;
  border-color: #1da1f2;
}

.icon3:hover.layer3 span {
  box-shadow: -1px 1px 3px #1da1f2;
}
.icon3 .text3 {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.icon3:hover .text3 {
  bottom: -35px;
  opacity: 1;
}

.icon3:hover .layer3 span:nth-child(1) {
  opacity: 0.2;
}
.icon3:hover .layer3 span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon3:hover .layer3 span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon3:hover .layer3 span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.icon3:hover .layer3 span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.layer3 span.fab3 {
  font-size: 30px;
  line-height: 64px;
  text-align: center;
  fill: #1da1f2;
  background: #000;
}
.user3 {
  display: flex;
  gap: 10px;
}
.img3 {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #1da1f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.name3 {
  font-size: 17px;
  font-weight: 700;
  color: #1da1f2;
}
.details3 {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.about3 {
  color: #ccc;
  padding-top: 5px;
}









/* ---------------------------  GAME.HTML ---------------------------*/
.bcg {
    position: fixed;
    top: 0;
    left: 463px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}
.backg{
  background-color: #000000;
  position: relative;
  top: 85px;
  padding: 50px 10px;
  width: 909px;
  height: 808px;
  flex-direction: column;
}

.border{
  border: none;
  border-top: 1px solid #ff000057;
}

.head{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.p{
  width: 300px;
  font-size: 15px;
  color: #ff000086;
}









/* ---------------------------  MATERIAL.HTML ---------------------------*/
.bc-g{
  position: fixed;
    top: 0;
    left: 400px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

.backg1{
  background-color: #000000;
  position: relative;
  top: 85px;
  padding: 50px 10px;
  width: 800px;
  height: 808px;
  flex-direction: column;
}

.border1{
  border: none;
  border-top: 1px solid #ff000057;
}

.head1{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.p1{
  width: 300px;
  font-size: 15px;
  color: #ff000086;
}









/* ---------------------------  BESTAIRY.HTML ---------------------------*/
.bc-g1{
  position: fixed;
    top: 0;
    left: 400px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.backg2{
  background-color: #000000;
  position: relative;
  top: 85px;
  padding: 50px 10px;
  width: 800px;
  height: 808px;
  flex-direction: column;
}

.border2{
  border: none;
  border-top: 1px solid #ff000057;
}

.head2{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.p2{
  width: 300px;
  font-size: 15px;
  color: #ff000086;
}









/* ---------------------------  MODEL3D.HTML ---------------------------*/

.bc-g2{
  position: fixed;
    top: 0;
    left: 300px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

.backg3{
  background-color: #000000;
  position: relative;
  top: 85px;
  padding: 50px 10px;
  width: 800px;
  height: 808px;
  flex-direction: column;
}

.border3{
  border: none;
  border-top: 1px solid #ff000057;
}

.head3{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.p3{
  width: 300px;
  font-size: 15px;
  color: #ff000086;
}









/* ---------------------------  CHARACTER.HTML ---------------------------*/


.bc-g3{
  position: fixed;
    top: 86px;
    left: 536px;
    width: 100%;
    height: 1010px;
    object-fit: contain;
    z-index: 0;
  
}

.backg4{
  background-color: #000000;
  position: relative;
  top: 85px;
  padding: 50px 10px;
  width: 1055px;
  height: 808px;
  flex-direction: column;
  z-index: 2;
}

.border4{
  border: none;
  border-top: 1px solid #ff000057;
}

.head4{
  color: #ff0000b4;
  font-weight: 3000;
  text-align: center;
}

.p4{
  width: 300px;
  font-size: 15px;
  color: #ff000086;
}