
 *{
 margin:0;
 padding:0;
 box-sizing:border-box;
 }

 :root{

 --primary:#3f7f52;
 --primary-dark:#2f6240;
 --primary-light:#eef5f0;

 --gold:#d8b45a;

 --background:#f4f6f4;

 --text:#181818;
 --text-light:#6b7280;

 --border:#e7ece8;

 --shadow:
 0 14px 35px rgba(0,0,0,0.06);
 }

 body{

 font-family:'Inter', sans-serif;

 background:var(--background);

 color:var(--text);

 width:100%;
 height:100vh;

 overflow:hidden;
 }

 .app{

 width:100%;
 height:100vh;

 display:flex;
 flex-direction:column;
 }

 /* HEADER */

 .top-bar{

 position:fixed;

 top:0;
 left:0;

 width:100%;
 height:84px;

 background:rgba(255,255,255,0.92);

 backdrop-filter:blur(14px);

 border-bottom:1px solid var(--border);

 display:flex;
 align-items:center;
 justify-content:space-between;

 padding:0 18px;

 z-index:1000;
 }

 .brand{
 display:flex;
 flex-direction:column;
 }

 .logo{
    font-size:22px;
    font-weight:900;
    color:var(--primary);
    letter-spacing:1px;
}

 .tagline{

 font-size:11px;

 color:var(--text-light);

 margin-top:4px;
 }

 .login-btn{

    display:flex;
    align-items:center;
    gap:10px;

    height:48px;

    padding:0 18px;

    background:var(--primary);

    color:white;

    border:none;

    border-radius:12px;

    font-size:16px;
    font-weight:800;

    cursor:pointer;

    box-shadow:
        0 8px 20px rgba(63,127,82,0.25);

    transition:.25s ease;
    text-decoration:none;
}

.login-btn:hover{

    transform:translateY(-1px);

    box-shadow:
        0 12px 28px rgba(63,127,82,0.35);
}

