
  *, *::before, *::after {
    box-sizing: border-box;
  }

  body {
    background: radial-gradient(circle at top,#0f172a,#020617);
    font-family: tahoma, sans-serif;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    padding-bottom:50px;
    overflow-x: hidden;
  }

  .topbar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    text-align:center;
    padding:10px 0;
    background:rgba(26, 37, 61, 0.65);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-top:1px solid rgba(255,255,255,0.08);
    box-shadow:0 -5px 25px rgba(0,0,0,0.4);
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    color:#38bdf8;
    animation: glow 3s infinite alternate;
    z-index:1000;
  }

  @keyframes glow{
    from{ text-shadow:0 0 10px #38bdf8; }
    to{ text-shadow:0 0 25px #38bdf8,0 0 40px #38bdf8; }
  }

  .container {
    width: 95%;
    max-width: 750px;
    margin-top: 40px;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 14px;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
    animation: fadeIn 0.9s ease;
  }

  @keyframes fadeIn{
    from{ opacity:0; transform:translateY(20px); }
    to{ opacity:1; transform:translateY(0); }
  }

  .logo{
    display:block;
    margin:0 auto 15px auto;
    max-width:120px;
    filter: drop-shadow(0 0 18px rgba(56,189,248,0.6));
  }

  h1 {
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(90deg,#38bdf8,#0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .samane{
    text-align: center;
    color: #9d9fa0;
    font-size: 19px;
    margin-bottom: 30px;
  }

  .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
  }

  .filter-group {
    position: relative;
    width: 250px;
  }

  input[type="text"] {
    width: 100%;
    padding: 9px 12px;
    border-radius: 8px;
    border: none;
    font-family: tahoma, sans-serif;
    font-size: 14px;
    background:#e2e8f0;
    transition: all 0.25s;
  }

  input[type="text"]:focus{
    outline:none;
    box-shadow:0 0 0 2px #38bdf8;
  }

  .suggestions {
    position: absolute;
    top:110%;
    right:0;
    left:0;
    max-height:200px;
    overflow-y:auto;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(12px);
    border-radius:12px;
    border:1px solid rgba(0,0,0,0.08);
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
    z-index:20;
    display:none;
    text-align:right;
    animation:dropdownFade .25s ease;
  }

  .suggestions div {
    padding:10px 14px;
    cursor:pointer;
    font-size:15px;
    color:#0f172a;
    border-bottom:1px solid rgba(0,0,0,0.06);
    transition:all .18s;
  }

  .suggestions div:last-child{
    border-bottom:none;
  }

  .suggestions div:hover {
    background:linear-gradient(90deg,#38bdf8,#0ea5e9);
    color:black;
    transform:translateX(-4px);
  }

  .buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .full-width-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  button {
    padding: 11px 10px;
    border-radius: 9px;
    border: none;
    background: linear-gradient(135deg,#38bdf8,#0ea5e9);
    color: black;
    font-weight: bold;
    cursor: pointer;
    font-family: tahoma, sans-serif;
    font-size: 13px;
    width: 100%;
    white-space: normal;
    word-break: keep-all;
    transition: all 0.25s;
  }

  button:hover {
    transform: translateY(-3px);
    box-shadow:0 10px 25px rgba(56,189,248,0.4);
  }

  .ticket-btn {
    background: linear-gradient(135deg, #665639, #87653e);
    color: #fffdfd;
    box-shadow: 0 6px 20px rgba(108, 106, 101, 0.35);
  }

  .ticket-btn:hover {
    box-shadow: 0 10px 28px rgba(124, 119, 111, 0.5);
  }
  .ticket-bt {
    background: linear-gradient(135deg, #0f526d, #0b84b3);
    color: #fffdfd;
    box-shadow: 0 6px 20px rgba(108, 106, 101, 0.35);
  }

  .ticket-bt:hover {
    box-shadow: 0 10px 28px rgba(124, 119, 111, 0.5);
  }




  .schedule-btn {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: #38bdf8;
    border: 1px solid #38bdf8;
    font-size: 14px;
    padding: 12px;
  }

  .schedule-btn:hover {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(56,189,248,0.4);
  }

  /* استایل فلش کوچک سمت راست صفحه */
  .scroll-indicator {
    position: fixed;
    bottom: 80px;
    right: 20px;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    animation: bounce 1.5s infinite;
    background: rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(56, 189, 248, 0.5);
    transition: all 0.3s ease;
  }

  .scroll-indicator:hover {
    background: rgba(56, 189, 248, 0.4);
    transform: scale(1.05);
  }

  .scroll-indicator span {
    color: #38bdf8;
    font-size: 10px;
    margin-top: 2px;
  }

  .scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid #38bdf8;
    border-bottom: 2px solid #38bdf8;
    transform: rotate(45deg);
    animation: arrowBounce 1.5s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  @keyframes arrowBounce {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
  }

  .scroll-indicator.hide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }

  @media (max-width: 600px) {
    .filters {
      flex-direction: column;
      align-items: center;
    }

    .filter-group {
      width: 100%;
      max-width: 350px;
    }
    
    .scroll-indicator {
      bottom: 70px;
      right: 10px;
      padding: 4px 10px;
    }
    
    .scroll-arrow {
      width: 14px;
      height: 14px;
    }
    
    .scroll-indicator span {
      font-size: 8px;
    }
  }

  table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-size: 13px;
  }

  th, td {
    border: 1px solid #1e293b;
    padding: 8px 6px;
    text-align: center;
  }

  th {
    background: #38bdf8;
    color: black;
    font-weight: bold;
  }

  tbody tr:hover {
    background: rgba(56, 189, 248, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  tbody tr.clicked-row {
    color: #38bdf8 !important;
    font-weight: bold;
  }

  tbody tr.clicked-row td {
    color: #38bdf8 !important;
    font-weight: bold;
  }

  a {
    color: #22c55e;
    text-decoration: none;
    font-weight: bold;
  }

  body::before{
    content:"";
    position:fixed;
    top:-200px;
    left:-200px;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#38bdf8 0%,transparent 70%);
    opacity:0.15;
    filter:blur(80px);
    animation:moveLight 18s linear infinite;
    z-index:-1;
  }

  body::after{
    content:"";
    position:fixed;
    bottom:-200px;
    right:-200px;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#0ea5e9 0%,transparent 70%);
    opacity:0.12;
    filter:blur(80px);
    animation:moveLight2 22s linear infinite;
    z-index:-1;
  }

  @keyframes moveLight{
    0%{ transform:translate(0,0); }
    50%{ transform:translate(120px,80px); }
    100%{ transform:translate(0,0); }
  }

  @keyframes moveLight2{
    0%{ transform:translate(0,0); }
    50%{ transform:translate(-120px,-80px); }
    100%{ transform:translate(0,0); }
  }

  #visitCounter{
    margin-top:20px;
    background:rgba(0,0,0,0.6);
    color:white;
    padding:8px 14px;
    border-radius:10px;
    font-size:14px;
    display:inline-block;
  }

  .result-stats {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #9ca3af;
    padding: 8px;
  }

  .bottom-buttons-container {
    margin-top: 25px;
    border-top: 1px solid rgba(56, 189, 248, 0.3);
    padding-top: 20px;
  }

  .original-buttons-place {
    margin-bottom: 20px;
  }
