/*Hər Hansı Kodu Götürən.....
 Oğurlayan Peysərdir.........
İmza: By.AL!K / MobKlik.Biz*/


:root {
  --primary: #2caad3;
  --primary-dark: #197a97;
  --accent: #6f40bd;
  --text: #333;
  --bg: #f9f9f9;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --transition: .25s ease;
  --input-bg: #fff;
  --input-border: #d7d7d7;
}

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

body {
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  padding: 10px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

#topRating {
    display: none;
}


.logo {
    text-align: center;
}

.subtitle {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.lbl{
    display:block;
    margin-bottom:5px;
    font-weight:500;
    color:#111;
}


.table-scroll{
    width:100%;
    overflow-x:auto;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
    font-size:12px;
}

.admin-table th,
.admin-table td{
    padding:6px;
    border:1px solid #ccc;
    white-space:nowrap;
}

.footer-area {
    border-top: 1px solid #eee;
}

.footer-card {
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.footer-link {
    text-decoration: none;
    color: #555;
    margin-left: 15px;
    font-size: 14px;
}

.footer-link:hover {
    color: #000;
}

.phone-box{
    display:flex;
    align-items:center;
    border:1px solid #dcdcdc;
    border-radius:6px;
    overflow:hidden;
    width:220px;
    background:#fff;
}

.phone-box span{
    padding:8px 10px;
    background:#f3f3f3;
    font-weight:bold;
    color:#111;
}

.phone-box input{
    border:none;
    padding:8px;
    flex:1;
    outline:none;
    font-size:14px;
}


.balance-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px;
    margin: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid #e6e6e6;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
}

.balance-item:not(:last-child) {
    border-bottom: 1px dashed #ddd;
}

.label {
    color: #555;
}

.value {
    font-weight: bold;
}

.value.red {
    color: #d9534f;
}

.value.green {
    color: #28a745;
}



.alik-logo {
    position: relative;
    display: inline-block;
}

.alik-logo::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -30px;
    width: 35px;
    height: 25px;
    background: url("img/click1.png") no-repeat center/contain;
    transform-origin: 80% 100%;
    animation: santaSoft 6s ease-in-out infinite;
    pointer-events: none;
}


@keyframes santaSoft {
    0%   { transform: rotate(-6deg); }
    50%  { transform: rotate(-2deg); }
    100% { transform: rotate(-6deg); }
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    padding:16px;
}


.menu-card{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-radius:17px;
    padding:17px 14px;
    text-align:center;
    text-decoration:none;
    color:#1e1e1e;
    box-shadow:
        0 12px 30px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.6);
    transition:all .45s cubic-bezier(.4,0,.2,1);
    position:relative;
    overflow:hidden;
}


.menu-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    padding:1.6px;
    background:linear-gradient(
        120deg,
        #00ffd5,
        #00b4ff,
        #9b59b6
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:.45;
    pointer-events:none;
}


.menu-card:hover{
    transform:translateY(-8px) scale(1.015);
    box-shadow:
        0 25px 55px rgba(0,0,0,.18),
        0 0 22px rgba(0,255,213,.25);
}


.menu-card img{
    width:35px;
    height:35px;
    margin-bottom:12px;
    filter:
        drop-shadow(0 8px 14px rgba(0,0,0,.18));
    transition:.4s;
}

.menu-card:hover img{
    transform:scale(1.15) rotate(-4deg);
}


.menu-card h3{
    font-size:14px;
    font-weight:300;
    margin-bottom:4px;
}


.menu-card p{
    font-size:10px;
    color:#666;
    letter-spacing:.2px;
}


.menu-card.exit{
    background:rgba(255,245,245,.85);
}

.menu-card.exit::before{
    background:linear-gradient(
        120deg,
        #ff6b6b,
        #ff8787,
        #ffa8a8
    );
}

.menu-card.exit:hover{
    box-shadow:
        0 25px 55px rgba(255,107,107,.35),
        0 0 25px rgba(255,107,107,.35);
}


.link{
    padding:6px;
    margin:5px 0;
    text-align:left;
}

.box{
    padding:6px;
    margin:5px 0;
}


.inp{
    width:120px;
    height:25px;
    padding:3px 5px;
    margin-bottom:6px;
    font-size:20px;
    box-sizing:border-box;
}


.btn{
    width:110px;
    height:38px;
    font-size:8px;
    cursor:pointer;
}