.login-icon{

    width:30px;
    height:30px;

    border-radius:8px;

    background:rgba(255,255,255,0.18);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
}

 /* CONTENT */

 .content{

 flex:1;

 overflow-y:auto;

 padding:
 106px
 16px
 190px
 16px;
 }

 .tab-content{
 display:none;
 }

 .tab-content.active{
 display:block;
 }

 /* HERO */

 .hero{

 background:white;

 border-radius:18px;

 padding:22px;

 margin-bottom:22px;

 border:1px solid var(--border);

 box-shadow:
 0 16px 40px rgba(0,0,0,0.05);
 }

 .generator-title{

 font-size:24px;
 font-weight:800;

 margin-bottom:18px;
 }

 .days-wrapper{

 display:grid;

 grid-template-columns:
 repeat(7,1fr);

 gap:8px;

 margin-bottom:18px;
 }

 .day-item{

 background:#fafbfa;

 border:1px solid var(--border);

 border-radius:12px;

 padding:10px 4px;

 display:flex;
 flex-direction:column;
 align-items:center;
 justify-content:center;

 gap:6px;
 }

 .day-item input{

 width:15px;
 height:15px;

 accent-color:var(--primary);
 }

 .day-item span{

 font-size:11px;
 font-weight:700;
 }

 .generator-select,
 .odd-input{

 width:100%;

 height:56px;

 border:1px solid var(--border);

 border-radius:14px;

 padding:0 16px;

 background:#fafbfa;

 font-size:14px;
 font-weight:600;

 margin-bottom:16px;

 outline:none;
 }

 .generate-btn{

 width:100%;

 height:56px;

 border:none;

 background:var(--primary);

 color:white;

 border-radius:14px;

 font-size:15px;
 font-weight:800;

 display:flex;
 align-items:center;
 justify-content:center;

 gap:10px;

 box-shadow:
 0 10px 24px rgba(63,127,82,0.18);
 }

 /* RESULTS TOGGLE */

 .results-toggle{

 width:100%;

 height:58px;

 border:none;

 background:white;

 border-radius:16px;

 padding:0 20px;

 display:flex;
 align-items:center;
 justify-content:space-between;

 margin-bottom:18px;

 border:1px solid var(--border);

 box-shadow:var(--shadow);
 }

 .results-left{

 display:flex;
 align-items:center;

 gap:12px;
 }

 .results-left i{

 color:var(--primary);

 font-size:18px;
 }

 .results-left span{

 font-size:16px;
 font-weight:800;
 }

 .results-arrow{
 transition:.3s;
 }

 .results-arrow.rotate{
 transform:rotate(180deg);
 }

 /* HISTORY */

 .history-box{

 background:white;

 border-radius:18px;

 border:1px solid var(--border);

 box-shadow:var(--shadow);

 overflow:hidden;

 max-height:0;

 opacity:0;

 padding:0 18px;

 transition:
 max-height .4s ease,
 opacity .3s ease,
 padding .3s ease;
 }

 .history-box.active{

 max-height:600px;

 opacity:1;

 padding:18px;

 margin-bottom:22px;
 }

 .history-header{

 display:flex;
 justify-content:flex-end;

 margin-bottom:12px;
 }

 .view-more{

 font-size:12px;
 font-weight:700;

 color:var(--primary-dark);
 }

 .history-item{

 display:flex;
 justify-content:space-between;
 align-items:center;

 padding:15px 0;

 border-bottom:1px solid #efefef;
 }

 .history-item:last-child{
 border-bottom:none;
 }

 .history-name{

 font-size:14px;
 font-weight:700;

 margin-bottom:4px;
 }

 .history-odd{

 font-size:12px;

 color:var(--text-light);
 }

 .history-status{

 font-size:13px;
 font-weight:800;
 }

 .won{
 color:#22a559;
 }

 .lost{
 color:#ef4444;
 }

 /* TICKETS */

 .ticket-card{

 background:white;

 border-radius:18px;

 padding:22px;

 margin-bottom:22px;

 border:1px solid var(--border);

 box-shadow:var(--shadow);
 }

 .ticket-header{

 display:flex;
 justify-content:space-between;
 align-items:flex-start;

 margin-bottom:16px;
 }

 .ticket-left{
 flex:1;
 }

 .ticket-type{

 display:inline-flex;

 padding:7px 14px;

 border-radius:16px;

 font-size:11px;
 font-weight:800;

 letter-spacing:.7px;

 margin-bottom:12px;
 }

 .ticket-type.free{

 background:#edf7ef;

 color:#3f7f52;
 }

 .ticket-type.vip{

 background:#1f1f1f;

 color:var(--gold);

 border:1px solid rgba(216,180,90,0.25);
 }

 .ticket-name{

 font-size:22px;
 font-weight:800;

 margin-bottom:6px;
 }

 .ticket-sub{

 font-size:13px;

 color:var(--text-light);
 }

 .odds-box{

 min-width:90px;

 background:#fafbfa;

 border:1px solid var(--border);

 border-radius:12px;

 padding:14px;

 text-align:center;
 }

 .odds-label{

 font-size:11px;
 font-weight:700;

 color:var(--text-light);

 margin-bottom:5px;
 }

 .odds-value{

 font-size:20px;
 font-weight:800;
 }

 /* MATCH COUNT */

 .ticket-meta{

 margin-bottom:18px;
 }

 .match-count{

 display:flex;
 align-items:center;

 gap:10px;
 }

 .match-icon{

 width:42px;
 height:42px;

 border-radius:12px;

 background:var(--primary-light);

 display:flex;
 align-items:center;
 justify-content:center;

 color:var(--primary);
 }

 .match-number{

 font-size:17px;
 font-weight:800;
 }

 .match-text{

 font-size:12px;

 color:var(--text-light);
 }

 /* LOADER */

 .ticket-loader{

 display:none;

 align-items:center;
 justify-content:center;

 padding:28px 0;
 }

 .ticket-loader.active{
 display:flex;
 }

 .loader-circle{

 width:42px;
 height:42px;

 border-radius:50%;

 border:4px solid #dce8df;
 border-top:4px solid var(--primary);

 animation:spin .8s linear infinite;
 }

 @keyframes spin{

 from{
 transform:rotate(0deg);
 }

 to{
 transform:rotate(360deg);
 }
 }

 /* DETAILS */

 .ticket-details{

 max-height:0;

 overflow:hidden;

 opacity:0;

 transition:
 max-height .45s ease,
 opacity .35s ease;
 }

 .ticket-details.active{

 max-height:1600px;

 opacity:1;

 margin-top:12px;
 }

 /* VIP LOCK */

 .vip-lock{

 background:#1f1f1f;

 color:var(--gold);

 border-radius:16px;

 padding:18px;

 margin-bottom:18px;

 display:flex;
 align-items:center;

 gap:16px;
 }

 .vip-lock-icon{

 width:58px;
 height:58px;

 border-radius:14px;

 background:rgba(216,180,90,0.12);

 display:flex;
 align-items:center;
 justify-content:center;

 font-size:22px;
 }

 .vip-lock-content{
 flex:1;
 }

 .vip-lock-title{

 font-size:16px;
 font-weight:800;

 margin-bottom:6px;
 }

 .vip-lock-sub{

 font-size:12px;

 line-height:1.5;

 opacity:.82;
 }

 .unlock-btn{

 border:none;

 background:var(--gold);

 color:#111;

 padding:12px 16px;

 border-radius:10px;

 font-size:12px;
 font-weight:800;

 margin-top:12px;
 }

 /* MATCHES */

 .ticket-matches{

 background:#fafbfa;

 border-radius:14px;

 padding:4px 16px;

 margin-bottom:20px;

 border:1px solid #f0f0f0;
 }

 .ticket-match-item{

 display:flex;
 justify-content:space-between;
 align-items:center;

 padding:16px 0;

 border-bottom:1px solid #ececec;
 }

 .ticket-match-item:last-child{
 border-bottom:none;
 }

 .teams{

 font-size:14px;
 font-weight:700;
 }

 .pick{

 background:white;

 color:var(--primary-dark);

 padding:8px 13px;

 border-radius:10px;

 font-size:12px;
 font-weight:700;

 border:1px solid #e9ece9;
 }

 .vip-blur{

 filter:blur(5px);

 user-select:none;

 pointer-events:none;
 }

 /* BETTING CODES */

 .codes-wrapper{
 margin-bottom:20px;
 }

 .codes-title{

 font-size:15px;
 font-weight:800;

 margin-bottom:14px;
 }

 .code-card{

 background:#fafbfa;

 border:1px solid #ececec;

 border-radius:12px;

 padding:14px;

 display:flex;
 justify-content:space-between;
 align-items:center;

 margin-bottom:12px;
 }

 .company-name{

 font-size:14px;
 font-weight:800;

 margin-bottom:4px;
 }

 .bet-code{

 font-size:13px;

 color:var(--text-light);
 }

 .copy-section{

 display:flex;
 align-items:center;

 gap:10px;
 }

 .copy-text{

 font-size:13px;
 font-weight:700;

 color:var(--primary-dark);
 }

 .copy-btn{

 border:none;

 background:white;

 width:44px;
 height:44px;

 border-radius:12px;

 color:var(--primary);

 border:1px solid #ececec;
 }

 /* BUTTON */

 .ticket-btn{

    width:100%;

    height:56px;

    border:2px solid #dbe5de;

    background:#f7f9f7;

    color:#355f42;

    border-radius:10px;

    font-size:16px;
    font-weight:800;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    transition:.25s ease;
}

