body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    padding-bottom: 60px;
}
html, body {
    overflow-x: hidden; 
    width: 100%; 
    margin: 0; 
    padding: 0; 
}

* {
    box-sizing: border-box; 
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.header img {
    position: absolute;
    left: 10px;
    height: 40px;
}
.header h1 {
    font-size: 24px;
    margin: 0;
}
.balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.balance .left-icon, .balance .right-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.balance .left-icon {
    left: 10px;
}
.balance .right-icon {
    right: 10px;
}
.balance .middle {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.balance .middle div {
    text-align: center;
}
.balance .middle div p {
    margin: 5px 0;
}
.balance .middle div i {
    font-size: 24px;
}
.tabs {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.tabs div {
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d8f99;
}
.tabs div i {
    margin-right: 5px;
}
.tabs .active {
    color: #ffa63c;
    border-bottom: 2px solid #ffa63c;
}
.games, .live, .slots, .sports, .lottery {
    display: none;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}
.games.active, .live.active, .slots.active, .sports.active, .lottery.active {
    display: flex;
}
.game {
    width: 30%;
    margin: 10px 0;
    text-align: center;
}
.game img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);\\\\\\
}
.footer div {
    text-align: center;
    cursor: pointer;
    flex: 1;
}
.footer-icon {
    width: 28px;
    height: auto; 
}
.footer div p {
    font-size: 12px; 
    margin: 0; 
    color: #8d8f99; 
}
.icon-large {
    width: 50px;  
    height: auto;  
}
.cash {
    color: #8d8f99; 
}

.chips {
    color: #8d8f99; 
}

.amount {
    color: #8d8f99; 
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px; 
    height: auto;
    overflow: hidden;
    margin: auto; 
    touch-action: pan-y;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: cover; 
}
#whatsapp .wtsapp:focus {
    border: 0; 
    outline: 0;
}

#whatsapp .wtsapp {
    position: fixed;
    transition: all 0.5s ease;
    background: #0088cc;   
    display: flex;          
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50%;     
    color: #fff;
    font-size: 30px;        
    bottom: 130px;          
    left: 20px;             
    z-index: 999;
    width: 50px;            
    height: 50px;           
    text-decoration: none;
}

#whatsapp .wtsapp:hover {
    background: #0088cc;     
}

#whatsapp .wtsapp:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50px;            
    height: 50px;
    background: #0088cc;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) scale(1.5);
        opacity: 0;
    }
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}
.header .logo {
    font-size: 24px;
    font-weight: bold;
}
.header .register-btn {
    padding: 8px 16px;
    border: 2px solid #ffa63c;
    border-radius: 5px;
    background-color: transparent;
    color: #ffa63c;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}
.header .register-btn:hover {
    background-color: #ffa63c;
    color: white;
}  
.top-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: white;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 5;
}

/* Shared button styles */
.login-btn, .signup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between image and text */
  padding: 8px 370px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 1.5px solid #ffa63c;
}

/* Image inside button */
.login-btn img, .signup-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Login button - outline */
.login-btn {
  background: transparent;
  color: #ffa63c;
}

/* Sign Up button - filled */
.signup-btn {
  background: #ffa63c;
  color: white;
}

/* Hover effects */
.login-btn:hover {
  background: #ffa63c;
  color: white;
}

.signup-btn:hover {
  background: #e28e2e;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .top-buttons {
    justify-content: center;
    padding: 8px;
  }

  .login-btn, .signup-btn {
    font-size: 13px;
    padding: 6px 60px;
  }

  .login-btn img, .signup-btn img {
    width: 16px;
    height: 16px;
  }
}
 