:root{
  --wm-bg:#0f1117;
  --wm-bg2:#161a22;
  --wm-card:#1b2130;
  --wm-card2:#232b3b;

  --wm-border:#2f3748;

  --wm-text:#ffffff;
  --wm-text2:#9ea9c9;

  --wm-primary:#ff004c;
  --wm-primary2:#ff3366;

  --wm-success:#00c896;
  --wm-warning:#ffb020;
  --wm-danger:#ff4d6d;

  --wm-radius:18px;
  --wm-shadow:0 10px 30px rgba(0,0,0,.35);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  background:var(--wm-bg);
  color:var(--wm-text);
  font-family:'Inter',sans-serif;
  font-size:14px;
  overflow-x:hidden;
}

a{
  text-decoration:none!important;
}

button,
input,
textarea,
select{
  outline:none!important;
  box-shadow:none!important;
}

/* Scroll */

::-webkit-scrollbar{
  width:8px;
  height:8px;
}

::-webkit-scrollbar-track{
  background:#12151c;
}

::-webkit-scrollbar-thumb{
  background:var(--wm-primary);
  border-radius:20px;
}

/* Layout */

.wm-layout{
  min-height:100vh;
  padding-left:280px;
  transition:.3s ease;
}

.wm-sidebar{
  width:280px;
  height:100vh;
  background:rgba(18,22,31,.95);
  border-right:1px solid rgba(255,255,255,.04);
  position:fixed;
  left:0;
  top:0;
  z-index:999;
  padding:24px;
  overflow-y:auto;
  backdrop-filter:blur(20px);
  transition:.3s ease;
}

.wm-sidebar::-webkit-scrollbar{
  width:4px;
}

.wm-sidebar-logo{
  margin-bottom:35px;
}

.wm-sidebar-logo a{
  display:flex;
  align-items:center;
  color:#fff;
  font-size:28px;
  font-weight:800;
  letter-spacing:-1px;
}

.wm-sidebar-logo span span{
  color:var(--wm-primary);
}

.wm-sidebar-logo img{
  max-height:45px;
}

.wm-user-card{
  background:linear-gradient(
    145deg,
    rgba(255,0,76,.18),
    rgba(255,255,255,.02)
  );

  border:1px solid rgba(255,255,255,.04);

  border-radius:20px;

  padding:18px;

  display:flex;
  align-items:center;
  gap:14px;

  margin-bottom:30px;
}

.wm-user-avatar{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(
    145deg,
    var(--wm-primary),
    #ff6b81
  );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;
}

.wm-user-card strong{
  display:block;
  font-size:15px;
}

.wm-user-card small{
  color:var(--wm-text2);
}

.wm-menu{
  list-style:none;
}

.wm-menu li{
  margin-bottom:8px;
}

.wm-link{
  height:54px;

  display:flex;
  align-items:center;

  padding:0 18px;

  border-radius:16px;

  color:var(--wm-text2);

  transition:.25s ease;
}

.wm-link i{
  width:22px;
  margin-right:14px;
  font-size:20px;
}

.wm-link:hover{
  background:rgba(255,255,255,.04);
  color:#fff;
}

.wm-link.active{
  background:linear-gradient(
    145deg,
    var(--wm-primary),
    var(--wm-primary2)
  );

  color:#fff;

  box-shadow:
  0 10px 25px rgba(255,0,76,.25);
}

/* Topbar */

.wm-topbar{
  height:85px;

  padding:0 35px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-bottom:1px solid rgba(255,255,255,.04);

  background:rgba(15,17,23,.8);

  backdrop-filter:blur(20px);

  position:sticky;
  top:0;
  z-index:99;
}

.wm-topbar-title strong{
  display:block;
  font-size:18px;
}

.wm-topbar-title span{
  color:var(--wm-text2);
  font-size:13px;
}

.wm-topbar-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.wm-balance{
  height:46px;

  padding:0 18px;

  display:flex;
  align-items:center;

  border-radius:14px;

  background:rgba(255,255,255,.04);

  color:#fff;

  font-weight:600;
}

.wm-balance i{
  margin-right:10px;
}

.wm-logout{
  width:46px;
  height:46px;

  border-radius:14px;

  background:rgba(255,255,255,.04);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
}

.wm-menu-btn{
  width:45px;
  height:45px;

  border:none;

  border-radius:14px;

  background:rgba(255,255,255,.04);

  color:#fff;

  display:none;
}