.ticket-btn:hover{

    background:#eef4ef;
}

.ticket-btn.close{

    background:#1f2937;

    border-color:#1f2937;

    color:white;
}

 .ticket-btn.close{
 background:#1f2937;
 }

 /* MEMBERSHIPS */

 .section-title{

 font-size:22px;
 font-weight:800;

 margin-bottom:16px;
 }

 .subscription-box{

 background:white;

 border-radius:20px;

 padding:24px;

 margin-bottom:18px;

 border:1px solid var(--border);

 box-shadow:var(--shadow);
 }

 .plan{

 font-size:22px;
 font-weight:800;

 margin-bottom:10px;
 }

 .price{

 font-size:24px;
 font-weight:800;

 color:var(--primary);

 margin-bottom:18px;
 }

 .benefit{

 display:flex;
 align-items:center;

 gap:10px;

 margin-bottom:12px;

 font-size:14px;

 color:var(--text-light);
 }

 .benefit i{
 color:var(--primary);
 }

 .sub-btn{

 width:100%;

 border:none;

 background:var(--primary-light);

 color:var(--primary-dark);

 padding:15px;

 border-radius:14px;

 font-size:15px;
 font-weight:700;
 }
.sub-btn.weekly{

    width:100%;

    height:54px;

    border:2px solid rgba(63,127,82,0.18);

    background:#f8faf8;

    color:var(--primary-dark);

    border-radius:12px;

    font-size:15px;
    font-weight:800;

    transition:.25s ease;
}