.stats-box {
    display: flex;
    gap: 14px;
    margin: 18px 0;
    flex-wrap: wrap; /* mobil üçün */
}

.stat-item {
    flex: 1 1 30%; /* responsive üçün */
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16%;
    width: 4px;
    height: 70%;
    border-radius: 4px;
    background: linear-gradient(180deg, #00c97f, #00b4d8);
}

.stat-title {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #00c97f, #00b4d8);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}


.alik-number {
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(
        90deg,
        #00c97f,
        #00b4d8,
        #00c97f
    );
    background-size: 130% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientMove 3s linear infinite;
}



#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(120,120,120,0.6); /* boz rəng */
    font-size: 10px;
    user-select: none;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}



#popupBox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #000;
    padding: 20px;
    z-index: 9999;
    border-radius: 10px;
    border: 4px solid #333;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);

    width: 700px;    
    max-width: 90%;  
    
    text-align: center;
}


#popupOverlay {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

#popupClose {
    position: absolute;
    top:5px;
    right:10px;
    cursor:pointer;
    font-size:20px;
}


.alikem {
    background: #ffffff;
    border: 1px solid #1e2d3d;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    color: #000000;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.alikem b {
    color: #3ee98d;
}

.alikem a {
    color: #55c8ff;
    text-decoration: none;
    font-weight: bold;
}

.alikem a:hover {
    text-decoration: underline;
}



.wa-icon-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:0.25s;
  z-index:9999;
}
.wa-icon-btn img{
  width: 25px;
  height: 25px;
}
.wa-icon-btn:hover{
  transform: scale(1.12);
}


/* Moded by: By.AL!K */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}


img {
  max-width: 100%;
  border-radius: var(--radius);
}

h1, h2, h3, h4, h5 {
  margin-bottom: 6px;
  font-weight: 500;
}


input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,170,211,0.2);
}


textarea {
  min-height: 120px;
  resize: vertical;
}


input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

button,
input[type="button"],
input[type="submit"] {
  background: linear-gradient(135deg, #20B2AA, #4FACFE);
  border: none;
  padding: 10px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(51,102,255,0.3);
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, #254EDB, #20B2AA);
  box-shadow: 0 6px 14px rgba(51,102,255,0.45);
}

button:active,
input[type="button"]:active,
input[type="submit"]:active {
  transform: scale(0.97);
}




.btn-alt {
  background: var(--accent);
}
.btn-alt:hover {
  background: #58319a;
}


.box {
  background: #fff;
  padding: 8px 8px;
  margin: 0;
  border-radius: 0;
  border: 1px solid #ededed;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 14px;
  line-height: 1.7;
  color: #1f1f1f;
  width: 100%;  
  box-sizing: border-box;
  text-align: left;
}


.title {
  background: #26A69A;    
  color: #ffffff;        
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 700;
}


.title a {
  color: #ffffff;   
  text-decoration: none;
  transition: color 0.15s ease;
}
.title a:hover {
  text-decoration: underline;  
  color: #e0e0e0;  
}


.navbar {
  background: var(--primary);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 10px;
}
.navbar a {
  color: #fff;
  padding: 8px 14px;
  display: inline-block;
  border-radius: var(--radius);
}
.navbar a:hover {
  background: rgba(255,255,255,0.15);
}


.list {
  background: #fff;
  padding: 5px;
  border-radius: var(--radius);
  margin-bottom: 5px;
  box-shadow: var(--shadow);
}

.badge {
  background: red;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
}



.center { text-align: center; }
.left   { float: left; }
.right  { float: right; }

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.tab_t {
    background: #f7f7f7;
    border: 1px solid #d0d0d0;
    padding: 9px;
    font-size: 7px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    color: #333;
}

.tab_t:hover {
    background: #eeeeee;
    border-color: #b5b5b5;
}

.tab_r {
    background: #ffffff;
    border: 1px solid #8bb3e8;
    padding: 9px;
    font-size: 7px;
    border-radius: 4px;
    color: #444;
    font-weight: normal;
}


.header {
  background: #20B2AA;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 200;
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.icon-bar {
  display: flex;
  justify-content: space-around;
  margin: 12px 0;
  padding: 12px 0;
}

.icon-item {
  text-align: center;
}

.icon-item img {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.icon-item img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-item span {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: var(--text);
}


.footer {
  margin-top: 20px;
  padding: 18px;
  background: #fff;
  text-align: center;
  color: #666;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow);
}

.footer a {
  color: var(--primary);
  font-weight: 600;
}