body {
    font-family: "Lato", sans-serif;
    transition: background-color .5s;
    margin: 0;
    overflow-wrap: break-word;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    background-image: url('header-naga.jpg');
    padding: 10px 20px;
    color: white;
}

.nav-buttonopen {
    font-size: 1.5em;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.sangaldi {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    margin-left: 20px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: linear-gradient(30deg, black, azure, #E0FFFF, skyblue, #B0E0E6, white);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #FA8072;
}

.sidenav .nav-buttonclose {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#halaman {
    transition: margin-left .5s;
    padding: 0;
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    color: white;
    text-align: center;
}

.parallax .konten {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    background-color: #222;
    color: white;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-block {
    width: 30%;
    margin-bottom: 20px;
}

.footer-block h2, .footer-block h3 {
    margin-top: 0;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block a {
    color: white;
    text-decoration: none;
}

.tombol-join {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px #999;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tombol-join::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
}

.tombol-join:hover::after {
    width: 0;
    height: 0;
    opacity: 1;
}

.tombol-join:hover {
    box-shadow: 0 2px #666;
    transform: translateY(-2px);
}

.tombol-join:active {
    box-shadow: 0 2px #666;
    transform: translateY(2px);
}

@media screen and (max-width: 768px) {
    .footer-block {
        width: 100%;
    }
}

#onlineIndicator {
    position: fixed;
    right: 10px;
    height: 24px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #00ffff;
    padding: 5px;
    z-index: 1000;
}


.spoiler-button {
    width: 40px;
    background-color: #e6e6e6;
    color: #000;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    opacity: 0.01;
    position: absolute;
  }

  .background {
    background-image: url('background_image.jpg'); /* Ganti 'background_image.jpg' dengan URL atau path gambar latar belakang yang diinginkan */
    background-size: cover;
    background-position: left;
    height: 100vh;
  }

  .randomovie {
    position: fixed;
    left: -300px; /* Sembunyikan PopUp di luar layar */
    top: 35%;
    transform: translateY(-50%);
    padding: 20px;
    background-image: url('https://media.istockphoto.com/id/1256353062/video/defocused-particles-in-slow-motion-white-gray-silver-colored-bright-abstract-background.jpg?s=640x640&k=20&c=MrfbF3dH6VMW3N3Px9WtqRtp-p2ygB8gl9Bqh0AfvLg=');
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.5s ease;
    z-index: 999;
  }

  .close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    cursor: pointer;
    color: red;
    font-size: 30px;
  }

  /* Tombol untuk membuka PopUp */
  .open-btn {
    position: fixed;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    background-color: #007bff; /* Warna latar belakang tombol */
    color: #fff; /* Warna teks tombol */
    border: none;
    padding: 10px 15px;
    border-radius: 0 10px 10px 0; /* Membuat sudut tombol lebih bulat di sisi kanan */
    cursor: pointer;
    z-index: 999; /* Pastikan tombol selalu di atas elemen lain */
  }
  
      .custom-popup {
        display: none;
        font-family: outfit;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: pink;
        padding: 10px 20px;
        border: 1px solid #ced4da;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 9999; /* Atur nilai z-index agar muncul di atas elemen lain */
       
    }
    .close {
        position: absolute;
        top: 5px;
        right: 10px;
        cursor: pointer;
        font-size: 20px;
    }
    
  .overlay-container {
      position: relative;
      display: flex;
      justify-content: center;
      width: 300px; /* Atur lebar sesuai kebutuhan */
    }

    .overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0);
      color: rgba(128, 128, 128, 0);
      font-size: 24px;
      padding: 10px;
    }

    .background-image {
      width: 100%;
      height: auto;
      display: block;
    }

#loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #fff;
}

#loading-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    animation: grow 2s ease-out forwards;
}

@keyframes grow {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

img {
    border-radius: 6%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #41f9ff;
}

nav ul li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}

nav ul li.active:hover::after {
    width: 100%;
}

.mySlides {display: none}
img {vertical-align: middle;}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.text {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
}

.prev {
    left: 0;
    margin-left: 10px;
}

.next {
    right: 0;
    margin-right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .text {font-size: 11px}
}


#bukaToast {
    z-index: 999;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: conic-gradient(at 0% 30%, rgb(1,2,4) 10%, rgb(255, 238, 1) 20%, rgb(0, 247, 255)30%, #ff0000 50%);
    color: transparent;
    padding: 5px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.6s;
    clip-path: polygon(0 80%, 100% 100%, 100% 0%, 0 20%, 0 100%);
}