.sub-btn.weekly:hover{

    background:#eef5f0;
}
.sub-btn.monthly{

    width:100%;

    height:56px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:12px;

    font-size:15px;
    font-weight:800;

    box-shadow:
      0 10px 24px rgba(63,127,82,0.25);

    transition:.25s ease;
}

.sub-btn.monthly:hover{

    transform:translateY(-1px);

    box-shadow:
      0 14px 30px rgba(63,127,82,0.35);
}
.recommended-badge{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:32px;

    padding:0 14px;

    border-radius:10px;

    background:linear-gradient(
        180deg,
        #fff6db,
        #f5e2a3
    );

    border:1px solid rgba(184,145,40,0.25);

    color:#8a6513;

    font-size:11px;
    font-weight:800;

    letter-spacing:.8px;

    text-transform:uppercase;

    box-shadow:
        0 6px 14px rgba(184,145,40,0.15);

    margin-bottom:14px;
}
.recommended-badge i{

    margin-right:8px;

    font-size:10px;
}
.subscription-box.featured{

    position:relative;

    border:2px solid rgba(63,127,82,0.18);

    box-shadow:
        0 16px 35px rgba(63,127,82,0.08);
}

.subscription-box.featured .recommended-badge{

    position:absolute;

    top:18px;
    right:18px;

    margin:0;
}

 /* CONTACT */

 .contact-box{

    background:white;

    border-radius:16px;

    padding:24px;

    border:1px solid var(--border);

    box-shadow:
      0 12px 30px rgba(0,0,0,0.05);
}

 .social-item{

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#fafbfa;

    border:1px solid var(--border);

    border-radius:14px;

    padding:16px;

    margin-bottom:14px;

    transition:.25s ease;
}

.social-item:hover{

    background:white;

    transform:translateY(-1px);

    box-shadow:
      0 8px 18px rgba(0,0,0,0.05);
}

 .social-left{

 display:flex;
 align-items:center;

 gap:14px;
 }

 .social-icon{

 width:50px;
 height:50px;

 border-radius:14px;

 display:flex;
 align-items:center;
 justify-content:center;

 color:white;
 }

 .telegram{
 background:#229ED9;
 }

 .whatsapp{
 background:#25D366;
 }

 .social-name{

 font-size:15px;
 font-weight:800;
 }

 .social-handle{

 font-size:13px;

 color:var(--text-light);
 }
 /* NAVIGATION */
/* NAVIGATION */

.bottom-nav{

    position:fixed;

    left:50%;
    bottom:10px;

    transform:translateX(-50%);

    width:calc(100% - 18px);
    max-width:720px;

    height:86px;

    background:rgba(63,127,82,0.97);

    backdrop-filter:blur(20px);

    border-radius:16px;

    display:flex;

    padding:6px;

    border:2px solid rgba(255,255,255,0.35);

    overflow:hidden;

    box-shadow:
      0 35px 70px rgba(0,0,0,0.30),
      0 12px 30px rgba(0,0,0,0.18);
}

.bottom-nav::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:1px;

    background:rgba(255,255,255,0.45);
}

.nav-btn{

    flex:1;

    border:none;

    background:transparent;

    border-radius:18px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:7px;

    color:rgba(255,255,255,0.78);

    transition:all .25s ease;
}

.nav-btn i{

    font-size:19px;

    transition:.25s;
}

.nav-btn span{

    font-size:11px;
    font-weight:800;

    letter-spacing:.4px;
}

