/* =================================
 Temlate Name : Miscoo
 Author Name : autworks
 Date: 08/10/2020
 Version: 1.0
 =================================

/* =================================
 css index
 =================================
 *. typography
 *. section title
 *. preloader
 *. scroll to top button
 *. normalize
 1. header
 2. Breadcrump
 3. banner
 4. limelight feature
 5. About
 6. Service
 7. Portfolio
 8. Call to action
 9. Testimonial
 10. Team
 11. News
 12. Brand
 13. Contact
 14. Footer & copyright
 15. About second part
 16. Service page
 17. Service Details
 18. Sidebar
 19. Blog
 20. Contact
 21. Appointment

================================= */
/*==========================================
    typography
===========================================*/
@import url("../../css2");
@import url("../../css2-1");
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
}

a {
  display: inline-block;
  transition: 0.3s;
}

.overflow-hidden {
  overflow: hidden;
}

/*==========================================
    template default button
==========================================*/
.def-btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 35px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in;
  border-radius: 15px;
}
.def-btn.def-small {
  height: auto;
  line-height: 1.5;
  padding: 0 45px;
}
/*
.def-btn:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease-in;
  opacity: 1;
}
.def-btn:hover {
  color: #fff;
}
.def-btn:hover:after {
  opacity: 1;
}
*/
/*==========================================
    section title
==========================================*/
.heading {
  text-align: center;
  margin-bottom: 70px;
}
.heading h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}
.heading p {
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: -8px;
}