#bukaToast:hover {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 100px 10px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: initial; 
    background: repeating-conic-gradient(
      from 0deg at 80% 50%,
      #5691f580 0% 8.25%,
      #b338ff80 8.25% 16.5%,
      #f8305880 16.5% 25%
    ),
    repeating-conic-gradient(
      from 15deg at 50% 50%,
      #e856f580 0% 8.25%,
      #ff384c80 8.25% 16.5%,
      #e7f83080 16.5% 25%
    ),
    repeating-conic-gradient(
      from 0deg at 20% 50%,
      #f58356ff 0% 8.25%,
      #caff38ff 8.25% 16.5%,
      #30f88aff 16.5% 25%
    );
    color: whitesmoke;
    clip-path: polygon(0 80%, 100% 100%, 100% 0%, 0 20%, 0 100%);
}

.infopenting {
    z-index: 999;
    visibility: hidden;
    min-width: 250px;
    margin-bottom: 16px;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgb(255 127 0 / 25%) 50px,
      rgb(255 127 0 / 25%) 56px,
      transparent 56px,
      transparent 63px,
      rgb(255 127 0 / 25%) 63px,
      rgb(255 127 0 / 25%) 69px,
      transparent 69px,
      transparent 116px,
      rgb(255 206 0 / 25%) 116px,
      rgb(255 206 0 / 25%) 166px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgb(255 127 0 / 25%) 50px,
      rgb(255 127 0 / 25%) 56px,
      transparent 56px,
      transparent 63px,
      rgb(255 127 0 / 25%) 63px,
      rgb(255 127 0 / 25%) 69px,
      transparent 69px,
      transparent 116px,
      rgb(255 206 0 / 25%) 116px,
      rgb(255 206 0 / 25%) 166px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgb(143 77 63 / 25%) 5px,
      rgb(143 77 63 / 25%) 10px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 5px,
      rgb(143 77 63 / 25%) 5px,
      rgb(143 77 63 / 25%) 10px
    );

  background: repeating-linear-gradient(
      90deg,
      transparent 0 50px,
      rgb(255 127 0 / 25%) 50px 56px,
      transparent 56px 63px,
      rgb(255 127 0 / 25%) 63px 69px,
      transparent 69px 116px,
      rgb(255 206 0 / 25%) 116px 166px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 50px,
      rgb(255 127 0 / 25%) 50px 56px,
      transparent 56px 63px,
      rgb(255 127 0 / 25%) 63px 69px,
      transparent 69px 116px,
      rgb(255 206 0 / 25%) 116px 166px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 5px,
      rgb(143 77 63 / 25%) 5px 10px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 5px,
      rgb(143 77 63 / 25%) 5px 10px
    );
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: relative;
    right: -30px;
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
}

.infopenting a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.infopenting.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-30px);
}

.tutup-info {
    z-index: 999;
    position: absolute;
    top: 2px;
    left: 2px;
    background: transparent;
    border: solid;
    border-color: #321;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.tutup-info:hover {
    border-color: red;
}

#iniinfopenting {
    z-index: 999;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column-reverse;
}