.nav-btn:hover{

    color:white;
}

.nav-btn.active{

    background:rgba(255,255,255,0.16);

    color:white;

    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.15);
}

.nav-btn.active i{

    transform:translateY(-1px);
}
 
 

 @media(min-width:768px){

 .content{
 width:720px;
 margin:auto;
 }

 .top-bar{
 padding:0 40px;
 }
 }
.user-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.sub-status{
  height:46px;
  padding:0 14px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.sub-status.active{
  background:#ecfdf5;
  color:#15803d;
  border:1px solid #bbf7d0;
}

.sub-status.inactive{
  background:#fef2f2;
  color:#dc2626;
  border:1px solid #fecaca;
}

.logout-btn{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#dc2626;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:18px;
  box-shadow:0 10px 24px rgba(220,38,38,0.25);
  transition:.25s ease;
}

.logout-btn:hover{
  background:#b91c1c;
  transform:translateY(-1px);
}
.vip-pay-btn{
    height:46px;
    padding:0 16px;

    display:flex;
    align-items:center;
    gap:8px;

    text-decoration:none;

    background:linear-gradient(
        180deg,
        #fff6db,
        #f5e2a3
    );

    color:#8a6513;

    border:2px solid rgba(184,145,40,0.25);

    border-radius:14px;

    font-size:13px;
    font-weight:800;

    box-shadow:
        0 8px 20px rgba(184,145,40,0.15);

    transition:.25s ease;
}

.vip-pay-btn:hover{
    transform:translateY(-1px);
}
.vip-pay-btn{
    border:none;
    cursor:pointer;
}
.page-header{
    margin-bottom:18px;
}

.page-title{
    font-size:28px;
    font-weight:800;
    color:var(--text);
    margin-bottom:10px;
}

.page-subtitle{
    font-size:14px;
    color:var(--text-light);
}
.ticket-login-required{
    background:#ffffff;
    border:2px solid var(--border);
    border-radius:16px;
    padding:22px;
    margin-bottom:18px;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,0.04);
}

.ticket-login-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:#eef5f0;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 14px auto;
    font-size:22px;
}

.ticket-login-title{
    font-size:18px;
    font-weight:800;
    margin-bottom:8px;
    color:var(--text);
}

.ticket-login-text{
    font-size:14px;
    line-height:1.6;
    color:var(--text-light);
    margin-bottom:18px;
}

.ticket-login-btn{
    width:100%;
    height:48px;
    border-radius:12px;
    background:var(--primary);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}

.ticket-login-btn:hover,
.ticket-login-btn:visited{
    color:white;
    text-decoration:none;
}
.vip-ticket-card{
    border:1.5px solid rgba(216,180,90,0.35);
    background:#fffdf8;

    box-shadow:
        0 8px 18px rgba(216,180,90,0.08),
        0 6px 16px rgba(0,0,0,0.04);
}
.vip-ticket-card::before{
    content:"PREMIUM";
    position:absolute;
    top:16px;
    right:16px;
    background:linear-gradient(180deg,#fff6db,#f5e2a3);
    color:#8a6513;
    border:2px solid rgba(184,145,40,0.25);
    border-radius:10px;
    padding:6px 10px;
    font-size:10px;
    font-weight:900;
    letter-spacing:.8px;
}

.vip-ticket-card .ticket-name{
    color:#3b2f12;
}

.vip-ticket-card .odds-box{
    background:#fff6db;
    border-color:rgba(216,180,90,0.35);
}

.vip-ticket-card .odds-value{
    color:#8a6513;
}

.vip-ticket-card .ticket-btn{
    background:#1f1f1f;
    color:var(--gold);
    border-color:rgba(216,180,90,0.35);
}

.vip-ticket-card .ticket-btn:hover{
    background:#111;
}
.premium-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:6px 12px;

    border-radius:10px;

    background:#fff6db;

    border:2px solid rgba(184,145,40,0.25);

    color:#8a6513;

    font-size:11px;
    font-weight:800;

    margin-bottom:10px;
}

.premium-badge i{
    font-size:10px;
}
.contact-link{
    text-decoration:none;
    color:inherit;
}

