body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(to right, #ff5151, #5b002c);
    color: #222;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

header {
    text-align: center;
    border-bottom: 3px solid #f24ca5;
    padding-bottom: 10px;
    position: relative;
}

/* --- Top-left list hamburger --- */
.list-btn {
    position: absolute;
    /* sits at top-left inside header */
    top: 24px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #ffffff;
    color: #e21a86;
    /* pink text/icon */
    border: 2px solid #ff79b4;
    /* pink border like screenshot */
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06) inset, 0 2px 6px rgba(0, 0, 0, .06);
    line-height: 1;
    transition: background .2s ease, transform .06s ease, box-shadow .2s ease;
}

.list-btn:hover {
    background: #ffe7f1;
}

.list-btn:active {
    transform: translateY(1px);
}

.list-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 121, 180, .35);
}

.list-icon {
    display: inline-flex;
}

.list-icon svg {
    display: block;
    color: #ff2a7a;
}

.list-text {
    display: inline-block;
}

/* Blinking animation for LIST button */
.list-icon svg,
.list-text {
  animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.08);
  }
}


/* Overlay */
.drawer-backdrop{
    position:fixed; inset:0;
    background:rgba(0,0,0,.82);
    opacity:0; pointer-events:none;
    transition:opacity .22s ease;
    z-index:70;
  }
  
  /* Drawer container */
  .game-drawer{
    position:fixed; top:0; left:0; bottom:0;
    width:250px;               /* screenshot width */
    background:#2a0030;        /* deep purple */
    box-shadow:2px 0 18px rgba(0,0,0,.35);
    transform:translateX(-105%);
    transition:transform .25s ease;
    z-index:80;
    color:#fff;
    display:flex; flex-direction:column;
  }
  
  /* Open state */
  .drawer-open .drawer-backdrop{ opacity:1; pointer-events:auto; }
  .drawer-open .game-drawer{ transform:translateX(0); }
  
  /* Header */
  .drawer-head{
    position:relative;
    padding:16px 18px;
    background:#3a003d;       /* slightly lighter header */
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .drawer-close{
    position:absolute; left:14px; top:13px;
    width:22px; height:22px; line-height:18px;
    border:0; border-radius:3px;
    background:transparent; color:#ff5c7f; /* reddish X */
    font-size:24px; font-weight:700; cursor:pointer;
  }
  .drawer-title{
    margin-left:24px;          /* space so title doesn’t collide with X */
    font-weight:700;
    font-size:20px;
    letter-spacing:.2px;
  }
  
  /* List */
  .drawer-list{ padding:8px 0; overflow:auto; }
  .drawer-item{
    display:flex; align-items:center; gap:10px;
    padding:10px 14px;
    text-decoration:none;
    color:#f4e9f6;
    font-weight:600;
  }
  .drawer-item:hover{ background:rgba(255,255,255,.06); }
  .drawer-icon{
    width:28px; height:28px; border-radius:6px; object-fit:cover;
    box-shadow:0 1px 3px rgba(0,0,0,.25);
  }
  .drawer-label{ font-size:14px; }
  
  /* Prevent scroll when open (optional) */
  body.no-scroll{ overflow:hidden; }
  

header h2 {
    color: #ff008c;
    font-size: 20px;
    margin-bottom: 10px;
}

.logo {
    width: 180px;
    margin: 10px 0;
}

.social-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.social-btns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-btns a.telegram {
    background-color: #188ad6;
}

.social-btns a.telegram:hover {
    background-color: #0f6fb6;
}

.social-btns a.whatsapp {
    background-color: #25d366;
}

.social-btns a.whatsapp:hover {
    background-color: #1fa655;
}

.social-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}


.download-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.download-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px 25px;
    flex: 1 1 350px;
    max-width: 400px;
}

.download-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.icon-logo {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.download-box p {
    color: #555;
    font-size: 14px;
    margin: 10px 0 18px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn.green {
    background-color: #1fad27;
}

.btn.green:hover {
    background-color: #14831b;
}

.btn.red {
    background-color: #e3363b;
}

.btn.red:hover {
    background-color: #c21e25;
}


.demo-section {
    text-align: center;
    margin-top: 25px;
    background: #ffe6f2;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.demo-section h4 {
    margin: 0 0 5px;
}

.content {
    margin-top: 30px;
    line-height: 1.6;
}

.content h3 {
    color: #c10067;
    margin-top: 25px;
}

.content a {
    color: #d6007a;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
}



.site-footer {
    display: flex;
    justify-content: center;
    background: transparent;
    margin: 25px 0 50px;
}

.footer-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 20px;
    width: 80%;
    max-width: 900px;
}

.footer-box p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #222;
}

.footer-seal {
    height: 40px;
    width: auto;
}