/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f0f0f0;
  color: #222;
  max-width: 1400px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
.header {
  background: #4a5e6d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 35px;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  
.header-left{
  text-decoration:none;
  color:#fff;
}

.header-left:hover{
  opacity:0.9;
}
}

.logo-box {
  background: linear-gradient(135deg, #ff0000, #f0a500);
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.logo-text {
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.site-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.btn-telegram-header {
  background: #17a9d4;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #0e7fa3;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-telegram-header:hover {
  background: #0e7fa3;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid #ddd;
}

.nav-link {
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
  border-right: 1px solid #eee;
}

.nav-link:first-child {
  border-right: 1px solid #eee;
}

.nav-link.active {
  background: #1a7a4a;
  color: #fff;
  border-radius: 0;
}

.nav-link:hover:not(.active) {
  background: #f5f5f5;
}

/* ===== HERO SECTION ===== */
.hero {
  background: #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 20px 10px 10px;
  flex-wrap: wrap;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.hero-left {
  flex: 0 0 220px;
  position: relative;
  min-height: 200px;
}

.hero-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rupee {
  position: absolute;
  font-size: 30px;
  color: #f0c000;
  font-weight: 900;
}

.r1 { top: 20px; left: 5px; }
.r2 { top: 30px; right: 10px; }
.r3 { bottom: 30px; left: 30px; }

.hero-img {
  max-width: 170px;
  max-height: 190px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.hero-person-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-center {
  flex: 1;
  min-width: 260px;
}

.hero-title {
  color: #e07d00;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hero-card span {
  font-size: 22px;
}

.hero-card.two-line {
  align-items: center;
}

.hero-card.two-line div {
  display: flex;
  flex-direction: column;
}

.hero-card.two-line small {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.hero-right {
  flex: 0 0 280px;
  min-width: 240px;
}

/* ===== HOT CARD ===== */
.hot-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.hot-badge {
  background: #e00;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  font-style: italic;
  padding: 4px 14px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 4px;
}

.hot-logo {
  padding: 18px 10px 5px;
  display: flex;
  justify-content: center;
}

.hot-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6e1a, #f0a500);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #1a6e1a;
}

.hot-title-bar {
  background: #e00;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 6px 0;
}

.hot-timer-bar {
  background: #d4a800;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
}

.timer-box {
  background: #b50000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  min-width: 30px;
}

.btn-download-hot {
  display: inline-block;
  background: #e00;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 22px;
  border-radius: 5px;
  margin-top: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-download-hot:hover {
  background: #b50000;
}

/* ===== MARQUEE BAR ===== */
.marquee-bar {
  background: #1a7a2a;
  color: #fff;
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding: 0 10px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TAB BAR ===== */
.tab-bar {
  display: flex;
  border: 1px solid #bbb;
  background: #fff;
}

.tab-btn {
  flex: 1;
  padding: 13px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #333;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid #bbb;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: #1a6bc0;
  color: #fff;
}

.tab-btn:hover:not(.active) {
  background: #f0f0f0;
}

/* ===== NEW LAUNCH BANNER ===== */
.new-launch-banner {
  background: #e00;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 22px;
  font-style: italic;
  letter-spacing: 2px;
}

.no-new-launch {
  padding: 10px 16px;
  font-size: 14px;
  color: #444;
  background: #f8f8f8;
}

/* ===== GAMES LIST ===== */
.games-list {
  background: #f0f0f0;
  padding: 10px 16px;
}

.game-item {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #b8e0b8;
  border-radius: 40px;
  padding: 12px 16px;
  margin-bottom: 14px;
  gap: 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.game-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.game-item.best-style {
  border-color: #a0c4ff;
}

.game-number {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  min-width: 28px;
}

.game-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6e1a, #f0a500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  flex-shrink: 0;
  border: 2px solid #1a6e1a;
  overflow: hidden;
}

.game-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.game-info {
  flex: 1;
}

.game-name {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.game-bonus {
  font-size: 13px;
  color: #e00;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.game-withdraw {
  font-size: 13px;
  color: #1a7a2a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.btn-download {
  background: #1a7a2a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-download:hover {
  background: #135c1e;
}

.btn-download.blue {
  background: #1a6bc0;
}

.btn-download.blue:hover {
  background: #0f4e99;
}

/* ===== NOTICE BOX ===== */
.notice-box {
  border: 2px solid #e07d00;
  border-radius: 8px;
  margin: 18px 16px;
  padding: 18px 20px;
  background: #fff;
}

.notice-box h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.link-blue {
  color: #1a6bc0;
  text-decoration: underline;
}

/* ===== SCROLL TEXT BAR ===== */
.scroll-text-bar {
  background: #f0f0f0;
  color: #444;
  font-size: 13px;
  padding: 8px 16px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* ===== THANKS SECTION ===== */
.thanks-section {
  text-align: center;
  padding: 20px 0 10px;
  background: #f8f8f8;
}

.thanks-text {
  font-size: 26px;
  color: #1a7a2a;
  font-weight: 800;
}

/* ===== TAGS BAR ===== */
.tags-bar {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin: 10px 0;
  height: 44px;
}

.tags-label {
  background: #1a1a99;
  color: #f0c000;
  font-weight: 700;
  font-size: 16px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tags-marquee {
  background: #111;
  color: #fff;
  font-size: 13px;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tags-marquee span {
  display: inline-block;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
  padding-left: 100%;
}

/* ===== TELEGRAM SECTION ===== */
.telegram-section {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  margin: 10px 0;
}

.tg-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #1a4e6e;
}

.tg-icon {
  background: #0088cc;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.btn-telegram-join {
  background: #17a9d4;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #0e7fa3;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-telegram-join:hover {
  background: #0e7fa3;
}

/* ===== SHARE SECTION ===== */
.share-section {
  background: #e8f7e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 2px solid #ddd;
}

.share-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #1a4e1a;
}

.share-icon {
  background: #1a7a2a;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.btn-share {
  background: #1a7a2a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-share:hover {
  background: #135c1e;
}

/* ===== FOOTER ===== */
.footer {
  background: #4a5e6d;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f0c000;
}

.copyright {
  font-size: 13px;
  color: #cdd8df;
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */

/* ===== PERFECT MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {

  body{
    overflow-x:hidden;
  }

  /* HEADER MOBILE FIX */
  .header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 10px;
    gap:8px;
  }

  .header-left{
    display:flex;
    align-items:center;
    gap:8px;
    flex:1;
    min-width:0;
  }

  .logo-box{
    width:42px;
    height:42px;
    flex-shrink:0;
  }

  .logo-text{
    font-size:7px;
    line-height:1.1;
  }

  .site-title{
    font-size:14px;
    line-height:1.2;
    color:#fff;
  }

  .btn-telegram-header{
    padding:8px 12px;
    font-size:12px;
    border-radius:8px;
    white-space:nowrap;
    flex-shrink:0;
  }

  /* NAVBAR */
  .navbar{
    overflow-x:auto;
    justify-content:flex-start;
  }

  .nav-link{
    padding:12px 18px;
    font-size:13px;
    white-space:nowrap;
    flex-shrink:0;
  }

  /* HERO */
  .hero{
    flex-direction:column;
    padding:12px;
    gap:15px;
  }

  .hero-left,
  .hero-center,
  .hero-right{
    width:100%;
    min-width:100%;
  }

  .hero-image-wrapper{
    width:100%;
    height:auto;
  }

  .hero-img{
    width:140px;
    height:auto;
  }

  .hero-title{
    font-size:18px;
  }

  .hero-card{
    padding:14px;
    font-size:14px;
  }

  /* HOT CARD */
  .hot-card{
    width:100%;
    max-width:100%;
  }

  /* TAB */
  .tab-btn{
    font-size:13px;
    padding:10px;
  }

  /* ===== GAME ITEM MOBILE FIX ===== */
  .games-list{
    padding:8px;
  }

  .game-item{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:10px 12px;
    border-radius:18px;
  }

  .game-number{
    min-width:20px;
    font-size:14px;
  }

  .game-logo{
    width:45px;
    height:45px;
    min-width:45px;
  }

  .game-info{
    flex:1;
    min-width:0;
  }

  .game-name{
    font-size:15px;
    margin-bottom:3px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .game-bonus,
  .game-withdraw{
    font-size:11px;
    line-height:1.4;
  }

  /* DOWNLOAD BUTTON RIGHT SIDE */
  .btn-download{
    width:auto;
    min-width:95px;
    padding:10px 12px;
    font-size:13px;
    justify-content:center;
    border-radius:8px;
    flex-shrink:0;
  }

  /* NOTICE */
  .notice-box{
    margin:12px 8px;
    padding:14px;
  }

  .notice-box h3{
    font-size:16px;
  }

  .notice-box p{
    font-size:13px;
  }

 /* ===== TELEGRAM MOBILE FIX ===== */
.telegram-section{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  gap:10px;
  text-align:left;
}

.tg-left{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
}

.tg-left strong{
  font-size:15px;
  line-height:1.3;
}

/* TELEGRAM BUTTON */
.btn-telegram-join{
  padding:10px 16px;
  font-size:13px;
  white-space:nowrap;
  flex-shrink:0;
}

/* ===== SHARE MOBILE FIX ===== */
.share-section{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  gap:10px;
  text-align:left;
}

.share-left{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
}

.share-left strong{
  font-size:15px;
  line-height:1.3;
}

/* SHARE BUTTON */
.btn-share{
  padding:10px 16px;
  font-size:13px;
  white-space:nowrap;
  flex-shrink:0;
}

  /* TAGS */
  .tags-label{
    font-size:12px;
    padding:0 10px;
  }

  .tags-marquee{
    font-size:11px;
  }

  /* FOOTER */
  .footer{
    padding:15px 10px;
  }

  .footer-links{
    gap:10px;
    font-size:12px;
  }

  .copyright{
    font-size:11px;
  }

}