/* Content */

.app-content{
  padding:35px;
}

/* Cards */

.wm-card{
  background:linear-gradient(
    145deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.015)
  );

  border:1px solid rgba(255,255,255,.04);

  border-radius:24px;

  padding:24px;

  margin-bottom:25px;

  box-shadow:var(--wm-shadow);
}

.wm-card-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:20px;
}

/* Buttons */

.wm-btn{
  height:52px;

  border:none;

  border-radius:16px;

  padding:0 26px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-weight:600;

  transition:.25s ease;
}

.wm-btn-main{
  background:linear-gradient(
    145deg,
    var(--wm-primary),
    var(--wm-primary2)
  );

  color:#fff!important;

  box-shadow:
  0 12px 30px rgba(255,0,76,.25);
}

.wm-btn-main:hover{
  transform:translateY(-2px);
}

.wm-btn-soft{
  background:rgba(255,255,255,.05);
  color:#fff!important;
}

/* Inputs */

.wm-input,
.form-control{
  height:56px!important;

  background:#141923!important;

  border:1px solid #2d3546!important;

  border-radius:16px!important;

  color:#fff!important;

  padding:0 18px!important;
}

textarea.form-control{
  height:auto!important;
  padding-top:18px!important;
}

.form-control:focus{
  border-color:var(--wm-primary)!important;
}

.form-control::placeholder{
  color:#73809f!important;
}

/* Tables */

.table{
  color:#fff;
}

.table thead th{
  border:none!important;
  color:#9ea9c9;
  font-weight:600;
}

.table td{
  border-top:1px solid rgba(255,255,255,.04)!important;
  vertical-align:middle!important;
}

/* Status */

.wm-badge{
  height:32px;

  padding:0 14px;

  border-radius:12px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
  font-weight:700;
}

.wm-success{
  background:rgba(0,200,150,.12);
  color:#00d8a0;
}

.wm-pending{
  background:rgba(255,176,32,.12);
  color:#ffb020;
}

.wm-danger{
  background:rgba(255,77,109,.12);
  color:#ff5d7a;
}

/* Footer */

.wm-footer{
  padding:25px 35px;
  border-top:1px solid rgba(255,255,255,.04);
}

.wm-footer-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.wm-footer-left span{
  display:block;
  color:var(--wm-text2);
  margin-top:4px;
}

.wm-footer-right{
  display:flex;
  gap:18px;
}

.wm-footer-right a{
  color:var(--wm-text2);
}

.wm-footer-right a:hover{
  color:#fff;
}

/* Mobile Nav */

.wm-mobile-nav{
  display:none;
}

/* Guest Header */

.wm-guest-header{
  padding:20px 0;
  position:absolute;
  width:100%;
  z-index:99;
}

.wm-guest-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.wm-brand{
  font-size:32px;
  font-weight:800;
  color:#fff!important;
}

.wm-brand span{
  color:var(--wm-primary);
}

.wm-guest-nav nav{
  display:flex;
  gap:28px;
}

.wm-guest-nav nav a{
  color:#c9d1e6;
  font-weight:500;
}

.wm-guest-actions{
  display:flex;
  gap:12px;
}

/* Modal */

.wm-modal{
  background:#161b25;
  border:1px solid rgba(255,255,255,.04);
  border-radius:24px;
}

.modal-content{
  color:#fff;
}

/* Responsive */

@media(max-width:1200px){

  .wm-layout{
    padding-left:0;
  }

  .wm-sidebar{
    transform:translateX(-100%);
  }

  .wm-sidebar.active{
    transform:translateX(0);
  }

  .wm-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

}

