 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .telegram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #0088cc;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: pulseTelegram 2s infinite;
    transition: transform 0.3s ease;
  }
  
  .telegram-float:hover {
    transform: scale(1.1);
  }
  
  .telegram-float img {
    width: 28px;
    height: 28px;
  }
  
  /* Popup Note */
  .telegram-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #0088cc;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 9998;
    max-width: 240px;
  }
  
  /* Telegram icon glow */
  @keyframes pulseTelegram {
    0% {
      box-shadow: 0 0 10px rgba(0, 136, 204, 0.6);
    }
    50% {
      box-shadow: 0 0 20px rgba(0, 136, 204, 1);
    }
    100% {
      box-shadow: 0 0 10px rgba(0, 136, 204, 0.6);
    }
  }

/* ===== Slim & Stylish TashanWin Header ===== */
.tw-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #101825, #223750);
    color: #fff;
    padding: 8px 16px;  /* Reduced padding for slim look */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  /* === Logo Image Styling === */
  .tw-header a img.tw-logo-img {
    height: 32px;       /* Smaller height */
    width: auto;
    display: block;
  }
  
  /* === Button Container === */
  .tw-buttons {
    display: flex;
    align-items: center;
  }
  
  /* === Login & Register Buttons === */
  .tw-buttons .btn {
    margin-left: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: 0.3s ease;
    color: #fff;
  }
  
  .btn-login {
    background-color: #e53935;
  }
  
  .btn-register {
    background-color: #1e88e5;
  }
  
  .btn-login:hover {
    background-color: #c62828;
  }
  
  .btn-register:hover {
    background-color: #1565c0;
  }
  
  /* === Body padding to prevent header overlap === */
  body {
    padding-top: 55px;  /* Adjust according to final header height */
  }  


:root{
  --tw-red: #d32f2f;
  --tw-blue: #1976d2;
  --tw-yellow: #ffd600;
  --tw-white: #ffffff;
  --max-width: 980px;
}

/* ---------- Welcome Section (Full CSS) ---------- */
.welcome-section{
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
  box-sizing: border-box;
  color: var(--tw-white);
  /* background mixing: blue -> yellow -> red */
  background: linear-gradient(to right, #141e30, #243b55);
  /* subtle textured overlay */
}
.welcome-section::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.03), transparent 15%),
              radial-gradient(circle at 90% 90%, rgba(0,0,0,0.06), transparent 20%);
  pointer-events: none;
}