.contact-link:visited,
.contact-link:hover,
.contact-link:focus{
    text-decoration:none;
    color:inherit;
}

.contact-box{
    background:white;
    border-radius:18px;
    padding:18px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.social-item{
    min-height:78px;
}

.social-name{
    font-size:15px;
    font-weight:800;
    color:var(--text);
}

.social-handle{
    font-size:13px;
    color:var(--text-light);
    margin-top:4px;
}

.contact-note{
    margin-top:18px;
    padding:16px;
    border-radius:14px;
    background:#f8faf8;
    border:1px solid var(--border);
    font-size:13px;
    line-height:1.6;
    color:var(--text-light);
}
.tiktok{
    background:#000000;
}

.youtube{
    background:#ff0000;
}
.generator-games-box{
    margin-top:4px;
}

.generator-summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:16px;
}

.generator-table{
    border:2px solid var(--border);
    border-radius:16px;
    overflow:hidden;
    background:#fafbfa;
}

.generator-table-head{
    display:grid;
    grid-template-columns:1fr 110px;
    gap:10px;
    padding:14px;
    background:#eef5f0;
    color:var(--primary-dark);
    font-size:13px;
    font-weight:900;
}

.generator-row{
    display:grid;
    grid-template-columns:1fr 110px;
    gap:10px;
    padding:14px;
    border-bottom:2px solid #e7ece8;
    align-items:center;
}

.generator-row:last-child{
    border-bottom:none;
}

.generator-match{
    font-size:14px;
    font-weight:800;
}

.generator-tip{
    background:white;
    border:2px solid #e7ece8;
    border-radius:10px;
    padding:8px 10px;
    font-size:12px;
    font-weight:800;
    color:var(--primary-dark);
    text-align:center;
}

.generator-vip-lock{
    margin-top:16px;
    background:#fff6db;
    border:1px solid rgba(184,145,40,0.25);
    border-radius:16px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#8a6513;
    font-size:13px;
    line-height:1.5;
}

.generator-vip-lock i{
    font-size:22px;
}

.generator-vip-lock button{
    margin-left:auto;
    border:none;
    background:#8a6513;
    color:white;
    padding:10px 12px;
    border-radius:10px;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}

.generator-warning{
    margin-top:16px;
    background:#fef2f2;
    color:#b91c1c;
    border:1px solid #fecaca;
    border-radius:14px;
    padding:14px;
    font-size:13px;
    font-weight:800;
}
.generator-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(8px);
    z-index:3000;
    display:none;
    align-items:flex-start;
    justify-content:center;
    padding:100px 10px 20px 14px;
}

.generator-modal.active{
    display:flex;
}

.generator-modal-card{
    width:100%;
    max-width:720px;
    max-height:80vh;
    overflow-y:auto;
    background:white;
    border-radius:22px;
    padding:20px;
    box-shadow:0 18px 50px rgba(0,0,0,0.25);
    animation:dropDown .25s ease;
}

@keyframes dropDown{
    from{
        transform:translateY(-35px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }
}
.generator-modal-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
    padding-bottom:14px;
    border-bottom:1px solid var(--border);
}

.generator-modal-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:900;
    color:var(--text);
}

.ai-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 0 6px rgba(63,127,82,0.12);
}

.generator-thinking{
    display:flex;
    align-items:center;
    gap:10px;
    background:#f8faf8;
    border:1px solid var(--border);
    color:var(--primary-dark);
    padding:14px;
    border-radius:14px;
    font-size:13px;
    font-weight:800;
    margin-bottom:14px;
}

.generator-thinking.done{
    background:#ecfdf5;
    color:#15803d;
    border-color:#bbf7d0;
}

.thinking-loader{
    width:15px;
    height:15px;
    border-radius:50%;
    border:3px solid #dce8df;
    border-top:3px solid var(--primary);
    animation:spin .8s linear infinite;
}

.generator-mini-summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px;
    font-size:13px;
    font-weight:800;
    color:var(--text-light);
}

.generator-mini-summary strong{
    font-size:20px;
    color:var(--primary-dark);
}