.crazykiller123 {
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.crazykiller123 button {
    color: #fff;
    background: #111;
    border: none;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.crazykiller123 button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.crazykiller123 button:active {
    color: #000;
}

.crazykiller123 button:active:after {
    background: transparent;
}

.crazykiller123 button:hover:before {
    opacity: 1;
}

.crazykiller123 button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


#avatar {
    z-index: 999;
    vertical-align: middle;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }

  .lp {
    position: relative; 
    width: 100%;
    height: calc(100vh - 60px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.lp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.lp h1, .lp p, .tombol-scroll {
    position: relative;;
    z-index: 2;
}

.lp h1 {
    font-size: 3em;
    margin: 0;
    opacity: 0;
    animation: textEffect 3s forwards;
}
.lp p {
    font-size: 1.5em;
    margin: 10px 0 0;
    opacity: 0;
    animation: textEffect 3s forwards 0.5s;
}
.lp-img {
    background-image: url('https://telegra.ph/file/b70925c25281f5fee8cd9.png'); 
    animation-delay: 0.5s;
}
.tombol-scroll {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonSlideIn 1s forwards 1s;
}
.tombol-scroll:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes textEffect {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(90deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
    }
}

@keyframes buttonSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: "Lato", sans-serif;
    transition: background-color .5s;
    margin: 0;
    overflow-wrap: break-word;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

header {
    display: flex;
    align-items: center;
    background-image: url('https://aldisetiadiputra317.wordpress.com/wp-content/uploads/2024/07/fb9950fa-9fda-4396-8317-aef39d3dd5de.jpg');
    padding: 10px 20px;
    color: white;
}

.nav-buttonopen {
    font-size: 1.5em;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.sangaldi {
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    margin-left: 20px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: linear-gradient(30deg, black, azure, #E0FFFF, skyblue, #B0E0E6, white);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #FA8072;
}

.sidenav .nav-buttonclose {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#halaman {
    transition: margin-left .5s;
    padding: 0;
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    color: white;
    text-align: center;
}

.parallax .konten {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    background-color: #222;
    color: white;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-block {
    width: 30%;
    margin-bottom: 20px;
}

.footer-block h2, .footer-block h3 {
    margin-top: 0;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block a {
    color: white;
    text-decoration: none;
}

.tombol-join {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px #999;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tombol-join::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
}

.tombol-join:hover::after {
    width: 0;
    height: 0;
    opacity: 1;
}

.tombol-join:hover {
    box-shadow: 0 2px #666;
    transform: translateY(-2px);
}

.tombol-join:active {
    box-shadow: 0 2px #666;
    transform: translateY(2px);
}

@media screen and (max-width: 768px) {
    .footer-block {
        width: 100%;
    }
}

#onlineIndicator {
    position: fixed;
    right: 10px;
    height: 24px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #00ffff;
    padding: 5px;
    z-index: 1000;
}


.spoiler-button {
    width: 40px;
    background-color: #e6e6e6;
    color: #000;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    opacity: 0.01;
    position: absolute;
  }

  .background {
    background-image: url('background_image.jpg'); /* Ganti 'background_image.jpg' dengan URL atau path gambar latar belakang yang diinginkan */
    background-size: cover;
    background-position: left;
    height: 100vh;
  }

  .randomovie {
    position: fixed;
    left: -300px; /* Sembunyikan PopUp di luar layar */
    top: 35%;
    transform: translateY(-50%);
    padding: 20px;
    background-image: url('https://media.istockphoto.com/id/1256353062/video/defocused-particles-in-slow-motion-white-gray-silver-colored-bright-abstract-background.jpg?s=640x640&k=20&c=MrfbF3dH6VMW3N3Px9WtqRtp-p2ygB8gl9Bqh0AfvLg=');
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.5s ease;
    z-index: 999;
  }

  .close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    cursor: pointer;
    color: red;
    font-size: 30px;
  }

  /* Tombol untuk membuka PopUp */
  .open-btn {
    position: fixed;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    background-color: #007bff; /* Warna latar belakang tombol */
    color: #fff; /* Warna teks tombol */
    border: none;
    padding: 10px 15px;
    border-radius: 0 10px 10px 0; /* Membuat sudut tombol lebih bulat di sisi kanan */
    cursor: pointer;
    z-index: 999; /* Pastikan tombol selalu di atas elemen lain */
  }
  
      .custom-popup {
        display: none;
        font-family: outfit;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: pink;
        padding: 10px 20px;
        border: 1px solid #ced4da;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 9999; /* Atur nilai z-index agar muncul di atas elemen lain */
       
    }
    .close {
        position: absolute;
        top: 5px;
        right: 10px;
        cursor: pointer;
        font-size: 20px;
    }
    
  .overlay-container {
      position: relative;
      display: flex;
      justify-content: center;
      width: 300px; /* Atur lebar sesuai kebutuhan */
    }

    .overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0);
      color: rgba(128, 128, 128, 0);
      font-size: 24px;
      padding: 10px;
    }

    .background-image {
      width: 100%;
      height: auto;
      display: block;
    }

#loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #fff;
}

#loading-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    animation: grow 2s ease-out forwards;
}

@keyframes grow {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

img {
    border-radius: 6%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #41f9ff;
}

nav ul li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}

nav ul li.active:hover::after {
    width: 100%;
}

.mySlides {display: none}
img {vertical-align: middle;}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.text {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
}

.prev {
    left: 0;
    margin-left: 10px;
}

.next {
    right: 0;
    margin-right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .text {font-size: 11px}
}


#bukaToast {
    z-index: 999;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: conic-gradient(at 0% 30%, rgb(1,2,4) 10%, rgb(255, 238, 1) 20%, rgb(0, 247, 255)30%, #ff0000 50%);
    color: transparent;
    padding: 5px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: all 0.6s;
    clip-path: polygon(0 80%, 100% 100%, 100% 0%, 0 20%, 0 100%);
}

#bukaToast:hover {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 100px 10px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: initial; 
    background: repeating-conic-gradient(
      from 0deg at 80% 50%,
      #5691f580 0% 8.25%,
      #b338ff80 8.25% 16.5%,
      #f8305880 16.5% 25%
    ),
    repeating-conic-gradient(
      from 15deg at 50% 50%,
      #e856f580 0% 8.25%,
      #ff384c80 8.25% 16.5%,
      #e7f83080 16.5% 25%
    ),
    repeating-conic-gradient(
      from 0deg at 20% 50%,
      #f58356ff 0% 8.25%,
      #caff38ff 8.25% 16.5%,
      #30f88aff 16.5% 25%
    );
    color: whitesmoke;
    clip-path: polygon(0 80%, 100% 100%, 100% 0%, 0 20%, 0 100%);
}