/* container to center content & constrain width */
.welcome-section .welcome-container{
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

/* Heading */
.welcome-section h1{
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 2.25rem; /* 36px approx */
  line-height: 1.05;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  letter-spacing: 0.4px;
}

/* typing text styled with a gradient so it stands out */
.welcome-section .typing-text{
  display: inline-block;
  font-weight: 900;
  padding-left: 6px;
  /* gradient text for the typed word */
  background: linear-gradient(90deg, var(--tw-yellow) 0%, var(--tw-red) 50%, var(--tw-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: none;
  font-size: 1.05em;
}

/* blinking caret after typed text */
.welcome-section .typing-text::after{
  content: "|";
  display: inline-block;
  margin-left: 6px;
  color: rgba(255,255,255,0.95);
  opacity: 0.95;
  animation: caretBlink 1s steps(2, start) infinite;
}
@keyframes caretBlink {
  0%, 40% { opacity: 1; }
  41%, 100% { opacity: 0; }
}

/* Paragraph */
.welcome-section p{
  max-width: 820px;
  margin: 12px auto 20px;
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* small accent line under heading */
.welcome-section .accent-line{
  width: 72px;
  height: 4px;
  margin: 16px auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--tw-yellow), var(--tw-red), var(--tw-blue));
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Register Button centered, big & premium */
.welcome-section .register-btn{
  display: inline-block;
  margin: 18px auto 0;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  /* layered gradient button mixing all three colors */
  background-image: linear-gradient(90deg, rgba(221,24,24,1) 0%, rgba(255,214,0,0.95) 45%, rgba(25,118,210,1) 100%);
  box-shadow:
     0 8px 28px rgba(25,118,210,0.20),
     inset 0 -2px 6px rgba(0,0,0,0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

/* hover - swap palette and add glow */
.welcome-section .register-btn:hover,
.welcome-section .register-btn:focus{
  transform: translateY(-4px);
  filter: brightness(1.03);
  box-shadow:
     0 14px 40px rgba(211,47,47,0.25),
     0 6px 20px rgba(25,118,210,0.20),
     inset 0 -2px 8px rgba(255,255,255,0.06);
}

/* subtle pulsing glow to attract attention (optional) */
.welcome-section .register-btn.pulse{
  animation: pulseGlow 3s infinite ease-in-out;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 8px 28px rgba(25,118,210,0.18); transform: translateY(0); }
  50% { box-shadow: 0 18px 48px rgba(211,47,47,0.22); transform: translateY(-3px); }
}

/* small note / subtext below CTA */
.welcome-section .sub-note{
  margin-top:12px;
  color: rgba(255,255,255,0.88);
  font-size:0.95rem;
}/* make sure layout is responsive and readable on smaller screens */
@media (max-width: 900px){
  .welcome-section{ padding: 36px 18px; }
  .welcome-section h1{ font-size: 1.75rem; }
  .welcome-section p{ font-size: 0.98rem; max-width: 680px; }
  .welcome-section .register-btn{ padding: 12px 30px; font-size: 1rem; }
}

@media (max-width: 480px){
  .welcome-section{ padding: 28px 14px; }
  .welcome-section h1{ font-size: 1.45rem; }
  .welcome-section p{ font-size: 0.95rem; }
  .welcome-section .typing-text::after{ display: inline-block; margin-left:4px; }
  .welcome-section .register-btn{ width: 92%; max-width: 320px; padding: 12px 18px; font-size: 0.98rem; border-radius: 34px; }
}







/* Gift Code Section - SEO Friendly Official Colors */
.gift-code-section {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border: 2px solid #ffcc00;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 650px;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.gift-code-section h2 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.gift-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: bold;
}

.gift-label {
    color: #000;
}

#giftCode {
    background: #e53935;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    animation: blinkCode 1.2s infinite alternate;
}

@keyframes blinkCode {
    0% { box-shadow: 0 0 8px #ffcc00; }
    100% { box-shadow: 0 0 18px #ffcc00; }
}

.copy-btn {
    padding: 8px 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.copy-btn:hover {
    background: #0056b3;
}

.gift-note {
    margin-top: 10px;
    color: #555;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gift-code-section {
        padding: 15px;
    }
    .gift-box {
        flex-direction: column;
    }
}




  .action-buttons.below-table {
    max-width: 650px;
    margin: 20px auto 40px;
    padding: 0 20px; /* Match table padding */
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .action-buttons.below-table .btn {
    flex: 1 1 45%;
    min-width: 140px;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  @keyframes blueGlow {
    0%, 100% {
      box-shadow: 0 0 0 rgba(0, 123, 255, 0);
      transform: translateY(0);
    }
    50% {
      box-shadow:
        0 0 12px rgba(0, 123, 255, 0.6),
        0 0 30px rgba(0, 123, 255, 0.7),
        0 0 45px rgba(0, 123, 255, 0.8);
      transform: translateY(-3px);
    }
  }
  
  @keyframes redGlow {
    0%, 100% {
      box-shadow: 0 0 0 rgba(220, 53, 69, 0);
      transform: translateY(0);
    }
    50% {
      box-shadow:
        0 0 12px rgba(220, 53, 69, 0.6),
        0 0 30px rgba(220, 53, 69, 0.7),
        0 0 45px rgba(220, 53, 69, 0.8);
      transform: translateY(-3px);
    }
  }
  
  .btn.green {
    background-color: #007bff;
    animation: blueGlow 2.5s infinite ease-in-out;
  }
  
  .btn.red {
    background-color: #e53935;
    animation: redGlow 2.5s infinite ease-in-out;
  }
/* Fix hover background and keep text white */
.btn.green:hover {
    background-color: #0056b3; /* Darker blue */
    color: #fff;
  }
  
  .btn.red:hover {
    background-color: #c62828; /* Darker red */
    color: #fff;
  }







  .app-info {
    padding: 40px 20px;
    background-color: #fff;
  }
  
  .app-info h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #dd2476;
  }
  





  .app-info {
    padding: 40px 20px;
    background-color: #fff;
  }
  
  .info-box {
    max-width: 650px;
    margin: 0 auto;
    border: 2px solid #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .info-heading {
    background-color: #dd2476;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 14px;
    border-bottom: 2px solid #000;
  }
  
  .info-row {
    display: flex;
    border-bottom: 1px solid #000;
  }
  
  .info-row:last-child {
    border-bottom: none;
  }
  
  .info-label, .info-value {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
  }
  
  .info-label {
    background-color: #f3f3f3;
    border-right: 1px solid #000;
    font-weight: 600;
    color: #222;
  }
  
  .info-value {
    background-color: #fff;
    color: #111;
    font-weight: 500;
  }





  /* Tashan Win Intro Section */
.tashan-intro {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.intro-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-content {
    text-align: center;
    margin-top: 20px;
}

.intro-content h1 {
    font-size: 26px;
    color: #d32f2f; /* Red */
    margin-bottom: 15px;
}

.intro-content h1 span {
    color: #1976d2; /* Blue */
}

.intro-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-size: 20px;
    color: #1976d2;
    margin-bottom: 10px;
}

.intro-content ul {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 20px;
    padding-left: 20px;
}

.intro-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.cta {
    margin-top: 20px;
}

.register-btn {
    display: inline-block;
    background: linear-gradient(90deg, #d32f2f, #1976d2);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.register-btn:hover {
    background: linear-gradient(90deg, #b71c1c, #0d47a1);
    transform: scale(1.05);
}



  
  footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
  }