.typing-in{
    animation:typingIn .35s ease forwards;
}

@keyframes typingIn{
    from{
        opacity:0;
        transform:translateY(8px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


.generator-thinking.done ~ .generator-table .generator-match::after,
.generator-thinking.done ~ .generator-table .generator-tip::after{
    display:none;
}

.typing-active{
    position:relative;
}

.typing-active::after{
    content:"";
    display:inline-block;
    width:2px;
    height:15px;
    background:var(--primary);
    margin-left:3px;
    animation:cursorBlink .8s infinite;
    vertical-align:-2px;
}

@keyframes cursorBlink{
    0%,50%{
        opacity:1;
    }

    51%,100%{
        opacity:0;
    }
}
.generator-modal-close{
    display:flex;
    align-items:center;
    gap:8px;

    height:42px;

    padding:0 14px;

    border:none;

    border-radius:999px;

    background:#fef2f2;

    color:#dc2626;

    cursor:pointer;

    transition:.2s ease;

    font-size:13px;
    font-weight:700;
}

.generator-modal-close:hover{
    background:#eef2ef;
    color:#111827;
    transform:translateY(-1px);
}

.generator-modal-close i{
    font-size:14px;
}
.vip-lock-show{
    animation:vipReveal .4s ease forwards;
}

@keyframes vipReveal{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ==========================
   ANDROID APP BANNER
========================== */

.android-app-banner{

    display:none;

    width:100%;

    background:#ffffff;

    border-bottom:1px solid var(--border);

    padding:12px 18px;

    align-items:center;
    justify-content:space-between;

    gap:14px;

    box-shadow:
        0 6px 18px rgba(0,0,0,.06);
}

.app-banner-content{

    display:flex;
    align-items:center;

    gap:12px;
}

.app-banner-logo{

    width:46px;
    height:46px;

    border-radius:12px;

    background:var(--primary);

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
    font-weight:900;
}

.app-banner-text{

    display:flex;
    flex-direction:column;
}

.app-banner-text strong{

    font-size:15px;
    font-weight:800;
}

.app-banner-text span{

    font-size:12px;

    color:var(--text-light);
}

.app-banner-actions{

    display:flex;
    align-items:center;

    gap:10px;
}

.app-download-btn{

    height:42px;

    padding:0 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--primary);

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-size:13px;
    font-weight:800;

    transition:.25s;
}

.app-download-btn:hover{

    background:var(--primary-dark);
}

.app-close-btn{

    width:38px;
    height:38px;

    border:none;

    border-radius:10px;

    background:#f3f4f6;

    cursor:pointer;

    font-size:20px;
}

@media(max-width:700px){

    .android-app-banner{

        flex-direction:column;
        align-items:flex-start;
    }

    .app-banner-actions{

        width:100%;
    }

    .app-download-btn{

        flex:1;
    }
}
/* ANDROID POPUP */

.android-popup{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(6px);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:5000;

    padding:20px;
}

.android-popup-card{

    width:100%;
    max-width:420px;

    background:white;

    border-radius:22px;

    padding:28px;

    text-align:center;

    position:relative;

    animation:popupShow .25s ease;
}

@keyframes popupShow{

    from{
        transform:scale(.92);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}

.popup-close{

    position:absolute;

    top:14px;
    right:14px;

    width:36px;
    height:36px;

    border:none;

    border-radius:50%;

    background:#f3f4f6;

    font-size:22px;

    cursor:pointer;
}

.popup-logo{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:22px;

    background:var(--primary);

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    font-weight:900;

    margin-bottom:18px;
}

.android-popup-card h2{

    font-size:26px;
    margin-bottom:12px;
}

.android-popup-card p{

    color:var(--text-light);

    line-height:1.6;

    margin-bottom:24px;
}

.popup-download-btn{

    width:100%;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#16a34a;

    color:white;

    text-decoration:none;

    border-radius:14px;

    font-size:16px;
    font-weight:800;
}

.popup-later-btn{

    width:100%;
    height:52px;

    margin-top:12px;

    border:none;

    background:#f3f4f6;

    border-radius:14px;

    font-size:15px;
    font-weight:700;

    cursor:pointer;
}