.c-white {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .row.reorder-xs {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs > [class*=col-] {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row.homepage-about-xs {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.homepage-about-xs > [class*=col-] {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}
/*==========================================
    Preloader
==========================================*/
.preloader {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: #09111f;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preloader img {
  width: 400px;
}

/*==========================================
    normalize
==========================================*/
html {
  font-family: "Arial";
  font-weight: 600;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Arial";
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #000;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a {
  line-height: 1.2;
/*  font-family: "Oswald", sans-serif; 
  letter-spacing: 1px; */
  font-weight: 600;
}

p {
  line-height: 1.6;
  font-family: "Arial";
  font-weight: 600;
}

a {
  color: #283659;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes rubber {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rubber-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-3 {
  0% {
    transform: translateX(5px) translateY(5px);
  }
  50% {
    transform: translateX(-5px) translateY(-5px);
  }
  100% {
    transform: translateX(5px) translateY(5px);
  }
}
@keyframes animation-4 {
  0% {
    transform: translateX(5px) translateY(-5px);
  }
  50% {
    transform: translateX(-5px) translateY(5px);
  }
  100% {
    transform: translateX(5px) translateY(-5px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes popping-up {
  0% {
    width: 90px;
    height: 90px;
  }
  50% {
    width: 65px;
    height: 65px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
.header {
	z-index: 11;
	padding: 0 100px;
	transition: all 0.3s ease-in;
}
.header.header-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.46);
}
.header.header-fixed .top-header {
  padding: 5px 0;
}
/*
.header.header-fixed .logo img {
  width: 130px;
}
*/
.header .logo {
/*  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; */
  position: relative;
  max-width: 400px;
  margin: .5rem auto;
}
.header .logo a {
	padding: 3px 0;
}
.tanggal {
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 15px;
}
.tanggal span {
	display: block;
	margin: 0 5px;
  background: 272B31;
  padding: .25rem 2rem;
  border-radius: 5px;
  font-size: 14px;
  color: #FFCC05;
}
/*
.header .logo:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 500px;
  background: #fff;
  opacity: 0.1;
}
*/
.header .logo img {
  transition: all 0.3s ease-in;
}
.header .top-header {
	padding: 15px 0;
}
.header .top-header .top-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header .top-header .top-right form.part-searchBar {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0 15px 30px;
}
.header .top-header .top-right form.part-searchBar input {
  border: none;
  background: transparent;
  color: #999;
  font-family: "Arial";
  font-weight: 600;
}
.header .top-header .top-right form.part-searchBar input:placeholder {
  color: #999;
}
.header .top-header .top-right form.part-searchBar input:focus ~ button {
  color: #ff4647;
}
.header .top-header .top-right form.part-searchBar button {
  background: transparent;
  border: none;
  color: #999;
  transition: all 0.3s ease-in;
}
/*
.header .top-header .top-right .buttons {
  margin-right: 30px;
}
*/
.header .top-header .top-right .buttons a {
  font-size: 15px;
/*  line-height: 100%; */
  margin-left: 25px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  padding: 7px;
  border-radius: 5px;
  width: 100px;
  text-align: center;
}
.header .top-header .top-right .buttons a:hover {
  background-color: #ffc107;
}
.header .bottom-header .navbar {
  padding: 0;
}
.header .bottom-header .navbar .navbar-nav {
  position: relative;
}
.header .bottom-header .navbar .navbar-nav:after {
  position: absolute;
  content: "";
  left: -100px;
  top: 0;
  width: 9999px;
  background: #fff;
  opacity: 0.1;
  height: 1px;
}
.header .bottom-header .navbar .navbar-nav .nav-item {
  padding: 25px 20px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .nav-link {
  margin-right: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .nav-link:after {
  border: none;
  width: 12px;
  height: 12px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  top: 50%;
  margin-top: -5px;
  position: absolute;
  margin-left: 10px;
  -webkit-clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
          clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0;
  transition: all 0.3s ease-in;
  padding: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover, .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  color: #fff;
  background: #fff;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover:after, .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active:after {
  opacity: 1;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .nav-link:after {
  transform: rotate(180deg);
}
.header .bottom-header .navbar .navbar-nav .nav-item:last-child {
  padding-right: 0;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
  padding: 5px 0;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  left: -22px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 2px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border-radius: 50px;
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link.active:before {
  width: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item:hover .nav-link:before {
  width: 30px;
}
.header .bottom-header .navbar .nav-btn {
  height: 40px;
  line-height: 38px;
  margin-left: 10px;
  background: #111111;
}
.header .bottom-header .navbar .nav-btn:hover {
  background: transparent;
}

.main-content {
	background-repeat: no-repeat;
	background-position: 0 -25px;
}

.banner {
  background: url("../img/banner-bg-2.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.8);
  z-index: -1;
}
.banner .banner-txt {
  text-align: center;
  padding-top: 200px;
}
.banner .banner-txt h4 {
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 3px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  font-weight: 700;
}
.banner .banner-txt h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 37px;
}

.page-title {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}
.games.game-page {
	max-width: 1060px;
	margin: 0 auto;
}

.games.game-page .games-filter-area {
  padding: 0px;
}
.games.game-page .games-filter-area .blog-search {
  margin-bottom: 30px;
  margin-top: 30px;
}
.games.game-page .games-filter-area .blog-search form {
  position: relative;
}
.games.game-page .games-filter-area .blog-search form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  padding: 0 30px;
  font-family: "Arial";
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  background: #242424;
  letter-spacing: 0.5px;
}
.games.game-page .games-filter-area .blog-search form input::placeholder {
  text-transform: capitalize;
  font-weight: 400;
}
.games.game-page .games-filter-area .blog-search form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.games.game-page .games-filter-area .filtering:last-child .dropdown button {
  border-bottom: none;
}
.games.game-page .games-filter-area .filtering .dropdown button {
  background: #242424;
  border: none;
  color: #fff;
  font-family: "Arial";
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  padding-left: 30px;
  font-weight: 400;
}
.games.game-page .games-filter-area .filtering .dropdown button:after {
  display: none;
}
.games.game-page .games-filter-area .filtering .dropdown button:before {
  width: 14px;
  height: 14px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
  -webkit-clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
          clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu {
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  border: 0;
  margin-left: 2px;
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu .dropdown-item {
  letter-spacing: 0.5px;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: 0s;
  text-transform: capitalize;
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu .dropdown-item:active {
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  color: #fff;
}
.games.game-page .miscoo-row {
  margin: 0;
  margin: -10px;
}
.games.game-page .miscoo-row div[class*=col] {
  padding: 10px;
}
/*
.games.game-page .all-games {
  margin-bottom: 50px;
}
*/
.games.game-page .all-games:last-child {
  margin-bottom: 0;
}
.games.game-page .all-games .single-game {
  margin-bottom: 0;
  border-width: 2px 2px 0;
  border-style: solid;
  border-radius: 15px;
}
.games .game-menu .nav .nav-item .nav-link {
/*  background: #242424; */
  color: #fff;
  line-height: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s ease-in;
  padding: 0;
}
.games .game-menu .nav.nav-mobile .nav-item .nav-link:hover, .games .game-menu .nav.nav-mobile .nav-item .nav-link.active {
	border: 2px solid #ffc107;
	border-radius: 12px;
}

.games .game-menu .nav .nav-item .nav-link span {
  display: inline-block;
  margin-right: 10px;
}

.games .game-menu .nav .nav-item:last-child .nav-link {
  border-bottom: none;
}
.games .all-games {
  position: relative;
  transition: all 0.3s ease-in;
  opacity: 0;
  transform: scale(0.99);
}
.games .all-games.anim-change {
  opacity: 1;
  transform: scale(1);
}
.games .all-games .title-cover {
  overflow: hidden;
  position: relative;
}
.games .all-games .title-cover .games-title {
  font-size: 28px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  margin: -4px 0 26px;
}
.games .all-games .title-cover .games-title:after {
  position: absolute;
  content: "";
  left: calc(100% + 30px);
  top: 50%;
  width: 999px;
  height: 1px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  opacity: 0.3;
}
.games .all-games .title-cover .games-title .icon {
  color: #ff464b;
  position: relative;
  top: -3px;
}
.games .all-games .title-cover .games-title .icon svg {
  height: 25px;
  width: 40px;
}
.games .all-games .single-game {
 
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.games .all-games .single-game a {
	display: block;
  background: #203047;
}
.games .all-games .single-game .part-img {
  position: relative;
	transition: all 0.4s ease-in;
}
.games .all-games .single-game .part-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.games .all-games .single-game .part-img:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,1) 100%);
  border-radius: 0 0 10px 10px;
}
.games .all-games .single-game .part-img .icon-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  transform: translateY(-50%) translateX(-50%);
  filter: drop-shadow(7px 7px 9px #000);
  opacity: 1;
  display: none;
}

.games .all-games .single-game .part-text {
  text-align: center;
/*  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease-in; */
}
.games.game-page .all-games .single-game .part-text {
  position: relative;
	display: flex;
  flex-direction: column;
	align-items: center;
	justify-content: center;
}
.games.game-page .all-games .single-game.gacor .part-text {
  background: linear-gradient(0deg, rgba(255,132,0,1) 0%, rgba(255,208,0,1) 50%, rgba(255,208,0,1) 100%);
}
.games.game-page .all-games .single-game.gacor {
  background: linear-gradient(0deg, rgba(240,90,38,1) 0%, rgba(255,204,5,1) 35%, rgba(255,204,5,1) 100%);
}
.games.game-page .all-games .single-game.gacor .part-text .def-btn {
  background: linear-gradient(0deg, rgba(44,166,29,1) 0%, rgba(157,229,23,1) 100%);
}
.games.game-page .all-games .single-game.gacor .part-text:before,
.games.game-page .all-games .single-game.gacor .part-text:after {
  position: absolute;
  content: '';
  background-image: url('../images/bintang-gacor.png');
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-size: cover;
}
.games.game-page .all-games .single-game.gacor .part-text:before {
  left: 5px;
bottom: 20px;
}
.games.game-page .all-games .single-game.gacor .part-text:after {
  right: 5px;
  bottom: 20px;
}
.games.game-page .all-games .pop-games .single-game.gacor .part-text::before, 
.games.game-page .all-games .pop-games .single-game.gacor .part-text::after {
  width: 30px;
  height: 30px;
}
.games.game-page .all-games .pop-games .single-game.gacor .part-text::before {
  left: 5px;
}
.games.game-page .all-games .pop-games .single-game.gacor .part-text::after {
  right: 5px;
}

.games.game-page .all-games .single-game.rungkad .part-text {
  background: linear-gradient(0deg, rgb(63, 0, 0) 0%, rgb(255, 0, 0) 50%, rgb(101, 30, 0) 100%);
}
/*
.games .all-games .single-game .part-text:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: -1;
}

.games .all-games .single-game .part-text:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 80%;
  height: 150%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  transform: rotate(25deg) translateY(-15%) translateX(120%);
  transition: all 0.3s ease-in;
}
*/
.games .all-games .single-game .part-text h4.game-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: -7px;
  margin-bottom: 15px;
  padding: 0 15px;
  position: relative;
}
.games .all-games .game-title {
	font-size: 13px;
	color: rgba(255,255,255,0.9);
	text-align: center;
	position: absolute;
	left: 0;
	z-index: 3;
	bottom: -8px;
	width: 100%;
/*	background: rgba(0,0,0,0.7); */
	padding: 10px;
}
/*
.games .all-games .single-game:hover .part-img {
	transform: scale(1.2);
}
.games .all-games .single-game:hover .part-text {
  opacity: 1;
}
*/
/*
.games .all-games .single-game .part-text a {
  position: relative;
  left: 0;
  transition: all 0.3s ease-in;
  transition-delay: 0.4s;
  opacity: 0;
}
.games .all-games .single-game:hover {
  border-color: transparent;
}
.games .all-games .single-game:hover .part-text h4.game-title, .games .all-games .single-game:hover .part-text a {
  left: 0;
  opacity: 1;
}
.games .all-games .single-game:hover .part-text:after {
	left: 0;
	opacity: 1;
}
*/

/* .footer .copyright-area {
  background: radial-gradient(circle, rgba(0, 41, 255, 1) 0%, rgba(0, 0, 0, 1) 100%);
  text-align: center;
  padding: 15px 0;
}
.footer .copyright-area img {
  width: 30px;
}
.footer .copyright-area p {
  color: #999;
  margin-bottom: 0;
  line-height: 28px;
}
.footer .copyright-area p a {
  color: orange;
  font-family: "Arial";
  font-weight: 600;
  letter-spacing: 0;
} */

/*
.runningtext {
	max-width: 1060px;
	margin: 0px auto;
}
*/
.simple-marquee-container {
	background: #fe9100;
	padding: 0 20% ;
}

@media(max-width: 768px) {
  .simple-marquee-container {
      background: #fe9100;
      padding: 0 1%;
    }
}

.simple-marquee-container .marquee-sibling {
	background: #fe9100;
	width: 10px;
	color: #fff;
}
.simple-marquee-container .fa, .simple-marquee-container .fas {
	font-family: "Font Awesome 5 Free";
}
.simple-marquee-container .marquee-content-items li {
  font-family: "Arial";
  font-weight: 600;
	color: #fff;
}
.simple-marquee-container .marquee-content-items li:after {
	display: none;
}
	
.marquee-after {
	position: absolute;
	width: 0px;
	height: 100%;
	right: 0;
	z-index: 33;
	background: #fe9100;
}

.logo_provider {
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
	height: 25px;
}




/*
.percent {
	position: relative;
	background: linear-gradient(180deg, rgba(255,255,255,1) -36%, rgba(255,255,255,1) 0%, rgba(182,182,182,1) 100%);
	border-radius: 10px;
}
*/
.percent p {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0;
}
.percent-bar {
  background-color: #ffc107;
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-size: 1rem 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width .6s ease;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
  z-index: 1;
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 10px 0 0 10px;
}
.karusel-items {
	padding-right: 15px;
}
.karusel-text {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
}
.karusel-text .karusel-buton {
	margin-left: 15px;
	border: none;
	color: #fff;
    background: linear-gradient(180deg, rgba(0,129,255,1) 0%, rgba(0,37,214,1) 100%);
	text-transform: uppercase;
	font-size: 20px;
	padding: 7px 5px;
	border-radius: 150px;
	text-align: center;
	width: 100px;
}
.popular .games {
	padding: 0;
}
/*
.pop-games .owl-nav {
	font-size: 15px;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	background: #007C11;
	padding: 2px 5px; 
}
*/
.pop-games.owl-carousel .owl-nav button.owl-prev, .pop-games.owl-carousel .owl-nav button.owl-next {
	font-size: 15px;
	color: #fff;
	position: absolute;
	top: -32px;
	background: #007C11;
	padding: 2px 5px !important;
}
.pop-games .owl-prev {
	right: 24px;
}
.pop-games .owl-next {
	right: 5px;
}
.pop-games .owl-dots {
	text-align: center;
}
.pop-games .owl-dot span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 90px;
	margin: 0 3px;
}
.pop-games .owl-dot.active span {
  background: #ffc329;
}

.purple {
  background-color: #8f23ac;
}
.oren {
  background-color: #ff8e01;
}
.red {
  background-color: #cb0000;
}
.yellow {
  background-color: #ffcd00;
}
.biru {
  background: linear-gradient(180deg, rgba(0,129,255,1) 0%, rgba(0,37,214,1) 100%);
}
.kuning {
  background: linear-gradient(180deg, rgba(255,196,0,1) 0%, rgba(245,103,22,1) 100%);
}
.green {
  background-color: #7CB342;
}
.dark-green {
    background: linear-gradient(180deg, rgba(3,176,15,1) 0%, rgba(20,98,0,1) 100%);
}
.blue {
	background-color: #7366f0;
}
.red {
	background-color: #bb0907;
}
.orange {
	background: #ff8c00;
}
.blue-grade {
  background: linear-gradient(180deg, #45e8f9 0%, #2665cf 100%);
}
.orange-grad {
  background: linear-gradient(0deg, rgba(245,107,21,1) 0%, rgba(255,193,1,1) 100%);
}
.green-grad {
  background: linear-gradient(0deg, rgba(27,145,0,1) 0%, rgba(127,222,3,1) 100%);
}
.purple-grad {
  background: linear-gradient(0deg, rgba(111,0,133,1) 0%, rgba(190,57,227,1) 100%)
}
.percent-text {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 5px;
	font-size: 13px;
	font-weight: 600;
}
.single-game-wrapper {
	margin-bottom: 5px;
}
.game_title {
	text-align: center;
}
.game_title h4 {
	font-size: 20px;
}


.nav-desktop, .ct-desktop, .nav-desktop.owl-carousel.owl-loaded {
	display: none;
}
.nav-desktop {
	margin-bottom: 50px;
}
.nav_mobile {
	display: flex;
	align-items: center;
}
.nav_text {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin-right: 15px;
	text-transform: uppercase;
}
.mbl-menu {
	background: #fff;
	padding: 0 15px;
	border-radius: 5px;
	width: 60%;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.mbl-menu .fas {
	margin-right: 10px;
}
.current-provider {
	display: flex;
	flex-direction: row-reverse;
	justify-content: end;
	align-items: center;
	width: 100%;
}


.nav_mobile .icon_provider {
	margin-left: 5px;
}
.nav_mobile .icon_provider img {
	height: 30px;
}
.nav-mobile .owl-nav {
	color: #ffc107;
}
.games .game-menu {
	border-radius: 7px;
}
.games .game-menu .nav-mobile .nav-item .nav-link {
	flex-direction: column;
	justify-content: center;
  padding: .5rem;
}
.games .game-menu .nav-mobile .nav-item .nav-link h6 {
  font-size: .6rem;
}
.games .game-menu .nav-mobile .nav-item .nav-link.active:after {
	width: 0;
}
.games .game-menu .nav-mobile .nav-item .nav-link span.icon {
	margin-right: 0;
}
/*
.games .game-menu .nav.nav-mobile .nav-item .nav-link span {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	content: '';
	margin: 0;
	background-color: rgba(0,0,0,0.75);
	transition: all 0.3s linear;
	border-radius: 0 0 7px 7px;
}
*/
.games .game-menu .nav-mobile .nav-item .nav-link span.text {
	font-size: 18px;
}
.nav-desktop.owl-carousel .owl-nav .owl-prev, .nav-desktop.owl-carousel .owl-nav .owl-next {
	background-color: #222;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255,255,255,0.05) 50%, rgba(0, 0, 0, 0.5) 100%);
	position: absolute;
	top: 0;
	width: 30px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
}
.nav-desktop.owl-carousel .owl-nav .owl-prev {
	left: -30px;
}
.nav-desktop.owl-carousel .owl-nav .owl-next {
	right: -30px;
}
.nav-mobile .owl-prev, .nav-mobile .owl-next {
	background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
	position: absolute;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	width: 20px;
	justify-content: center;
}
.nav-mobile .owl-prev {
	left: -20px;
}
.nav-mobile .owl-next {
	right: -20px;
}

.buttons {
	text-align: center;
	margin: 15px -15px;
}
.buttons a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin: .5%;
	color: #fff;
	padding: 7px;
	width: 30%;
	text-align: center;
}
.buttons a:hover {
  background-color: #ffc107;
}
.sec-title {
	text-align: center;
	margin: 0 0 30px;
	color: #fff;
	text-transform: uppercase;
}
.games .all-games .single-game.gacor {
  border-color: #fe9003;
}


/*
.mantap a:before {
	background-image: url('../images/gacor-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 60px;
	z-index: 5;
}
*/
.games.game-page .all-games .single-game .part-img img {
	border-radius: 10px;
}
.pop-single-game-wrapper .single-game .part-img img {
	border-radius: 10px;
}
.popular {
	background-image: url('../images/BG-full.jpg');
	background-size: cover;
	padding: 30px 0 15px;
	margin: 0 -15px;
}
.popular h3 {
	font-size: 50px;
	color: #fff;
	text-align: left;
	margin-bottom: 15px;
	padding-left: 15px;
	text-transform: uppercase;
}
.pop-games {
	margin-bottom: 0;
}
.ct-mobile.buttons {
	margin-bottom: 30px;
}

.gacorkali {
  animation: blinkBorderAndShadow 1.5s infinite;
  /* Durasi animasi */
  background: linear-gradient(0deg, rgb(255 132 0 / 17%) 0%, rgb(255 208 0 / 35%) 50%, rgb(255 208 0 / 35%) 100%);
  border-width: 3px;
  border-style: solid;
}


@keyframes blinkBorder {
  0% {
    border-color: #ffcc00;
    /* Kuning redup */
  }

  25% {
    border-color: #ffd700;
    /* Kuning emas */
  }

  50% {
    border-color: #ffff00;
    /* Kuning cerah */
  }

  75% {
    border-color: #fe9003;
    /* Kuning neon */
  }

  100% {
    border-color: #ffcc00;
    /* Kembali ke kuning redup */
  }
}
@keyframes blinkBorderAndShadow {
  0% {
    border-color: #ffcc00;
    /* Kuning redup */
    box-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
    /* Bayangan kuning redup */
  }

  25% {
    border-color: #ffd700;
    /* Kuning emas */
    box-shadow: 0 0 15px #ffd700, 0 0 25px #ffd700;
    /* Bayangan kuning emas */
  }

  50% {
    border-color: #ffff00;
    /* Kuning cerah */
    box-shadow: 0 0 20px #ffff00, 0 0 30px #ffff00;
    /* Bayangan kuning cerah */
  }

  75% {
    border-color: #fe9003;
    /* Kuning neon */
    box-shadow: 0 0 25px #fe9003, 0 0 35px #fe9003;
    /* Bayangan kuning neon */
  }

  100% {
    border-color: #ffcc00;
    /* Kembali ke kuning redup */
    box-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
    /* Kembali ke bayangan kuning redup */
  }
}


@media(max-width: 599px) {
/*	.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
		font-size: 30px;
	} 
	.pop-single-game-wrapper {
		background: #161D30;
	}
/*	.karusel-wrapper {
		max-width: 300px;
		margin: 0 auto 30px;
	}
	.pop-games .owl-item.active.center {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
		z-index: 3;
	}
	.pop-games.owl-carousel .owl-stage-outer {
		overflow: visible;
	} */
	.games.game-page .all-games .pop-game .single-game {
		margin-bottom: 0;
	}
}
	
@media(min-width: 768px) {
	.col-md-2.col_5 {
		width: 20%;
	}
	.nav_mobile, .ct-mobile {
		display: none;
	}
	.nav-desktop, .ct-desktop, .nav-desktop.owl-carousel.owl-loaded {
		display: block;
	}
	.tanggal span {
		display: inline-block;
	}
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

  .games.game-page {
    padding: 0 0 60px;
  }

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

/*  .games.game-page {
    padding: 60px 0;
  } */

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }
/*
  .games.game-page {
    padding: 60px 0;
  } */

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}

/* Chart Percentage */
.percentArea {
  position: relative;
  width: 104px;
  height: 50px;
/*  width: 134px;
  height: 65px; */
  overflow: hidden;
}

.chart {
  margin: 2px auto;
  padding: 0;
  list-style-type: none;
}
.percentArea:before {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: inherit;
  height: inherit;
  border: 25px solid #fff;
  border-bottom: none;
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
}

.chart *,
.chart::before {
  box-sizing: border-box;
}

.chart {
  position: relative;
  width: 100px;
  height: 50px;
/*  width: 130px;
  height: 65px; */
  overflow: hidden;
}

.chart::before,
.chart::after {
  position: absolute;
  left: 0;
  top: 0;
}

.chart::before {
  content: '';
  width: inherit;
  height: inherit;
  border: 10px solid #fff;
  border-bottom: none;
  border-top-left-radius: 75px;
  border-top-right-radius: 75px;
}

.chart .percentBar {
  position: absolute;
  top: 100%;
  left: 0;
  width: inherit;
  height: inherit;
  border: 20px solid #fff;
  border-top: none;
  border-bottom-left-radius: 75px;
  border-bottom-right-radius: 75px;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation-fill-mode: forwards;
  animation-duration: .4s;
  animation-timing-function: linear;
/*  background: #f1f1f1; */
}

.sangatgacor .chart .percentBar {
  border-color: rgb(72, 199, 24);
  /* Warna default jika animasi tidak mendukung */
  animation: neonBorder 3s infinite;
  /* Atur animasi */
}
.gacor .chart .percentBar {
  border-color: rgb(72, 199, 24);
}
.semi .chart .percentBar {
  border-color: orange;
}
.rungkad .chart .percentBar {
  border-color: rgb(213, 67, 30);
}

@keyframes neonBorder {
  0% {
    border-color: #39FF14;
    /* Hijau neon */
  }

  25% {
    border-color: gold;
    /* Pink neon */
  }

  50% {
    border-color: #00E5FF;
    /* Biru neon */
  }

  75% {
    border-color: #FFFB00;
    /* Kuning neon */
  }

  100% {
    border-color: #39FF14;
    /* Kembali ke Hijau neon */
  }
}

.percentTxt {
  position: relative;
  color: #fff;
  font-weight: 600;
  margin: 1.5rem;
  font-size: 16px;
}

.chart div:nth-child(1) {
  z-index: 4;
  border-color: orange; 
  transition: all 2s;
  transform: rotate(calc(var(--percentageRotate) * 1deg));
}

.chart span {
  position: absolute;
  font-size: 18px;
  backface-visibility: hidden;
  color: white;
  animation: fade-in .4s linear forwards;
}

.chart .candidate-one-percentage {
  top: 10px;
  left: -35px;
  transform: rotate(-90deg);
}

.chart .candidate-two-percentage {
  top: -35px;
  left: -35px;
  transform: rotate(-90deg);
}

.nav-mobile.owl-carousel .owl-item .navImg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  margin: .5rem;
  display: flex;
  align-items: center;
  padding: 15% 0 0 0;
}
.nav-mobile.owl-carousel .owl-item img {
  display: block;
  width: 100%;
/*  border-radius: 50%;
  background: #000;
  margin: .5rem; */
}

@keyframes rotate-one {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(calc(--percentageRotate * 1deg));
  }
} 
@media(min-width: 768px) {
  .percentArea {
    width: 134px;
    height: 65px;
  }
  .chart {
    width: 130px;
    height: 65px;
  }
  .chart::before {
    border: 25px solid #fff;
    border-bottom: none;
  }
  .chart .percentBar {
    border: 22px solid #fff;
    border-top: none;
  }
  .percentTxt {
    margin: 2rem 0;
    font-size: 18px;
  }
  .polaGacorModals .percentTxt {
    margin: 3rem 0;
  }
  /*
  .games.game-page .all-games .single-game.gacor .part-text::before {
    left: 30px;
  }
  .games.game-page .all-games .single-game.gacor .part-text::after {
    right: 30px;
  }
  */
  .games.game-page .all-games .single-game.gacor .part-text::before, 
  .games.game-page .all-games .single-game.gacor .part-text::after {
    width: 50px;
    height: 50px;
  }
  .games .all-games .single-game .part-img img {
    height: 215px;
  }
  .buttons a {
    padding: 15px 7px;
    font-size: 25px;
  }
  .games .game-menu .nav-mobile .nav-item .nav-link h6 {
    font-size: .85rem;
  }
}

.play-button .btn {
  background: linear-gradient(180deg, #45e8f9 0%, #2665cf 100%);
  border: 0;
  border-radius: 30px;
  color: #fff;
  font-family: "Arial";
  font-weight: 600;
  text-transform: uppercase;
}
.gacor .play-button .btn {
  background: linear-gradient(0deg, rgba(24,163,0,1) 0%, rgba(128,214,0,1) 100%);
}
.semi .play-button .btn {
  background: linear-gradient(0deg, rgba(43,125,215,1) 0%, rgba(64,213,243,1) 100%);
}
.rungkad .play-button .btn {
  background: linear-gradient(0deg, rgba(135,135,135,1) 0%, rgba(255,255,255,1) 100%);
}

.home-artikel {
  color: #fff;
}
.sosmed li {
  display: inline-block;
}
.sosmed li a {
  color: #fff;
}

.polaGacorModals .game-img img {
  width: 80%;
  border-radius: 20px;
}
.polaGacorModals .modal-header {
  background: linear-gradient(0deg, rgba(245,107,21,1) 0%, rgba(255,193,1,1) 100%);
  border: none;
}
.polaGacorModals.semi .modal-header {
  background: linear-gradient(0deg, rgba(0,65,150,1) 0%, rgba(0,122,223,1) 100%);
}
.polaGacorModals.rungkad .modal-header {
  background: linear-gradient(0deg, rgba(153,0,5,1) 0%, rgba(255,51,51,1) 100%);
}
.polaGacorModals .modal-title { 
  color: #fff;
  font-weight: 600;
}
.polaGacorModals.gacorkali .modal-body {
  /* background: linear-gradient(0deg, rgba(0,46,99,1) 0%, rgba(54,120,186,1) 69%, rgba(92,183,219,1) 100%); */
  background: linear-gradient(45deg, #FFD700, #FFA500,#FFD700) !important;
}
.polaGacorModals.gacor .modal-body {
  /* background: linear-gradient(0deg, rgba(0,46,99,1) 0%, rgba(54,120,186,1) 69%, rgba(92,183,219,1) 100%); */
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700) !important;
}
.polaGacorModals.semi .modal-body {
  /* background: linear-gradient(0deg, rgba(0,46,99,1) 0%, rgba(54,120,186,1) 69%, rgba(92,183,219,1) 100%); */
  background: linear-gradient(45deg, #00d9ff, #2f00ff, #00d9ff) !important;
}
.polaGacorModals.rungkad .modal-body {
  background: linear-gradient(45deg, #3e0000, #220000, #3e0000) !important;;
}
.polaClose {
  background: linear-gradient(0deg, rgba(153,0,5,1) 0%, rgba(255,51,51,1) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}
.rungkad .polaClose {
  background: #fff;
  color: rgb(153,0,5,1);
}
.polaTime {
  position: relative;
  width: 80%;
  margin: 0 auto;
  font-weight: 600;
  color: #fff;
}
.polaTime h3 {
  font-size: 18px;
  font-weight: 600;
  color: #51FF00;
  text-transform: uppercase;
  margin: 0;
}
.rungkad .polaTime h3 {
  color: #ED3237;
}
.gacor .polaTime:before, .gacor .polaTime:after {
  position: absolute;
  content: '';
  background-image: url('../images/bintang-gacor.png');
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  background-size: cover;
  top: 2px;
}
.gacor .polaTime:before {
  left: 5px;
}
.gacor .polaTime:after {
  right: 5px;
}
.polaGacorModals .percentArea {
  width: 150px;
  height: 74px;
}

.polaGacorModals .percentArea:before {
  border-width: 30px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
.polaGacorModals .chart {
  width: 144px;
  height: 72px;
}

.polaGacorModals .chart:before {
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-width: 28px;
}
.polaGacorModals .chart .percentBar {
  border-width: 25px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.polaGacorModals .percentTxt {
  margin: 3rem 0;
}
.polaMdlSection {
  height: 100%;
}
.polaMdlSection h4 {
  font-size: 18px;
  font-weight: 600;
  color: #51FF00;
}
.rungkad .polaMdlSection h4 { 
  color: #ED3237;
}
.polaContent {
  height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pola {
  color: #fff;
  font-size: 14px;
}
.pola p {
  color: #fff;
  line-height: 1.5;
}
.pola .notes {
  font-size: 11px;
}
.gameSearch .input-group-text, .gameSearch input {
  background: #fff;
  border: none;
}
.polaGacorModals .modal-footer {
  background: #002852;
  border: none;
}
.polaGacorModals.rungkad .modal-footer {
  background: #292929;
}
.bacaPolaLink a {
  border: none;
  border-radius: 30px;
  color: #fff;
}
.bacaPolaLink a:hover {
  color: #fff;
}

@media(min-width: 768px) {
  .polaGacorModals .percentArea {
    width: 174px;
    height: 85px;
  }
  .polaGacorModals .percentArea:before {
    border-width: 40px;
  }
  .polaGacorModals .chart {
    width: 170px;
    height: 85px;
  }
  .polaGacorModals .chart .percentBar {
    border-width: 34px;
  }
  .polaContent {
    height: 85px;
  }
  .pola {
    font-size: 16px;
  }
  .pola .notes {
    font-size: 14px;
  }
}
.modalfooterLink a {
  display: block;
  height: 100%;
  font-size: 32px;
  color: #fff;
  line-height: 34px;
  text-transform: uppercase;
}
.modalfooterLink a.main {
  background: linear-gradient(0deg, rgba(27,145,0,1) 0%, rgba(127,222,3,1) 100%);
}
.rungkad .modalfooterLink a.main {
  background: linear-gradient(0deg, rgba(55,55,55,1) 0%, rgba(190,190,190,1) 100%);
}

.modalgacorkai{
  border: 3px solid transparent;
  background: linear-gradient(45deg, #FFD700, #FFA500) !important;
  animation: blinkBorderAndShadow 1.5s infinite;
}



.glow-label {
  animation: glowEffect 1.5s infinite alternate;
}

@keyframes glowEffect {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4),
      0 0 10px rgba(255, 255, 255, 0.2),
      0 0 15px rgba(255, 255, 255, 0.1);
    opacity: 0.7;
  }

  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.6),
      0 0 30px rgba(255, 255, 255, 0.4);
    opacity: 1;
  }
}