body {
    font-family: "Lato", sans-serif;
    transition: margin-left .5s;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
    background: #000;
    text-transform: capitalize;
}

html, body {
    height: 100%;
    overflow: hidden;
    position: relative;
}

h3{
	margin:10px 10px !important;
}

#main-currency .logo {
    height: 80px;
    margin: 50px auto;
    max-width: 90%;
}

#main-currency {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(../img2/CG_background.png);
}

#main-currency .wrapper {
    height: 100%;
    color: #fff;
}

#main-currency .wrapper {
    overflow: auto;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    #main-currency .logo {
        height: 70px;
        margin: 20px auto;
    }
}

#main-currency .logo {
    max-width: 90%;
}

img, iframe {
    display: block;
    border: 0;
}

#main-currency .currency {
    display: inline-block;
    width: 120px;
    margin: 25px 25px;
}


#main-currency .currency img {
    width: 62%;
    margin: 0 auto;
    /* border-radius: 100%; */
}

.main-blink {
    animation-name: blinker;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#main-currency .btn {
    background-image: linear-gradient(to bottom, #70603d, #463d25);
    padding: 5px;
    margin-top: 15px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
}

.btn {
    display: block;
    border: 1px solid #ffffff;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, .3);
    text-align: center;
    background-color: #4ba614;
    cursor: pointer;
    line-height: 20px;
}

.tab {
  display: flex;
  justify-content: center; 
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #463d25;
  width: 100%; 
  box-sizing: border-box;
}

.tab button {
  flex: 1; 
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px; 
  font-size: 16px; 
  background-color: #463d25; 
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}

.tab button.active {
  background-color: #cfaf65;
  color: #ffffff;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

  #GameTips h3 {
    text-align: center;
    color: #fff;
  }
  
  p {
    color: #ffe5a3;
	margin:5px 5px !important;
  }

  #GameTips table {
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 15px; 
  }

  #GameTips th, #GameTips td {
    border: 1px solid #ddd;
    padding: 5px; 
    text-align: center; 
  }

  #GameTips th {
    background-color: #463d25; 
    color: #fff; 
    font-weight: bold;
  }
  
    #GameTips td { 
    color: #fff; 
    font-weight: bold;
	font-size:0.9rem;
  }

  .datetime {
	  float:right;
	  color:#fffb94;
	  font-size:0.7rem;
  }
 
	.container {
	  display: flex; 
	  align-items: center; 
	  gap: 20px;
	  padding: 10px; 
	  border: 1px solid #ddd; 
	  border-radius: 5px;
	  background-color: #f9f9f9; 
	  margin-bottom:20px;
	}

	.container .text {
	  flex: 1; 
	  font-family: Arial, sans-serif;
	  font-size: 16px; 
	  color: #333;
	}

	.container .image img {
	  max-width: 100px; 
	  height: auto; 
	  border-radius: 5px; 
	  display: block;
	}
	
	.text-animation {
	  font-size: 1.5rem;
	  font-weight: bold;
	  animation: colorChange 1.5s infinite; 
	}
	
	@keyframes colorChange {
	  0% {
		color: #ffffff;
		transform: scale(1);
	  }
	  50% {
		color: #fff500;
		transform: scale(1.2);
	  }
	  100% {
		color: #ffffff;
		transform: scale(1);
	  }
	}