.infopenting {
    z-index: 999;
    visibility: hidden;
    min-width: 250px;
    margin-bottom: 16px;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgb(255 127 0 / 25%) 50px,
      rgb(255 127 0 / 25%) 56px,
      transparent 56px,
      transparent 63px,
      rgb(255 127 0 / 25%) 63px,
      rgb(255 127 0 / 25%) 69px,
      transparent 69px,
      transparent 116px,
      rgb(255 206 0 / 25%) 116px,
      rgb(255 206 0 / 25%) 166px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgb(255 127 0 / 25%) 50px,
      rgb(255 127 0 / 25%) 56px,
      transparent 56px,
      transparent 63px,
      rgb(255 127 0 / 25%) 63px,
      rgb(255 127 0 / 25%) 69px,
      transparent 69px,
      transparent 116px,
      rgb(255 206 0 / 25%) 116px,
      rgb(255 206 0 / 25%) 166px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgb(143 77 63 / 25%) 5px,
      rgb(143 77 63 / 25%) 10px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 5px,
      rgb(143 77 63 / 25%) 5px,
      rgb(143 77 63 / 25%) 10px
    );

  background: repeating-linear-gradient(
      90deg,
      transparent 0 50px,
      rgb(255 127 0 / 25%) 50px 56px,
      transparent 56px 63px,
      rgb(255 127 0 / 25%) 63px 69px,
      transparent 69px 116px,
      rgb(255 206 0 / 25%) 116px 166px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 50px,
      rgb(255 127 0 / 25%) 50px 56px,
      transparent 56px 63px,
      rgb(255 127 0 / 25%) 63px 69px,
      transparent 69px 116px,
      rgb(255 206 0 / 25%) 116px 166px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 5px,
      rgb(143 77 63 / 25%) 5px 10px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0 5px,
      rgb(143 77 63 / 25%) 5px 10px
    );
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: relative;
    right: -30px;
    font-size: 17px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
}

.infopenting a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.infopenting.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(-30px);
}

.tutup-info {
    z-index: 999;
    position: absolute;
    top: 2px;
    left: 2px;
    background: transparent;
    border: solid;
    border-color: #321;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.tutup-info:hover {
    border-color: red;
}

#iniinfopenting {
    z-index: 999;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column-reverse;
}

.crazykiller123 {
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.crazykiller123 button {
    color: #fff;
    background: #111;
    border: none;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.crazykiller123 button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.crazykiller123 button:active {
    color: #000;
}

.crazykiller123 button:active:after {
    background: transparent;
}

.crazykiller123 button:hover:before {
    opacity: 1;
}

.crazykiller123 button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


#avatar {
    z-index: 999;
    vertical-align: middle;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }

  .lp {
    position: relative; 
    width: 100%;
    height: calc(100vh - 60px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.lp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.lp h1, .lp p, .tombol-scroll {
    position: relative;;
    z-index: 2;
}

.lp h1 {
    font-size: 3em;
    margin: 0;
    opacity: 0;
    animation: textEffect 3s forwards;
}
.lp p {
    font-size: 1.5em;
    margin: 10px 0 0;
    opacity: 0;
    animation: textEffect 3s forwards 0.5s;
}
.lp-img {
    background-image: url('8.jpg'); 
    animation-delay: 0.5s;
}
.tombol-scroll {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonSlideIn 1s forwards 1s;
}
.tombol-scroll:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes textEffect {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(90deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
    }
}

@keyframes buttonSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


audio {
    display: none;
}

.temansetia {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.temansetia-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.temansetia button {
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    color:rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.2);
}