@media(max-width:768px){

  .app-content{
    padding:20px;
    padding-bottom:100px;
  }

  .wm-topbar{
    padding:0 20px;
  }

  .wm-footer{
    padding-bottom:90px;
  }

  .wm-footer-flex{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

  .wm-mobile-nav{
    position:fixed;
    bottom:0;
    left:0;

    width:100%;
    height:75px;

    background:#12161f;

    border-top:1px solid rgba(255,255,255,.05);

    display:flex;
    align-items:center;
    justify-content:space-around;

    z-index:9999;
  }

  .wm-mobile-item{
    display:flex;
    flex-direction:column;
    align-items:center;

    color:#9ea9c9;

    font-size:11px;
  }

  .wm-mobile-item i{
    font-size:22px;
    margin-bottom:4px;
  }

  .wm-mobile-item.active{
    color:var(--wm-primary);
  }

  .wm-guest-nav nav{
    display:none;
  }

}

body{
    background:#0f0b1f !important;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

.wm-login-page{
    min-height:100vh;
    display:flex;
    background:
    radial-gradient(circle at top left,#7b2ff720,transparent 25%),
    radial-gradient(circle at bottom right,#ff005520,transparent 25%),
    #0f0b1f;
}

.wm-login-left{
    width:50%;
    padding:40px 60px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.wm-login-right{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.wm-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.wm-logo{
    font-size:42px;
    font-weight:800;
    color:#fff;
}

.wm-logo span{
    color:#ff3b6b;
}

.wm-menu{
    display:flex;
    gap:35px;
}

.wm-menu a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.2s;
}

.wm-menu a:hover{
    color:#9b6bff;
}

.wm-hero-content{
    max-width:650px;
}

.wm-badge{
    display:inline-flex;
    align-items:center;
    padding:12px 20px;
    border-radius:14px;
    background:#1d1434;
    border:1px solid #40246b;
    color:#c7a8ff;
    font-size:14px;
    margin-bottom:30px;
}

.wm-hero-content h1{
    font-size:72px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
}

.wm-hero-content h1 span{
    color:#9f70ff;
}

.wm-hero-content p{
    font-size:22px;
    line-height:1.8;
    color:#b3acc8;
    margin-bottom:45px;
}

.wm-stats{
    display:flex;
    gap:25px;
}

.wm-stat-box{
    width:220px;
    padding:30px;
    border-radius:26px;
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(20px);
}

.wm-stat-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#7c4dff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.wm-stat-icon.pink{
    background:#ff3b8a;
}

.wm-stat-icon.yellow{
    background:#ffb300;
}

.wm-stat-box h3{
    font-size:40px;
    color:#fff;
    margin-bottom:10px;
}

.wm-stat-box span{
    color:#b3acc8;
    font-size:15px;
}

.wm-login-card{
    width:100%;
    max-width:650px;
    padding:60px;
    border-radius:40px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(30px);
}

.wm-login-logo{
    width:110px;
    height:110px;
    border-radius:50%;
    border:2px solid #7b2ff7;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:35px;
    font-size:48px;
    font-weight:800;
    color:#fff;
}

.wm-login-logo span{
    color:#ff3b6b;
}

.wm-login-card h2{
    color:#fff;
    font-size:52px;
    text-align:center;
    margin-bottom:15px;
}

.wm-login-card p{
    color:#aaa4c4;
    text-align:center;
    font-size:18px;
    margin-bottom:45px;
}

.wm-login-card label{
    color:#fff;
    font-weight:600;
    margin-bottom:12px;
}

.wm-input{
    height:68px !important;
    border-radius:18px !important;
    background:#1a1730 !important;
    border:1px solid #322b54 !important;
    color:#fff !important;
    padding:0 24px !important;
    font-size:17px;
}

.wm-input:focus{
    border-color:#7c4dff !important;
    box-shadow:none !important;
}

.wm-login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    margin-bottom:35px;
}

.wm-login-options span,
.wm-login-options a{
    color:#b7b0d2;
    text-decoration:none;
}

.wm-login-btn{
    width:100%;
    height:68px;
    border:none;
    border-radius:20px;

    background:
    linear-gradient(
        145deg,
        #7c4dff,
        #b066ff
    );

    color:#fff;
    font-size:20px;
    font-weight:700;
    transition:.25s;
}

.wm-login-btn:hover{
    transform:translateY(-2px);
}

.wm-register-text{
    text-align:center;
    margin-top:30px;
    color:#aaa4c4;
}

.wm-register-text a{
    color:#a56eff;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:991px){

    .wm-login-left{
        display:none;
    }

    .wm-login-right{
        width:100%;
        padding:20px;
    }

    .wm-login-card{
        padding:35px;
    }

    .wm-login-card h2{
        font-size:36px;
    }

}
/* LOGO TAŞMA DÜZELTME */
.wm-login-page img,
.wm-login-left img,
.wm-login-right img{
    max-width:100%;
    height:auto;
}

.wm-logo img,
.wm-brand img,
.wm-sidebar-logo img,
.wm-guest-header img{
    max-width:160px !important;
    max-height:55px !important;
    width:auto !important;
    height:auto !important;
    object-fit:contain !important;
}

.wm-login-logo img{
    max-width:60px !important;
    max-height:60px !important;
    width:auto !important;
    height:auto !important;
    object-fit:contain !important;
}

.wm-login-logo{
    overflow:hidden;
}

.header img,
.app-logo img,
.site-name img{
    max-width:170px !important;
    max-height:60px !important;
    width:auto !important;
    height:auto !important;
}
/* LOGIN SAYFASI HEADER ÇAKIŞMA DÜZELTME */
body.winsmm-guest .wm-guest-header,
body.winsmm-guest .header,
body.winsmm-guest .app-header,
body.winsmm-guest .navbar{
    display:none !important;
}

.wm-login-page .wm-topbar{
    position:absolute !important;
    top:30px !important;
    left:30px !important;
    right:30px !important;
    height:80px !important;
    background:rgba(15,15,25,.92) !important;
    border:1px solid rgba(255,255,255,.08) !important;
    border-radius:18px !important;
    padding:0 34px !important;
    z-index:50 !important;
}

.wm-login-left{
    padding-top:170px !important;
}

.wm-login-page{
    position:relative;
}
/* PANEL DÜZENLEME */
.winsmm-panel .app-content{
    min-height:calc(100vh - 85px) !important;
    padding:32px !important;
    background:#100a20 !important;
}

.winsmm-panel .wm-card{
    background:#181126 !important;
    border:1px solid rgba(255,255,255,.08) !important;
    border-radius:22px !important;
    padding:28px !important;
}

.winsmm-panel .wm-sidebar{
    background:#111821 !important;
}

.winsmm-panel .wm-topbar{
    background:#10131c !important;
    height:78px !important;
}

.winsmm-panel select.form-control,
.winsmm-panel input.form-control,
.winsmm-panel textarea.form-control{
    height:52px !important;
    background:#211833 !important;
    color:#fff !important;
    border:1px solid #3a2c55 !important;
    border-radius:12px !important;
}

.winsmm-panel .select2-container{
    width:100% !important;
}

.winsmm-panel .select2-container .select2-selection--single{
    height:52px !important;
    background:#211833 !important;
    border:1px solid #3a2c55 !important;
    border-radius:12px !important;
}

.winsmm-panel .select2-container .select2-selection__rendered{
    color:#fff !important;
    line-height:52px !important;
    padding-left:15px !important;
}

.winsmm-panel .select2-container .select2-selection__arrow{
    height:52px !important;
}

.winsmm-panel .wm-price-card{
    background:#211833;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:18px;
}

.winsmm-panel .wm-price-card small{
    display:block;
    color:#aaa;
    margin-bottom:7px;
}

.winsmm-panel .wm-price-card strong{
    color:#fff;
    font-size:18px;
}

.winsmm-panel .wm-service-desc{
    background:#211833;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:18px;
    color:#ddd;
    margin-top:20px;
}

.winsmm-panel .wm-small-title{
    font-size:16px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.winsmm-panel .wm-mini-stat,
.winsmm-panel .wm-announcement{
    background:#211833;
    border:1px solid rgba(255,255,255,.07);
    border-radius:16px;
    padding:16px;
    margin-bottom:12px;
}

.winsmm-panel .wm-mini-stat span,
.winsmm-panel .wm-announcement p{
    color:#aaa;
}

.winsmm-panel .wm-mini-stat strong{
    color:#fff;
    font-size:22px;
}

.winsmm-panel .wm-btn-main,
.winsmm-panel .btn-primary{
    background:#ff0a58 !important;
    border:none !important;
    color:#fff !important;
    border-radius:14px !important;
}
/* SOL MENÜ DİKEY DÜZELTME */
.winsmm-panel .wm-sidebar{
    width:260px !important;
    display:block !important;
}

.winsmm-panel .wm-menu{
    display:block !important;
    width:100% !important;
}

.winsmm-panel .wm-menu li{
    display:block !important;
    width:100% !important;
    margin-bottom:12px !important;
}

.winsmm-panel .wm-menu li a,
.winsmm-panel .wm-link{
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:12px !important;
    white-space:nowrap !important;
}

.winsmm-panel .wm-menu li a span,
.winsmm-panel .wm-link span{
    display:inline-block !important;
}