@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #060911;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  overflow-x: hidden;
}

button {
  border: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.header {
  background: transparent;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0px;
}
.header .header-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 16px 40px;
  border-radius: 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #13161d;
  backdrop-filter: blur(30px);
  position: relative;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
}
.header .logo img {
  height: 32px;
  width: auto;
}
.header .logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}
.header .logo .logo-text .logo-smm {
  color: #fff;
}
.header .logo .logo-text .logo-io {
  color: #ff373a;
}
.header .nav-menu {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  grid-column: 2;
}
.header .nav-menu .nav-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.header .nav-menu .nav-link:hover {
  color: #fff;
}
.header .nav-menu .nav-link.active {
  color: #fff;
}
.header .nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ff373a;
  border-radius: 2px;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  grid-column: 3;
}
.header .header-right .currency-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  backdrop-filter: blur(30px);
}
.header .header-right .currency-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .header-right .currency-btn .currency-symbol {
  font-weight: 600;
}
.header .header-right .language-dropdown {
  position: relative;
}
.header .header-right .language-dropdown .language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 14px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  backdrop-filter: blur(30px);
  border: none;
  width: 100%;
}
.header .header-right .language-dropdown .language-btn .flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}
.header .header-right .language-dropdown .language-btn .language-chevron {
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.header .header-right .language-dropdown .language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .header-right .language-dropdown.active .language-btn .language-chevron {
  transform: rotate(180deg);
}
.header .header-right .language-dropdown.active .language-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header-right .language-dropdown .language-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(19, 22, 29, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.header .header-right .language-dropdown .language-dropdown-menu .language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.header .header-right .language-dropdown .language-dropdown-menu .language-option .flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}
.header .header-right .language-dropdown .language-dropdown-menu .language-option .flag-emoji {
  font-size: 18px;
  line-height: 1;
}
.header .header-right .language-dropdown .language-dropdown-menu .language-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header .header-right .language-dropdown .language-dropdown-menu .language-option.active {
  background: rgba(255, 55, 58, 0.2);
  color: #fff;
}
.header .header-right .btn-register {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff373a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 500px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.header .header-right .btn-register i {
  font-size: 14px;
}
.header .header-right .btn-register:hover {
  background: #e62e31;
  transform: translateX(2px);
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: 8px;
}
.header .mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header .mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header .mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}
.header .mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #13161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 24px 24px;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  backdrop-filter: blur(30px);
  margin-top: 10px;
}
.header .mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .mobile-menu .mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  position: relative;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.4s forwards;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link:nth-child(1) {
  animation-delay: 0.05s;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link:nth-child(2) {
  animation-delay: 0.1s;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link:nth-child(3) {
  animation-delay: 0.15s;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link:nth-child(4) {
  animation-delay: 0.2s;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link:nth-child(5) {
  animation-delay: 0.25s;
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link.active {
  color: #fff;
  background: rgba(255, 55, 58, 0.2);
}
.header .mobile-menu .mobile-menu-content .mobile-nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #ff373a;
  border-radius: 0 4px 4px 0;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.4s forwards;
  animation-delay: 0.3s;
  position: relative;
  z-index: 1;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-currency-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  backdrop-filter: blur(30px);
  border: none;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-currency-btn .currency-symbol {
  font-weight: 600;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-currency-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown {
  position: relative;
  flex: 1;
  z-index: 2;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  backdrop-filter: blur(30px);
  border: none;
  width: 100%;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-btn .flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-btn .language-chevron {
  font-size: 12px;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown.active .mobile-language-btn .language-chevron {
  transform: rotate(180deg);
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown.active .mobile-language-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(19, 22, 29, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  backdrop-filter: blur(30px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  margin-bottom: 4px;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-dropdown-menu .mobile-language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-dropdown-menu .mobile-language-option .flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-dropdown-menu .mobile-language-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.header .mobile-menu .mobile-menu-content .mobile-menu-actions .mobile-language-dropdown .mobile-language-dropdown-menu .mobile-language-option.active {
  background: rgba(255, 55, 58, 0.2);
  color: #fff;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideHorizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes floatVertical {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -55%);
  }
}
.footer {
  background: rgba(6, 9, 17, 0.95);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer .footer-left {
  display: flex;
  gap: 30px;
}
.footer .footer-left .footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.footer .footer-left .footer-link:hover {
  color: #ff373a;
}
.footer .footer-center {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.footer .footer-center img {
  height: 32px;
  width: auto;
}
.footer .footer-right .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

#anasayfa {
  width: 100%;
  min-height: 100vh;
  background: #060911;
  position: relative;
}
#anasayfa .hero {
  padding: 100px 0 40px;
  position: relative;
}
#anasayfa .hero:after {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url("../../public/images/hero-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.8;
}
#anasayfa .hero .hero-content {
  display: grid;
  grid-template-columns: 1.25fr auto 0.75fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
#anasayfa .hero .hero-left {
  padding-top: 40px;
}
#anasayfa .hero .hero-left .hero-heart-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(255, 55, 58, 0.4);
  animation: fadeInUp 0.8s ease-out;
}
#anasayfa .hero .hero-left .hero-heart-icon i {
  font-size: 32px;
  color: #fff;
}
#anasayfa .hero .hero-left .hero-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#anasayfa .hero .hero-left .hero-title .highlight {
  color: #ff373a;
}
#anasayfa .hero .hero-left .hero-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 420px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
#anasayfa .hero .hero-center {
  padding-top: 60px;
}
#anasayfa .hero .hero-center .hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 50px;
}
#anasayfa .hero .hero-center .hero-cards .hero-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 240px;
  animation: slideHorizontal 3s ease-in-out infinite;
}
#anasayfa .hero .hero-center .hero-cards .hero-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(255, 55, 58, 0.2);
}
#anasayfa .hero .hero-center .hero-cards .hero-card.twitch {
  margin-left: 0%;
  animation-delay: 0s;
}
#anasayfa .hero .hero-center .hero-cards .hero-card.youtube {
  margin-left: 5%;
  animation-delay: 0.3s;
}
#anasayfa .hero .hero-center .hero-cards .hero-card.facebook {
  margin-left: 15%;
  animation-delay: 0.6s;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-icon-wrapper i {
  font-size: 24px;
  color: #fff;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-icon-wrapper.twitch-bg {
  background: #9146ff;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-icon-wrapper.youtube-bg {
  background: #ff0000;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-icon-wrapper.facebook-bg {
  background: #1877f2;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-text {
  display: flex;
  flex-direction: column;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-text .card-amount {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
#anasayfa .hero .hero-center .hero-cards .hero-card .card-text .card-platform {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
#anasayfa .hero .hero-right {
  display: flex;
  justify-content: flex-end;
}
#anasayfa .hero .hero-right .login-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
#anasayfa .hero .hero-right .login-card .login-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
#anasayfa .hero .hero-right .login-card .login-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.5;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group {
  position: relative;
  margin-bottom: 16px;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group .form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group .form-input {
  width: 100%;
  padding: 14px 14px 14px 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 500px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#anasayfa .hero .hero-right .login-card .login-form .form-group .form-input:focus {
  border-color: #ff373a;
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
#anasayfa .hero .hero-right .login-card .login-form .form-group.bookmark-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group.bookmark-group .form-icon-bookmark {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group.bookmark-group .forgot-password {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
#anasayfa .hero .hero-right .login-card .login-form .form-group.bookmark-group .forgot-password:hover {
  color: #ff373a;
}
#anasayfa .hero .hero-right .login-card .login-form .btn-login {
  width: 100%;
  background: #ff373a;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
#anasayfa .hero .hero-right .login-card .login-form .btn-login:hover {
  background: #e62e31;
  transform: translateY(-2px);
}
#anasayfa .hero .social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 40px 0 20px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
#anasayfa .hero .social-icons-row .social-icon {
  width: 85px;
  height: 85px;
  object-fit: contain;
  transition: transform 0.3s;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  border-radius: 16px;
}
#anasayfa .hero .social-icons-row .social-icon:hover {
  transform: translateY(-8px) scale(1.05);
}
#anasayfa .features {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: url("../../public/images/features-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#anasayfa .features::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 100%;
  background-image: url("../../public/images/features-character.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  animation: floatVertical 3s ease-in-out infinite;
}
#anasayfa .features .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
#anasayfa .features .section-title margin .highlight {
  color: #ff373a;
}
#anasayfa .features .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
#anasayfa .features .features-content {
  position: relative;
  z-index: 1;
}
#anasayfa .features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 120px;
  grid-row-gap: 32px;
  position: relative;
  z-index: 1;
}
#anasayfa .features .feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  padding: 30px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #anasayfa .features .feature-card {
    background-color: rgba(29, 33, 43, 0.9529411765);
  }
}
#anasayfa .features .feature-card:hover {
  transform: translateY(-5px);
  border-color: #ff373a;
}
#anasayfa .features .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#anasayfa .features .feature-card .feature-icon i {
  font-size: 24px;
  color: #ff373a;
}
#anasayfa .features .feature-card .feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
#anasayfa .features .feature-card .feature-text {
  font-size: 14px;
  color: #8395a7;
  line-height: 1.6;
}
#anasayfa .testimonials {
  padding: 50px 0 100px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
}
#anasayfa .testimonials .container {
  overflow: visible;
}
#anasayfa .testimonials .testimonials-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
  overflow: visible;
}
#anasayfa .testimonials .testimonial-left {
  position: absolute;
  top: -100px;
  left: -100px;
}
#anasayfa .testimonials .testimonial-left img {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#anasayfa .testimonials .testimonials-right {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
#anasayfa .testimonials .testimonials-right .testimonials-header {
  margin-left: 20%;
  max-width: 500px;
  margin-bottom: 24px;
}
#anasayfa .testimonials .testimonials-right .testimonials-header .section-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
#anasayfa .testimonials .testimonials-right .testimonials-header .section-title .heart-icon {
  color: #ff373a;
  margin-left: 10px;
}
#anasayfa .testimonials .testimonials-right .testimonials-header .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-weight: 300;
}
#anasayfa .testimonials .testimonials-right .testimonial-nav {
  top: 40px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 20px;
  padding-right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  position: absolute;
  z-index: 10;
}
#anasayfa .testimonials .testimonials-right .testimonial-nav .nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  position: relative;
  margin: 12px;
}
#anasayfa .testimonials .testimonials-right .testimonial-nav .nav-arrow::after {
  content: none;
}
#anasayfa .testimonials .testimonials-right .testimonial-nav .nav-arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#anasayfa .testimonials .testimonials-right .testimonial-nav .nav-arrow:hover:not(.swiper-button-disabled) {
  border-color: #ff373a;
  color: #ff373a;
  background: rgba(255, 55, 58, 0.1);
}
#anasayfa .testimonials .testimonials-right .testimonials-swiper {
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
}
#anasayfa .testimonials .testimonials-right .testimonials-swiper .swiper-wrapper {
  display: flex;
}
#anasayfa .testimonials .testimonials-right .testimonials-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
}
#anasayfa .testimonials .testimonials-right .testimonial-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  padding: 30px 20px;
  height: 100%;
}
#anasayfa .testimonials .testimonials-right .testimonial-card .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
#anasayfa .testimonials .testimonials-right .testimonial-card .stars i {
  color: #ffd700;
  font-size: 16px;
}
#anasayfa .testimonials .testimonials-right .testimonial-card .testimonial-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}
#anasayfa .testimonials .testimonials-right .testimonial-card .testimonial-author {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
#anasayfa .faq {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: url("../../public/images/faq-bg.png") no-repeat center center;
  background-size: cover;
}
#anasayfa .faq::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 100%;
  background-image: url("../../public/images/faq-character.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  animation: floatVertical 3s ease-in-out infinite;
}
#anasayfa .faq .section-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}
#anasayfa .faq .section-title span {
  color: #ff373a;
}
#anasayfa .faq .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
#anasayfa .faq .faq-content {
  position: relative;
  z-index: 1;
}
#anasayfa .faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 150px;
  grid-row-gap: 20px;
  position: relative;
  z-index: 1;
}
#anasayfa .faq .faq-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.37);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #anasayfa .faq .faq-item {
    background-color: rgba(29, 33, 43, 0.9529411765);
  }
}
#anasayfa .faq .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
}
#anasayfa .faq .faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
#anasayfa .faq .faq-item .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#anasayfa .faq .faq-item .faq-header .faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
#anasayfa .faq .faq-item .faq-header .faq-arrow {
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s;
}
#anasayfa .faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}
#anasayfa .faq .faq-item .faq-answer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
#anasayfa .blog {
  padding: 100px 0;
}
#anasayfa .blog .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
#anasayfa .blog .section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
#anasayfa .blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
#anasayfa .blog .blog-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
#anasayfa .blog .blog-card:hover {
  transform: translateY(-5px);
}
#anasayfa .blog .blog-card .blog-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
}
#anasayfa .blog .blog-card .blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
#anasayfa .blog .blog-card .blog-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
  line-height: 1.6;
  flex-grow: 1;
}
#anasayfa .blog .blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: gap 0.3s, background 0.3s, border-color 0.3s;
  margin-top: auto;
  width: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#anasayfa .blog .blog-card .blog-read-more:hover {
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
#anasayfa .blog .blog-card .blog-read-more i {
  font-size: 12px;
}
@media (max-width: 1400px) {
  #anasayfa .blog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }
}
@media (max-width: 1200px) {
  #anasayfa .hero-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }
  #anasayfa .hero-center {
    display: none;
  }
  #anasayfa .hero-left .hero-title {
    font-size: 40px !important;
  }
  #anasayfa .blog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}
@media (max-width: 1024px) {
  #anasayfa .hero-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  #anasayfa .hero-center {
    display: none;
  }
  #anasayfa .hero-right {
    justify-content: center !important;
  }
  #anasayfa .hero-left {
    text-align: center;
  }
  #anasayfa .hero-left .hero-heart-icon {
    margin: 0 auto 30px;
  }
  #anasayfa .hero-left .hero-description {
    margin: 0 auto;
  }
  #anasayfa .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }
  #anasayfa .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  #anasayfa .testimonials-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  #anasayfa .testimonial-left {
    text-align: center;
    margin-top: 0 !important;
  }
  #anasayfa .testimonial-left img {
    max-width: 250px !important;
  }
  #anasayfa .testimonials-right .testimonials-header {
    text-align: center;
  }
  #anasayfa .testimonials-right .testimonial-nav {
    justify-content: center;
  }
  #anasayfa .blog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
}
@media (max-width: 768px) {
  #anasayfa .hero {
    padding: 60px 0 40px !important;
    min-height: auto !important;
  }
  #anasayfa .hero .hero-content {
    gap: 30px !important;
  }
  #anasayfa .hero .hero-left .hero-title {
    font-size: 32px !important;
  }
  #anasayfa .hero .hero-left .hero-heart-icon {
    width: 60px !important;
    height: 60px !important;
  }
  #anasayfa .hero .hero-left .hero-heart-icon i {
    font-size: 26px !important;
  }
  #anasayfa .hero .hero-right .login-card {
    max-width: 100% !important;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #anasayfa .hero .hero-right .login-card {
    background-color: rgba(29, 33, 43, 0.9529411765);
  }
}
@media (max-width: 768px) {
  #anasayfa .hero .social-icons-row .social-icon {
    width: 50px !important;
    height: 50px !important;
  }
  #anasayfa .features-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  #anasayfa .faq-grid {
    grid-template-columns: 1fr !important;
  }
  #anasayfa .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  #anasayfa .testimonials-swiper {
    overflow: hidden !important;
  }
}
@media (max-width: 480px) {
  #anasayfa .hero .hero-left .hero-title {
    font-size: 26px !important;
  }
  #anasayfa .hero .social-icons-row {
    gap: 8px !important;
  }
  #anasayfa .hero .social-icons-row .social-icon {
    width: 44px !important;
    height: 44px !important;
  }
  #anasayfa .section-title {
    font-size: 26px !important;
  }
}

.servis-listesi-page {
  padding: 50px 0 100px;
  min-height: calc(100vh - 200px);
}
.servis-listesi-page .servis-listesi-header {
  text-align: left;
  margin-bottom: 60px;
}
.servis-listesi-page .servis-listesi-header .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.servis-listesi-page .servis-listesi-header .section-title .section-title-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.servis-listesi-page .servis-listesi-header .section-title .highlight {
  color: #ff373a;
}
.servis-listesi-page .servis-listesi-header .section-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  line-height: 1.6;
}
.servis-listesi-page .servis-listesi-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.servis-listesi-page .servis-listesi-filters .filter-select-wrapper {
  position: relative;
  min-width: 200px;
}
.servis-listesi-page .servis-listesi-filters .filter-select-wrapper .filter-select {
  width: 100%;
  height: 60px;
  padding: 0 40px 0 20px;
  border-radius: 10px;
  background: #151a28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.servis-listesi-page .servis-listesi-filters .filter-select-wrapper .filter-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
}
.servis-listesi-page .servis-listesi-filters .filter-select-wrapper .filter-select option {
  background: #151a28;
  color: #fff;
}
.servis-listesi-page .servis-listesi-filters .filter-select-wrapper .filter-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  pointer-events: none;
}
.servis-listesi-page .servis-listesi-filters .filter-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
  min-width: 250px;
}
.servis-listesi-page .servis-listesi-filters .filter-search-wrapper .search-icon {
  z-index: 1;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 44px;
  border-radius: 6px;
  background: rgba(106, 106, 149, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
}
.servis-listesi-page .servis-listesi-table .table-header {
  display: grid;
  grid-template-columns: 80px 2fr 100px 100px 100px 160px 80px;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.servis-listesi-page .servis-listesi-table .table-header .table-header-cell {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.servis-listesi-page .servis-listesi-table .service-category {
  margin-bottom: 24px;
}
.servis-listesi-page .servis-listesi-table .service-category .service-category-header {
  border-radius: 12px;
  background: #ff373a;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.servis-listesi-page .servis-listesi-table .service-category .service-category-header i {
  font-size: 20px;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(106, 106, 149, 0.05);
  backdrop-filter: blur(15px);
  padding: 12px;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item {
  display: grid;
  grid-template-columns: 80px 2fr 100px 100px 100px 160px 80px;
  gap: 16px;
  padding: 20px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(106, 106, 149, 0.06);
  transition: all 0.3s;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item:hover {
  background: rgba(106, 106, 149, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-id {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-name {
  gap: 8px;
  font-weight: 500;
  min-width: 0;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-name span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-name i {
  color: #ffffff;
  font-size: 12px;
  flex-shrink: 0;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-price {
  color: #fff;
  font-weight: 600;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-description {
  justify-content: center;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-description i {
  background: #ff373a;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s;
}
.servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-description i:hover {
  transform: scale(1.2);
}
@media (max-width: 1400px) {
  .servis-listesi-page .servis-listesi-table .table-header,
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item {
    grid-template-columns: 70px 2fr 90px 90px 90px 140px 70px;
    gap: 12px;
  }
}
@media (max-width: 1200px) {
  .servis-listesi-page .servis-listesi-table .table-header,
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item {
    grid-template-columns: 60px 2fr 80px 80px 80px 120px 60px;
    gap: 10px;
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .servis-listesi-page {
    padding: 60px 0 80px;
  }
  .servis-listesi-page .servis-listesi-header {
    margin-bottom: 40px;
  }
  .servis-listesi-page .servis-listesi-header .section-title {
    font-size: 36px;
    flex-wrap: wrap;
  }
  .servis-listesi-page .servis-listesi-header .section-title .section-title-icon {
    width: 40px;
    height: 40px;
  }
  .servis-listesi-page .servis-listesi-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .servis-listesi-page .servis-listesi-filters .filter-select-wrapper,
  .servis-listesi-page .servis-listesi-filters .filter-search-wrapper {
    max-width: 100%;
    min-width: 100%;
  }
  .servis-listesi-page .servis-listesi-filters .filter-select-wrapper .filter-select,
  .servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search {
    height: 60px;
  }
  .servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search {
    padding: 0 20px 0 44px;
  }
  .servis-listesi-page .servis-listesi-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .servis-listesi-page .servis-listesi-table .table-header {
    display: none;
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items {
    padding: 8px;
    gap: 8px;
    border: none;
    background-color: none;
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item {
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(106, 106, 149, 0.06);
    justify-content: space-between;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item::before {
    content: attr(data-label);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-id::before {
    content: "Servis ID: ";
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-name::before {
    content: "Servis Adı: ";
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-price::before {
    content: "Fiyat: ";
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-min::before {
    content: "Minimum: ";
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-max::before {
    content: "Maksimum: ";
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-completion::before {
    content: "Tamamlanma: ";
  }
  .servis-listesi-page .servis-listesi-table .service-category .service-items .service-item .service-detail-item.service-description {
    background: none;
  }
}
@media (max-width: 768px) {
  .servis-listesi-page {
    padding: 40px 0 60px;
  }
  .servis-listesi-page .servis-listesi-header .section-title {
    font-size: 28px;
    gap: 12px;
  }
  .servis-listesi-page .servis-listesi-header .section-title .section-title-icon {
    width: 32px;
    height: 32px;
  }
  .servis-listesi-page .servis-listesi-header .section-description {
    font-size: 14px;
  }
  .servis-listesi-page .servis-listesi-filters {
    gap: 16px;
  }
  .servis-listesi-page .servis-listesi-filters .filter-select-wrapper .filter-select,
  .servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search {
    height: 60px;
    padding: 0 40px 0 20px;
    font-size: 13px;
  }
  .servis-listesi-page .servis-listesi-filters .filter-search-wrapper .filter-search {
    padding: 0 20px 0 44px;
  }
  .servis-listesi-page .servis-listesi-filters .filter-search-wrapper .search-icon {
    left: 16px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .servis-listesi-page .servis-listesi-header .section-title {
    font-size: 24px;
    flex-direction: row;
  }
  .servis-listesi-page .servis-listesi-header .section-title .section-title-icon {
    width: 28px;
    height: 28px;
  }
}

.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  background: #171d2b;
  backdrop-filter: blur(30px);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.service-modal-overlay.active .service-modal {
  transform: scale(1);
}

.service-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-modal-header .service-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
}
.service-modal-header .service-modal-icon {
  width: 40px;
  height: 40px;
  background: #ff0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-modal-header .service-modal-icon i {
  color: #fff;
  font-size: 20px;
}
.service-modal-header .service-modal-title {
  flex: 1;
  min-width: 0;
}
.service-modal-header .service-modal-title h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}
.service-modal-header .service-modal-rocket {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  flex-shrink: 0;
}
.service-modal-header .service-modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  flex-shrink: 0;
}
.service-modal-header .service-modal-close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.service-modal-content {
  padding: 24px;
}
.service-modal-content .service-modal-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-modal-content .service-modal-detail:last-child {
  margin-bottom: 0;
}
.service-modal-content .service-modal-detail .service-modal-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  min-width: 80px;
}
.service-modal-content .service-modal-detail .service-modal-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.service-modal-actions {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-modal-actions .service-modal-btn {
  flex: 1;
  padding: 20px 24px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.service-modal-actions .service-modal-btn.service-modal-btn-close {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.service-modal-actions .service-modal-btn.service-modal-btn-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.service-modal-actions .service-modal-btn.service-modal-btn-buy {
  background: #01b76c;
  color: #fff;
}
.service-modal-actions .service-modal-btn.service-modal-btn-buy:hover {
  background: #01a05a;
}
.service-modal-actions .service-modal-btn.service-modal-btn-buy i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .service-modal {
    width: 95%;
    max-width: none;
    border-radius: 12px;
  }
  .service-modal-header {
    padding: 20px;
  }
  .service-modal-header .service-modal-icon {
    width: 36px;
    height: 36px;
  }
  .service-modal-header .service-modal-icon i {
    font-size: 18px;
  }
  .service-modal-header .service-modal-title h3 {
    font-size: 14px;
  }
  .service-modal-header .service-modal-rocket {
    display: none;
  }
  .service-modal-content {
    padding: 20px;
  }
  .service-modal-content .service-modal-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
  }
  .service-modal-content .service-modal-detail .service-modal-label {
    min-width: auto;
  }
  .service-modal-actions {
    padding: 20px;
    flex-direction: column;
  }
  .service-modal-actions .service-modal-btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .header .container {
    padding: 0 20px;
  }
  .header .nav-menu {
    gap: 24px;
  }
  .header .nav-menu .nav-link {
    font-size: 14px;
  }
  .header .header-right {
    gap: 8px;
  }
  .header .header-right .language-dropdown .language-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .header .header-right .language-dropdown .language-dropdown-menu {
    right: 0;
    left: auto;
  }
  .header .header-right .btn-register {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .header .container {
    padding: 0 15px;
  }
  .header .header-content {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }
  .header .logo {
    grid-column: 1;
  }
  .header .logo .logo-text {
    font-size: 20px;
  }
  .header .nav-menu {
    display: none;
  }
  .header .header-right {
    grid-column: 2;
    gap: 8px;
  }
  .header .header-right .currency-btn {
    display: none;
  }
  .header .header-right .language-dropdown {
    display: none;
  }
  .header .header-right .btn-register {
    padding: 10px 16px;
    font-size: 13px;
  }
  .header .header-right .btn-register span {
    display: none;
  }
  .header .header-right .mobile-menu-toggle {
    display: flex;
  }
  .header .mobile-menu {
    display: block;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.blog-page {
  padding: 50px 0 100px;
  min-height: calc(100vh - 200px);
  background: #060911;
}
.blog-page .blog-section {
  padding: 0;
}
.blog-page .blog-section .blog-header {
  text-align: left;
  margin-bottom: 60px;
}
.blog-page .blog-section .blog-header .blog-section-title {
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.blog-page .blog-section .blog-header .blog-section-title span {
  color: #ff373a;
}
.blog-page .blog-section .blog-header .blog-section-title .blog-title-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.blog-page .blog-section .blog-header .blog-section-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  line-height: 1.6;
}
.blog-page .blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.blog-page .blog-section .blog-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.blog-page .blog-section .blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
.blog-page .blog-section .blog-card .blog-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog-page .blog-section .blog-card .blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.blog-page .blog-section .blog-card .blog-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
  line-height: 1.6;
  flex-grow: 1;
}
.blog-page .blog-section .blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: gap 0.3s, background 0.3s, border-color 0.3s;
  margin-top: auto;
  width: 100%;
}
.blog-page .blog-section .blog-card .blog-read-more:hover {
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.blog-page .blog-section .blog-card .blog-read-more i {
  font-size: 12px;
}
.blog-page .blog-section .blog-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}
.blog-page .blog-section .blog-pagination .pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.blog-page .blog-section .blog-pagination .pagination-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.blog-page .blog-section .blog-pagination .pagination-btn.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
@media (max-width: 1400px) {
  .blog-page .blog-section .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  .blog-page .blog-section .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .blog-page .blog-section .blog-header .blog-section-title {
    font-size: 36px;
  }
  .blog-page .blog-section .blog-header .blog-section-title .blog-title-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1024px) {
  .blog-page .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-page .blog-section .blog-header .blog-section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .blog-page {
    padding: 40px 0 80px;
  }
  .blog-page .blog-section .blog-header {
    margin-bottom: 40px;
    text-align: center;
  }
  .blog-page .blog-section .blog-header .blog-section-title {
    font-size: 28px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .blog-page .blog-section .blog-header .blog-section-title .blog-title-icon {
    width: 36px;
    height: 36px;
  }
  .blog-page .blog-section .blog-header .blog-section-subtitle {
    font-size: 14px;
  }
  .blog-page .blog-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-page .blog-section .blog-pagination {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .blog-page {
    padding: 30px 0 60px;
  }
  .blog-page .blog-section .blog-header .blog-section-title {
    font-size: 24px;
    gap: 12px;
  }
  .blog-page .blog-section .blog-header .blog-section-title .blog-title-icon {
    width: 32px;
    height: 32px;
  }
  .blog-page .blog-section .blog-card {
    padding: 16px;
  }
  .blog-page .blog-section .blog-card .blog-title {
    font-size: 16px;
  }
  .blog-page .blog-section .blog-card .blog-excerpt {
    font-size: 13px;
  }
}

.api-page {
  padding: 40px 0 100px;
  min-height: calc(100vh - 200px);
  background: #060911;
}
.api-page .api-page-header {
  text-align: center;
  margin-bottom: 60px;
}
.api-page .api-page-header .api-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.api-page .api-page-header .api-page-title span {
  color: #ff373a;
}
.api-page .api-page-header .api-page-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.api-page .api-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  padding: 32px;
}
.api-page .api-details h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.api-page .api-details .api-table {
  width: 100%;
  border-collapse: collapse;
}
.api-page .api-details .api-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.api-page .api-details .api-table tbody tr:last-child {
  border-bottom: none;
}
.api-page .api-details .api-table tbody tr td {
  padding: 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.api-page .api-details .api-table tbody tr td:first-child {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  width: 40%;
}
.api-page .api-details .api-table tbody tr td:last-child {
  color: #fff;
  font-weight: 600;
}
.api-page .api-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.api-page .api-section .dropdown-section {
  margin-bottom: 24px;
}
.api-page .api-section .dropdown-section .service-dropdown {
  width: 100%;
  max-width: 300px;
  height: 48px;
  padding: 0 40px 0 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.api-page .api-section .dropdown-section .service-dropdown:focus {
  outline: none;
  border-color: #ff373a;
}
.api-page .api-section .dropdown-section .service-dropdown option {
  background: #171d2b;
  color: #fff;
}
.api-page .api-section .params-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.api-page .api-section .params-table thead tr th {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.api-page .api-section .params-table thead tr th:first-child {
  width: 30%;
}
.api-page .api-section .params-table tbody tr td {
  padding: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.api-page .api-section .params-table tbody tr td:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.api-page .api-section .params-table tbody tr td:last-child {
  color: rgba(255, 255, 255, 0.7);
}
.api-page .api-section .example-response h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.api-page .api-section .example-response .code-block {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  backdrop-filter: blur(15px);
  padding: 20px;
  overflow-x: auto;
}
.api-page .api-section .example-response .code-block pre {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.api-page .api-section .example-response .code-block pre code {
  display: block;
  white-space: pre;
  color: rgba(255, 255, 255, 0.8);
}
.api-page .api-section .example-response .code-block pre code .json-key,
.api-page .api-section .example-response .code-block pre code .json-string,
.api-page .api-section .example-response .code-block pre code .json-number,
.api-page .api-section .example-response .code-block pre code .json-boolean {
  color: rgba(255, 255, 255, 0.8);
}
.api-page .api-page-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 60px;
}
.api-page .api-page-cta .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff373a;
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.api-page .api-page-cta .btn-contact:hover {
  background: #e62e31;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .api-page .api-page-header .api-page-title {
    font-size: 40px;
  }
  .api-page .api-content {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .api-page {
    padding: 40px 0 80px;
  }
  .api-page .api-page-header {
    margin-bottom: 40px;
  }
  .api-page .api-page-header .api-page-title {
    font-size: 32px;
  }
  .api-page .api-page-header .api-page-description {
    font-size: 14px;
    padding: 0 20px;
  }
  .api-page .api-content {
    gap: 24px;
    padding: 20px;
  }
  .api-page .api-details h2,
  .api-page .api-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .api-page .api-details .params-table,
  .api-page .api-section .params-table {
    font-size: 13px;
  }
  .api-page .api-details .params-table thead tr th,
  .api-page .api-details .params-table tbody tr td,
  .api-page .api-section .params-table thead tr th,
  .api-page .api-section .params-table tbody tr td {
    padding: 12px;
  }
  .api-page .api-details .example-response h3,
  .api-page .api-section .example-response h3 {
    font-size: 16px;
  }
  .api-page .api-details .example-response .code-block,
  .api-page .api-section .example-response .code-block {
    padding: 16px;
  }
  .api-page .api-details .example-response .code-block pre,
  .api-page .api-section .example-response .code-block pre {
    font-size: 12px;
  }
  .api-page .api-page-cta {
    margin-top: 40px;
  }
  .api-page .api-page-cta .btn-contact {
    padding: 14px 40px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .api-page .api-page-header .api-page-title {
    font-size: 28px;
  }
  .api-page .api-content {
    padding: 16px;
  }
  .api-page .api-details .dropdown-section .service-dropdown,
  .api-page .api-section .dropdown-section .service-dropdown {
    max-width: 100%;
  }
  .api-page .api-details .params-table thead,
  .api-page .api-section .params-table thead {
    display: none;
  }
  .api-page .api-details .params-table tbody tr,
  .api-page .api-section .params-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .api-page .api-details .params-table tbody tr:last-child,
  .api-page .api-section .params-table tbody tr:last-child {
    border-bottom: none;
  }
  .api-page .api-details .params-table tbody tr td,
  .api-page .api-section .params-table tbody tr td {
    padding: 4px 0;
    border: none;
  }
  .api-page .api-details .params-table tbody tr td:first-child,
  .api-page .api-section .params-table tbody tr td:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
  }
}

.blog-detail-page {
  padding: 40px 0 100px;
  min-height: calc(100vh - 200px);
  background: #060911;
}
.blog-detail-page .container {
  max-width: 1200px;
}
.blog-detail-page .blog-detail-content {
  max-width: 100%;
  margin: 0 auto;
}
.blog-detail-page .blog-detail-content .blog-detail-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blog-detail-page .blog-detail-content .blog-detail-header .blog-detail-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .blog-detail-page .blog-detail-content .blog-detail-header .blog-detail-title {
    flex-direction: column;
    text-align: center;
  }
}
.blog-detail-page .blog-detail-content .blog-detail-header .blog-detail-title span {
  color: #ff373a;
}
.blog-detail-page .blog-detail-content .blog-detail-header .blog-detail-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
.blog-detail-page .blog-detail-content .blog-detail-image-wrapper {
  margin: 0 0 -150px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.blog-detail-page .blog-detail-content .blog-detail-image-wrapper .blog-detail-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.blog-detail-page .blog-detail-content .blog-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 200px 40px 40px;
  margin-top: 0;
}
.blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}
.blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .blog-detail-page {
    padding: 60px 0 80px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-title {
    font-size: 40px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .blog-detail-page {
    padding: 40px 0 60px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-description {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-image-wrapper {
    margin: 0 0 -40px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections {
    padding: 50px 24px 30px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections {
    gap: 32px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-text {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .blog-detail-page {
    padding: 30px 0 50px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-title {
    font-size: 26px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-description {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-image-wrapper {
    margin: 0 0 -30px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections {
    padding: 40px 20px 24px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-title {
    font-size: 22px;
  }
  .blog-detail-page .blog-detail-content .blog-detail-sections .blog-detail-section .blog-detail-section-text {
    font-size: 14px;
  }
}

.kurumsal-page {
  padding: 50px 0 100px;
  min-height: calc(100vh - 200px);
  background: #060911;
}
.kurumsal-page .kurumsal-header {
  text-align: left;
  margin-bottom: 40px;
}
.kurumsal-page .kurumsal-header .kurumsal-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.kurumsal-page .kurumsal-header .kurumsal-title img {
  width: 48px;
}
.kurumsal-page .kurumsal-header .kurumsal-title .highlight {
  color: #ff373a;
}
.kurumsal-page .kurumsal-header .kurumsal-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  line-height: 1.6;
}
.kurumsal-page .kurumsal-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.kurumsal-page .kurumsal-tabs .kurumsal-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(15px);
}
.kurumsal-page .kurumsal-tabs .kurumsal-tab i {
  font-size: 18px;
  color: #fff;
}
.kurumsal-page .kurumsal-tabs .kurumsal-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.kurumsal-page .kurumsal-tabs .kurumsal-tab.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.kurumsal-page .kurumsal-content .kurumsal-content-tab {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
}
.kurumsal-page .kurumsal-content .kurumsal-content-tab.active {
  display: block;
}
.kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .kurumsal-page {
    padding: 40px 0 80px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-title {
    font-size: 32px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-title i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab {
    padding: 32px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .kurumsal-page {
    padding: 40px 0 60px;
  }
  .kurumsal-page .kurumsal-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-title {
    font-size: 28px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-title i {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-subtitle {
    font-size: 14px;
  }
  .kurumsal-page .kurumsal-tabs {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  .kurumsal-page .kurumsal-tabs .kurumsal-tab {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab {
    padding: 24px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-body p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .kurumsal-page {
    padding: 30px 0 50px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-title {
    font-size: 24px;
    gap: 10px;
  }
  .kurumsal-page .kurumsal-header .kurumsal-title i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab {
    padding: 20px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-title {
    font-size: 22px;
  }
  .kurumsal-page .kurumsal-content .kurumsal-content-tab .kurumsal-content-body p {
    font-size: 14px;
  }
}

.auth-page {
  min-height: 100vh;
  width: 100%;
  background: #060911;
}
.auth-page .auth-container {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #060911;
  overflow: hidden;
}
.auth-page .auth-left {
  background: #13161d;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  height: 100%;
  justify-content: center;
}
.auth-page .auth-left .auth-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  margin-bottom: 50px;
}
.auth-page .auth-left .auth-back-btn i {
  font-size: 12px;
}
.auth-page .auth-left .auth-back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.auth-page .auth-left .auth-logo {
  margin-bottom: 10px;
}
.auth-page .auth-left .auth-logo .auth-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff373a 0%, #ff373a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.auth-page .auth-left .auth-form-wrapper {
  width: 100%;
}
.auth-page .auth-left .auth-form-wrapper .auth-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.auth-page .auth-left .auth-form-wrapper .auth-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-bottom: 40px;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-group {
  margin-bottom: 24px;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-group .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-group .form-input {
  width: 100%;
  padding: 14px 16px;
  background: #1e2432;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  min-height: 60px;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-group .form-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .checkbox-label .checkbox-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff373a;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .checkbox-label .checkbox-text {
  user-select: none;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .checkbox-label .checkbox-text .terms-link {
  color: #ff373a;
  text-decoration: none;
  font-weight: 600;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .checkbox-label .checkbox-text .terms-link:hover {
  text-decoration: underline;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .forgot-password-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .form-options .forgot-password-link:hover {
  color: #ff373a;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .auth-submit-btn {
  width: 100%;
  padding: 14px;
  background: #ff373a;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 60px;
}
.auth-page .auth-left .auth-form-wrapper .auth-form .auth-submit-btn:hover {
  background: #e62e31;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 55, 58, 0.3);
}
.auth-page .auth-left .auth-form-wrapper .auth-form .auth-submit-btn:active {
  transform: translateY(0);
}
.auth-page .auth-right {
  background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.auth-page .auth-right .auth-right-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.auth-page .auth-right .auth-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .auth-page .auth-container {
    grid-template-columns: 1fr 1.5fr;
  }
  .auth-page .auth-left {
    padding: 32px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .auth-page .auth-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .auth-page .auth-left {
    min-height: calc(100vh - 40px);
    padding: 40px;
  }
  .auth-page .auth-left .auth-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .auth-page .auth-right {
    display: none;
  }
}
@media (max-width: 992px) {
  .auth-page {
    padding: 0;
  }
  .auth-page .auth-container {
    min-height: 100vh;
  }
  .auth-page .auth-left {
    padding: 30px 24px;
    min-height: 100vh;
    align-items: center;
  }
  .auth-page .auth-left .auth-back-btn {
    padding: 6px 12px;
    font-size: 13px;
    margin-bottom: 24px;
  }
  .auth-page .auth-left .auth-logo {
    margin-bottom: 30px;
    text-align: center;
  }
  .auth-page .auth-left .auth-logo .auth-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-title {
    font-size: 32px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .form-group {
    margin-bottom: 20px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .form-group .form-label {
    font-size: 13px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .form-group .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .form-options .checkbox-label {
    font-size: 13px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .form-options .forgot-password-link {
    font-size: 12px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-form .auth-submit-btn {
    padding: 12px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .auth-page .auth-left {
    padding: 24px 20px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-title {
    font-size: 28px;
  }
  .auth-page .auth-left .auth-form-wrapper .auth-subtitle {
    font-size: 13px;
  }
}

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  background: #10131a;
  position: relative;
}
.dashboard-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../public/images/panel-bg.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  opacity: 0.5;
  mix-blend-mode: lighten;
}
@media (max-width: 768px) {
  .dashboard-wrapper:after {
    opacity: 0.3;
  }
}

.dashboard-sidebar {
  width: 280px;
  background: #13161d;
  padding: 24px 0;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 1000;
}
.dashboard-sidebar .sidebar-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 24px;
}
.dashboard-sidebar .sidebar-logo img {
  height: 50px;
  width: auto;
}
.dashboard-sidebar .sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 500px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item .sidebar-nav-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: opacity 0.3s;
  flex-shrink: 0;
  position: absolute;
  left: 16px;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item .sidebar-nav-icon-normal {
  opacity: 1;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item .sidebar-nav-icon-active {
  opacity: 0;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item span {
  padding-left: 36px;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item:hover .sidebar-nav-icon-normal, .dashboard-sidebar .sidebar-nav .sidebar-nav-item.active .sidebar-nav-icon-normal {
  opacity: 0;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item:hover .sidebar-nav-icon-active, .dashboard-sidebar .sidebar-nav .sidebar-nav-item.active .sidebar-nav-icon-active {
  opacity: 1;
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}
.dashboard-sidebar .sidebar-nav .sidebar-nav-item.active {
  background: #ff373a;
  color: #fff;
}

.dashboard-main {
  flex: 1;
  margin-left: 280px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.dashboard-mobile-banner {
  display: none;
}

.dashboard-header {
  background: transparent;
  padding: 20px 40px;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
.dashboard-header .dashboard-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dashboard-header .mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}
.dashboard-header .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.dashboard-header .dashboard-logo img {
  height: 32px;
  width: auto;
}
.dashboard-header .dashboard-header-banner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-header .dashboard-header-banner .welcome-text {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
.dashboard-header .dashboard-header-banner .welcome-subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}
.dashboard-header .dashboard-header-banner .servisler-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title .servisler-title-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title span {
  color: #fff;
}
.dashboard-header .dashboard-header-banner .servisler-header-content .servisler-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}
.dashboard-header .dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-header .dashboard-header-right .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
}
.dashboard-header .dashboard-header-right .user-info .user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.dashboard-header .dashboard-header-right .user-info .user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dashboard-header .dashboard-header-right .user-info .user-details .username {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.dashboard-header .dashboard-header-right .user-info .user-details .user-balance {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.dashboard-header .dashboard-header-right .header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dashboard-header .dashboard-header-right .header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.dashboard-header .dashboard-header-right .header-icon-btn.notification-btn .notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #ff373a;
  border-radius: 50%;
  border: 2px solid #13161d;
}
.dashboard-header .dashboard-header-right .header-icon-btn.notification-btn.active {
  color: #fff;
}
.dashboard-header .dashboard-header-right .header-icon-btn.notification-btn.active .notification-badge {
  display: none;
}

.notification-panel {
  position: fixed;
  top: 80px;
  right: 40px;
  width: 420px;
  max-height: 600px;
  background: #13161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.notification-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.notification-panel .notification-panel-content {
  flex: 1;
  overflow-y: auto;
  background-color: #1d212b;
}
.notification-panel .notification-panel-content .notification-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s;
  padding: 30px 16px;
}
.notification-panel .notification-panel-content .notification-card:last-child {
  margin-bottom: 0;
}
.notification-panel .notification-panel-content .notification-card:hover {
  background: rgba(255, 255, 255, 0.05);
}
.notification-panel .notification-panel-content .notification-card .notification-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff373a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notification-panel .notification-panel-content .notification-card .notification-card-icon i {
  color: #fff;
  font-size: 14px;
}
.notification-panel .notification-panel-content .notification-card .notification-card-content {
  flex: 1;
}
.notification-panel .notification-panel-content .notification-card .notification-card-content .notification-card-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px 0;
}
.notification-panel .notification-panel-content .notification-card .notification-card-content .notification-card-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}
.notification-panel .notification-panel-content .notification-card .notification-card-time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dashboard-content {
  flex: 1;
  padding: 32px 40px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}
.dashboard-content .api-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  padding: 32px;
}
.dashboard-content .api-details h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.dashboard-content .api-details .api-table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-content .api-details .api-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-content .api-details .api-table tbody tr:last-child {
  border-bottom: none;
}
.dashboard-content .api-details .api-table tbody tr td {
  padding: 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.dashboard-content .api-details .api-table tbody tr td:first-child {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  width: 40%;
}
.dashboard-content .api-details .api-table tbody tr td:last-child {
  color: #fff;
  font-weight: 600;
}
.dashboard-content .api-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.dashboard-content .api-section .dropdown-section {
  margin-bottom: 24px;
}
.dashboard-content .api-section .dropdown-section .service-dropdown {
  width: 100%;
  max-width: 300px;
  height: 48px;
  padding: 0 40px 0 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.dashboard-content .api-section .dropdown-section .service-dropdown:focus {
  outline: none;
  border-color: #ff373a;
}
.dashboard-content .api-section .dropdown-section .service-dropdown option {
  background: #171d2b;
  color: #fff;
}
.dashboard-content .api-section .params-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-content .api-section .params-table thead tr th {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-content .api-section .params-table thead tr th:first-child {
  width: 30%;
}
.dashboard-content .api-section .params-table tbody tr td {
  padding: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-content .api-section .params-table tbody tr td:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.dashboard-content .api-section .params-table tbody tr td:last-child {
  color: rgba(255, 255, 255, 0.7);
}
.dashboard-content .api-section .example-response h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.dashboard-content .api-section .example-response .code-block {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: none;
  backdrop-filter: blur(15px);
  padding: 20px;
  overflow-x: auto;
}
.dashboard-content .api-section .example-response .code-block pre {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.dashboard-content .api-section .example-response .code-block pre code {
  display: block;
  white-space: pre;
  color: rgba(255, 255, 255, 0.8);
}
.dashboard-content .api-section .example-response .code-block pre code .json-key,
.dashboard-content .api-section .example-response .code-block pre code .json-string,
.dashboard-content .api-section .example-response .code-block pre code .json-number,
.dashboard-content .api-section .example-response .code-block pre code .json-boolean {
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.stat-card .stat-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-bottom: 20px;
  padding-right: 130px;
  gap: 12px;
  position: relative;
  z-index: 3;
}
.stat-card .stat-left .stat-icon {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 0;
  position: relative;
}
.stat-card .stat-left .stat-icon i {
  color: #fff;
  font-size: 18px;
}
.stat-card .stat-left .stat-icon i.fa-percent {
  font-size: 14px;
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.stat-card .stat-left .stat-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.stat-card .stat-left .stat-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.stat-card .stat-bottom {
  background: #ff373a;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  position: relative;
  z-index: 3;
}
.stat-card .stat-bottom .stat-value {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.stat-card .stat-bottom .stat-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 500px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.stat-card .stat-bottom .stat-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.stat-card .stat-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  margin-top: 0;
  z-index: 1;
  padding-bottom: 70px;
}
.stat-card .stat-image-wrapper .stat-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
}

.order-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
}

.order-left {
  padding: 30px;
  background-color: #1d212b;
  border-radius: 12px;
}
.order-left .order-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.order-left .order-tabs .order-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.order-left .order-tabs .order-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}
.order-left .order-tabs .order-tab.active {
  color: #fff;
  border-bottom-color: #ff373a;
}
.order-left .order-form .form-group {
  margin-bottom: 20px;
}
.order-left .order-form .form-group .form-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.order-left .order-form .form-group .select-wrapper {
  position: relative;
}
.order-left .order-form .form-group .select-wrapper .select-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff373a;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}
.order-left .order-form .form-group .select-wrapper .service-badge {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  pointer-events: none;
}
.order-left .order-form .form-group .select-wrapper .select-rocket {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  z-index: 2;
  pointer-events: none;
}
.order-left .order-form .form-group .select-wrapper .select-rocket.select-rocket-right {
  right: 40px;
}
.order-left .order-form .form-group .select-wrapper .select-rocket.select-rocket-left {
  left: 60px;
}
.order-left .order-form .form-group .select-wrapper .form-select {
  width: 100%;
  padding: 14px 44px 14px 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 55px;
}
.order-left .order-form .form-group .select-wrapper .form-select.service-select {
  padding-left: 85px;
}
.order-left .order-form .form-group .select-wrapper .form-select:focus {
  outline: none;
  border-color: #ff373a;
}
.order-left .order-form .form-group .select-wrapper .form-select option {
  background: #13161d;
  color: #fff;
}
.order-left .order-form .form-group .select-wrapper .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  pointer-events: none;
  z-index: 2;
}
.order-left .order-form .form-group .input-wrapper {
  position: relative;
}
.order-left .order-form .form-group .input-wrapper .input-icon-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #ff373a;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}
.order-left .order-form .form-group .input-wrapper .input-icon-btn:hover {
  background: #e62e31;
}
.order-left .order-form .form-group .input-wrapper .input-icon-btn i {
  font-size: 14px;
}
.order-left .order-form .form-group .input-wrapper .form-input {
  width: 100%;
  padding: 14px 16px 14px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 55px;
}
.order-left .order-form .form-group .input-wrapper .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.order-left .order-form .form-group .input-wrapper .form-input:focus {
  outline: none;
  border-color: #ff373a;
}
.order-left .order-form .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.order-left .order-form .form-actions .btn-order {
  flex: 1;
  background: #01b76c;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}
.order-left .order-form .form-actions .btn-order:hover {
  background: #019e5a;
  transform: translateY(-2px);
}
.order-left .order-form .form-actions .btn-order i {
  font-size: 14px;
}
.order-left .order-form .form-actions .btn-balance-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}
.order-left .order-form .form-actions .btn-balance-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.order-left .order-form .form-actions .btn-balance-secondary i {
  font-size: 14px;
}

.order-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.order-right-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-right-right {
  display: flex;
  flex-direction: column;
}

.service-info-card,
.service-description-card {
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.service-info-card .service-info-header,
.service-description-card .service-info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.service-info-card .service-info-header i,
.service-description-card .service-info-header i {
  font-size: 15px;
  border: 1px solid #444959;
  color: #444959;
  padding: 5px;
  border-radius: 6px;
}
.service-info-card .service-info-header h3,
.service-description-card .service-info-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.service-info-card .service-divider,
.service-description-card .service-divider {
  height: 2px;
  background: #ff373a;
  margin-bottom: 16px;
  border-radius: 2px;
}
.service-info-card .service-info-content,
.service-description-card .service-info-content {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.service-info-card .service-info-item,
.service-description-card .service-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
  padding: 10px 16px;
}
.service-info-card .service-info-item .fab.fa-youtube,
.service-description-card .service-info-item .fab.fa-youtube {
  color: #ff373a;
  font-size: 18px;
}
.service-info-card .service-info-item .service-rocket-icon,
.service-description-card .service-info-item .service-rocket-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.service-info-card .service-info-item span,
.service-description-card .service-info-item span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.service-info-card .service-info-metrics,
.service-description-card .service-info-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.031372549);
  padding: 4px 16px;
}
.service-info-card .service-info-metrics .metric-item,
.service-description-card .service-info-metrics .metric-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-info-card .service-info-metrics .metric-item .metric-label,
.service-description-card .service-info-metrics .metric-item .metric-label {
  color: rgba(255, 255, 255, 0.5);
}
.service-info-card .service-info-metrics .metric-item .metric-value,
.service-description-card .service-info-metrics .metric-item .metric-value {
  color: #ffffff;
}
.service-info-card .service-description-list,
.service-description-card .service-description-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 16px;
}
.service-info-card .service-description-list li,
.service-description-card .service-description-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 0;
}

.balance-load-card {
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.balance-load-card .balance-load-content {
  padding: 28px 24px 20px 24px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.balance-load-card .balance-load-greeting {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.balance-load-card .balance-load-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0 0 24px 0;
  line-height: 1.5;
}
.balance-load-card .btn-balance-load {
  background: #ff373a;
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  justify-content: center;
}
.balance-load-card .btn-balance-load:hover {
  background: #e62e31;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 55, 58, 0.3);
}
.balance-load-card .btn-balance-load i {
  font-size: 18px;
}
.balance-load-card .balance-load-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 70%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
  margin-top: auto;
}

@media (max-width: 1400px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .order-section {
    grid-template-columns: 1fr;
  }
  .order-right {
    grid-template-columns: 1fr;
  }
  .dashboard-header .dashboard-header-banner .welcome-text {
    font-size: 14px;
  }
  .dashboard-header .dashboard-header-banner .welcome-subtext {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .dashboard-sidebar {
    width: 240px;
  }
  .dashboard-main {
    margin-left: 240px;
  }
  .dashboard-header {
    padding: 16px 24px;
  }
  .dashboard-header .dashboard-header-content {
    flex-wrap: wrap;
    gap: 16px;
  }
  .dashboard-header .dashboard-header-banner {
    order: 3;
    width: 100%;
  }
  .dashboard-content {
    padding: 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
  }
  .dashboard-sidebar.active {
    transform: translateX(0);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }
  .dashboard-main {
    margin-left: 0;
  }
  .dashboard-mobile-banner {
    display: block;
    padding: 16px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .dashboard-mobile-banner .welcome-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
  }
  .dashboard-mobile-banner .welcome-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
  }
  .dashboard-mobile-banner .servisler-header-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex-wrap: wrap;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title .servisler-title-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title span {
    color: #fff;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
  }
  .notification-panel {
    top: 70px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: 70vh;
  }
  .dashboard-header {
    padding: 12px 16px;
  }
  .dashboard-header .dashboard-header-content {
    gap: 12px;
  }
  .dashboard-header .mobile-menu-toggle {
    display: flex;
  }
  .dashboard-header .dashboard-logo {
    display: none;
  }
  .dashboard-header .dashboard-header-banner {
    display: none;
  }
  .dashboard-header .dashboard-header-right {
    margin-left: auto;
  }
  .dashboard-header .dashboard-header-right .user-info {
    padding: 6px 12px;
  }
  .dashboard-header .dashboard-header-right .user-info .user-details .username {
    font-size: 13px;
  }
  .dashboard-header .dashboard-header-right .user-info .user-details .user-balance {
    font-size: 11px;
  }
  .dashboard-header .dashboard-header-right .header-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .dashboard-content {
    padding: 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-card {
    min-height: 180px;
  }
  .stat-card .stat-left {
    padding: 20px;
    padding-right: 130px;
  }
  .stat-card .stat-left .stat-title {
    font-size: 18px;
  }
  .stat-card .stat-left .stat-description {
    font-size: 12px;
  }
  .stat-card .stat-bottom {
    padding: 12px 20px;
  }
  .stat-card .stat-bottom .stat-value {
    font-size: 13px;
  }
  .stat-card .stat-image-wrapper {
    width: 120px;
    height: 100%;
    padding-bottom: 60px;
  }
  .order-left .order-tabs {
    gap: 6px;
  }
  .order-left .order-tabs .order-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  .order-left .order-form .form-actions {
    flex-direction: column;
  }
  .order-left .order-form .form-actions .btn-order,
  .order-left .order-form .form-actions .btn-balance-secondary {
    width: 100%;
  }
  .order-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-info-card,
  .service-description-card {
    padding: 20px;
  }
  .balance-load-card .balance-load-content {
    padding: 20px 16px 16px 16px;
  }
  .balance-load-card .balance-load-greeting {
    font-size: 20px;
  }
  .balance-load-card .balance-load-text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .balance-load-card .btn-balance-load {
    padding: 14px 24px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .dashboard-header .dashboard-header-right .user-info .user-details {
    display: none;
  }
  .stat-card .stat-left {
    padding: 16px;
    padding-right: 110px;
  }
  .stat-card .stat-left .stat-icon {
    width: 40px;
    height: 40px;
  }
  .stat-card .stat-left .stat-icon i {
    font-size: 18px;
  }
  .stat-card .stat-left .stat-title {
    font-size: 16px;
  }
  .stat-card .stat-left .stat-description {
    font-size: 11px;
  }
  .stat-card .stat-bottom {
    padding: 12px 16px;
  }
  .stat-card .stat-bottom .stat-value {
    font-size: 12px;
  }
  .stat-card .stat-bottom .stat-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .stat-card .stat-image-wrapper {
    width: 100px;
    height: 100%;
    padding-bottom: 55px;
  }
}
.servisler-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  margin-top: 50px;
}
.servisler-filters .servisler-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 100%;
}
.servisler-filters .servisler-search-wrapper .servisler-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  z-index: 1;
}
.servisler-filters .servisler-search-wrapper .servisler-search-input {
  width: 100%;
  height: 55px;
  padding: 0 20px 0 44px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.servisler-filters .servisler-search-wrapper .servisler-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.servisler-filters .servisler-search-wrapper .servisler-search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2);
}
.servisler-filters .servisler-filter-btn {
  background: #ff373a;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  height: 55px;
}
.servisler-filters .servisler-filter-btn:hover {
  background: #e62e31;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 55, 58, 0.3);
}

.servisler-table .servisler-table-header {
  display: grid;
  grid-template-columns: 80px 2fr 100px 100px 100px 160px 80px;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.servisler-table .servisler-table-header .servisler-table-header-cell {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.servisler-table .servisler-category {
  margin-bottom: 24px;
}
.servisler-table .servisler-category .servisler-category-header {
  border-radius: 12px;
  background: #ff373a;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.servisler-table .servisler-category .servisler-category-header .servisler-category-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.servisler-table .servisler-category .servisler-category-header .servisler-category-icon i {
  font-size: 18px;
  color: #fff;
}
.servisler-table .servisler-category .servisler-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.0509803922);
  backdrop-filter: blur(15px);
  padding: 12px;
}
.servisler-table .servisler-category .servisler-items .servisler-item {
  display: grid;
  grid-template-columns: 80px 2fr 100px 100px 100px 160px 80px;
  gap: 16px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(106, 106, 149, 0.06);
  transition: all 0.3s;
  word-wrap: break-word;
  overflow-wrap: break-word;
  cursor: pointer;
}
.servisler-table .servisler-category .servisler-items .servisler-item:hover {
  background: rgba(106, 106, 149, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-id {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-name {
  gap: 8px;
  font-weight: 500;
  min-width: 0;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-name span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-name i {
  color: #ffffff;
  font-size: 12px;
  flex-shrink: 0;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-price {
  color: #fff;
  font-weight: 600;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-description {
  justify-content: center;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-description .servisler-description-btn {
  background: #ff373a;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-description .servisler-description-btn:hover {
  transform: scale(1.2);
}

@media (max-width: 1400px) {
  .servisler-table .servisler-table-header,
  .servisler-table .servisler-category .servisler-items .servisler-item {
    grid-template-columns: 70px 2fr 90px 90px 90px 140px 70px;
    gap: 12px;
  }
}
@media (max-width: 1200px) {
  .servisler-table .servisler-table-header,
  .servisler-table .servisler-category .servisler-items .servisler-item {
    grid-template-columns: 60px 2fr 80px 80px 80px 120px 60px;
    gap: 10px;
    font-size: 13px;
  }
  .servisler-filters .servisler-filter-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title {
    font-size: 24px;
    gap: 12px;
  }
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title .servisler-title-logo {
    height: 32px;
  }
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-subtitle {
    font-size: 12px;
  }
  .servisler-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .servisler-filters .servisler-search-wrapper {
    max-width: 100%;
  }
  .servisler-filters .servisler-filter-btn {
    width: 100%;
  }
  .servisler-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .servisler-table .servisler-table-header {
    display: none;
  }
  .servisler-table .servisler-category .servisler-items {
    padding: 8px;
    gap: 8px;
    border: none;
    background-color: transparent;
  }
  .servisler-table .servisler-category .servisler-items .servisler-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item {
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(106, 106, 149, 0.06);
    justify-content: space-between;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item::before {
    content: attr(data-label);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-id::before {
    content: "Servis ID: ";
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-name::before {
    content: "Servis Adı: ";
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-price::before {
    content: "Fiyat: ";
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-min::before {
    content: "Minimum: ";
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-max::before {
    content: "Maksimum: ";
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-completion::before {
    content: "Tamamlanma: ";
  }
  .servisler-table .servisler-category .servisler-items .servisler-item .servisler-detail-item.servisler-description {
    background: none;
  }
}
@media (max-width: 768px) {
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title {
    font-size: 20px;
    gap: 10px;
  }
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title .servisler-title-logo {
    height: 28px;
  }
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-subtitle {
    font-size: 11px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title {
    font-size: 18px;
    gap: 8px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title .servisler-title-logo {
    height: 24px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-subtitle {
    font-size: 11px;
  }
  .servisler-filters .servisler-search-wrapper .servisler-search-input {
    height: 44px;
    font-size: 13px;
  }
  .servisler-filters .servisler-search-wrapper .servisler-search-icon {
    font-size: 13px;
    left: 14px;
  }
  .servisler-filters .servisler-filter-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .servisler-table .servisler-category .servisler-category-header {
    padding: 12px 16px;
    font-size: 14px;
  }
  .servisler-table .servisler-category .servisler-category-header .servisler-category-icon {
    width: 28px;
    height: 28px;
  }
  .servisler-table .servisler-category .servisler-category-header .servisler-category-icon i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title {
    font-size: 18px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-title .servisler-title-logo {
    height: 24px;
  }
  .dashboard-header .dashboard-header-banner .servisler-header-content .servisler-subtitle {
    font-size: 11px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title {
    font-size: 16px;
    gap: 6px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-title .servisler-title-logo {
    height: 20px;
  }
  .dashboard-mobile-banner .servisler-header-content .servisler-subtitle {
    font-size: 10px;
  }
}
.siparisler-page-header {
  margin-bottom: 32px;
}
.siparisler-page-header .siparisler-page-title {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.siparisler-page-header .siparisler-page-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.siparisler-filters-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.siparisler-filters-wrapper .siparisler-status-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1d212b;
  backdrop-filter: blur(15px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 80px;
  height: 100%;
  min-height: 110px;
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn .filter-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0.7);
  transition: filter 0.3s;
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn span {
  white-space: nowrap;
  text-align: center;
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn:hover {
  background: rgba(106, 106, 149, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn:hover .filter-icon {
  filter: brightness(5);
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn.active {
  background: #ff373a;
  border-color: #ff373a;
  color: #fff;
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn.active .filter-icon {
  filter: brightness(5);
}
.siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn.active:hover .filter-icon {
  filter: brightness(5);
}
.siparisler-filters-wrapper .siparisler-support-box {
  background: #ff373a;
  border-radius: 6px;
  padding: 20px 24px;
  min-width: 320px;
}
.siparisler-filters-wrapper .siparisler-support-box .support-box-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-btn i {
  font-size: 14px;
}
.siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.siparisler-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.siparisler-list .siparis-date-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.siparisler-list .siparis-date-group .siparis-date-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(106, 106, 149, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}
.siparisler-list .siparis-date-group .siparis-date-header i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.siparisler-list .siparis-date-group .siparis-date-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.siparisler-list .siparis-date-group .siparis-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item {
  background: rgba(106, 106, 149, 0.06);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item:hover {
  background: rgba(106, 106, 149, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content {
  display: flex;
  flex-direction: column;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.0509803922);
  padding: 20px 24px;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-top-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-top-left .siparis-id {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 8px 14px;
  background: rgba(106, 106, 149, 0.15);
  border-radius: 8px;
  width: fit-content;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-top-left .siparis-service {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-status-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-status-btn.completed {
  background: #01b76c;
  color: #fff;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-status-btn.pending {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-status-btn.processing {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-status-btn.cancelled {
  background: rgba(255, 55, 58, 0.2);
  color: #ff373a;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.031372549);
  padding: 10px 24px;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-link i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-link:hover i {
  color: rgba(255, 255, 255, 0.8);
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-detail-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-detail-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.dashboard-header-banner .siparisler-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header-banner .siparisler-header-content .siparisler-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header-banner .siparisler-header-content .siparisler-title span {
  color: #fff;
}
.dashboard-header-banner .siparisler-header-content .siparisler-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.dashboard-mobile-banner .siparisler-header-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard-mobile-banner .siparisler-header-content .siparisler-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex-wrap: wrap;
}
.dashboard-mobile-banner .siparisler-header-content .siparisler-title span {
  color: #fff;
}
.dashboard-mobile-banner .siparisler-header-content .siparisler-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .siparisler-filters-wrapper {
    flex-direction: column;
  }
  .siparisler-filters-wrapper .siparisler-status-filters {
    width: 100%;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn {
    flex: 1;
    justify-content: center;
  }
  .siparisler-filters-wrapper .siparisler-support-box {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 992px) {
  .dashboard-header .dashboard-header-banner .siparisler-header-content .siparisler-title {
    font-size: 24px;
    gap: 12px;
  }
  .dashboard-header .dashboard-header-banner .siparisler-header-content .siparisler-subtitle {
    font-size: 12px;
  }
  .siparisler-page-header .siparisler-page-title {
    font-size: 24px;
  }
  .siparisler-page-header .siparisler-page-description {
    font-size: 13px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn .filter-icon {
    width: 18px;
    height: 18px;
  }
  .siparisler-filters-wrapper .siparisler-support-box {
    padding: 16px 20px;
  }
  .siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-text {
    font-size: 13px;
  }
  .siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content {
    flex-direction: column;
    gap: 16px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-right {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .dashboard-header .dashboard-header-banner .siparisler-header-content .siparisler-title {
    font-size: 20px;
    gap: 10px;
  }
  .dashboard-header .dashboard-header-banner .siparisler-header-content .siparisler-subtitle {
    font-size: 11px;
  }
  .dashboard-mobile-banner .siparisler-header-content .siparisler-title {
    font-size: 18px;
    gap: 8px;
  }
  .dashboard-mobile-banner .siparisler-header-content .siparisler-subtitle {
    font-size: 11px;
  }
  .siparisler-page-header {
    margin-bottom: 24px;
  }
  .siparisler-page-header .siparisler-page-title {
    font-size: 20px;
  }
  .siparisler-page-header .siparisler-page-description {
    font-size: 12px;
  }
  .siparisler-filters-wrapper {
    gap: 16px;
    margin-bottom: 24px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters {
    gap: 8px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn .filter-icon {
    width: 16px;
    height: 16px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn span {
    font-size: 12px;
  }
  .siparisler-filters-wrapper .siparisler-support-box {
    padding: 14px 18px;
  }
  .siparisler-filters-wrapper .siparisler-support-box .support-box-content {
    gap: 10px;
  }
  .siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-text {
    font-size: 12px;
  }
  .siparisler-filters-wrapper .siparisler-support-box .support-box-content .support-box-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .siparisler-list {
    gap: 24px;
  }
  .siparisler-list .siparis-date-group {
    gap: 10px;
  }
  .siparisler-list .siparis-date-group .siparis-date-header {
    padding: 10px 14px;
  }
  .siparisler-list .siparis-date-group .siparis-date-header i {
    font-size: 12px;
  }
  .siparisler-list .siparis-date-group .siparis-date-header span {
    font-size: 12px;
  }
  .siparisler-list .siparis-date-group .siparis-items {
    gap: 10px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item {
    padding: 16px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content {
    gap: 16px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top {
    flex-direction: column;
    gap: 12px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-top-left {
    gap: 8px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-top-left .siparis-id {
    font-size: 12px;
    padding: 6px 12px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-top-left .siparis-service {
    font-size: 14px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-top .siparis-status-btn {
    width: 100%;
    padding: 10px;
    font-size: 12px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom {
    gap: 12px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper {
    gap: 12px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-link {
    font-size: 12px;
  }
  .siparisler-list .siparis-date-group .siparis-items .siparis-item .siparis-item-content .siparis-item-bottom .siparis-link-wrapper .siparis-detail-btn {
    width: 100%;
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn .filter-icon {
    width: 14px;
    height: 14px;
  }
  .siparisler-filters-wrapper .siparisler-status-filters .siparisler-filter-btn span {
    font-size: 11px;
  }
}
.bakiye-ekle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.payment-methods .payment-method-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  background-color: #1d212b;
  border-radius: 12px;
}
.payment-methods .payment-method-card .payment-method-top {
  background: #1d212b;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.payment-methods .payment-method-card .payment-method-top .payment-method-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-methods .payment-method-card .payment-method-top .payment-method-check i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.payment-methods .payment-method-card .payment-method-top .payment-method-check i.fa-circle {
  border: 0px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: block;
}
.payment-methods .payment-method-card .payment-method-top .payment-method-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  padding-right: 32px;
}
.payment-methods .payment-method-card .payment-method-bottom {
  background: rgba(255, 255, 255, 0.0509803922);
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.payment-methods .payment-method-card .payment-method-bottom .payment-method-bonus {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
.payment-methods .payment-method-card.active {
  background-color: #ff373a;
}
.payment-methods .payment-method-card.active .payment-method-top {
  background: #ff373a;
}
.payment-methods .payment-method-card.active .payment-method-top .payment-method-check i {
  color: #fff;
}
.payment-methods .payment-method-card.active .payment-method-top .payment-method-title {
  color: #fff;
}
.payment-methods .payment-method-card.active .payment-method-bottom {
  background: rgba(255, 255, 255, 0.1019607843);
}
.payment-methods .payment-method-card.active .payment-method-bottom .payment-method-bonus {
  color: rgba(255, 255, 255, 0.9);
}
.payment-methods .payment-method-card:hover:not(.active) .payment-method-top {
  background: rgba(29, 33, 43, 0.9);
}
.payment-methods .payment-method-card:hover:not(.active) .payment-method-bottom {
  background: rgba(255, 255, 255, 0.1);
}

.bakiye-divider {
  height: 2px;
  background: #ff373a;
  border-radius: 2px;
  margin: 8px 0;
}

.bakiye-ekle-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.bakiye-ekle-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bakiye-ekle-left .bakiye-ekle-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.bakiye-ekle-left .bakiye-ekle-section-header i {
  font-size: 15px;
  border: 1px solid #444959;
  color: #444959;
  padding: 5px;
  border-radius: 6px;
}
.bakiye-ekle-left .bakiye-ekle-section-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.bakiye-ekle-left .amount-selection-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bakiye-ekle-left .amount-buttons {
  display: flex;
  gap: 12px;
}
.bakiye-ekle-left .amount-buttons .amount-btn {
  flex: 1;
  padding: 12px 20px;
  background: #1d212b;
  backdrop-filter: blur(15px);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.bakiye-ekle-left .amount-buttons .amount-btn:hover {
  background: rgba(106, 106, 149, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.bakiye-ekle-left .amount-buttons .amount-btn.active {
  background: #ff373a;
  border-color: #ff373a;
  color: #fff;
}
.bakiye-ekle-left .bakiye-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bakiye-ekle-left .bakiye-form .form-group .form-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.bakiye-ekle-left .bakiye-form .form-group .form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  min-height: 55px;
  box-sizing: border-box;
}
.bakiye-ekle-left .bakiye-form .form-group .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.bakiye-ekle-left .bakiye-form .form-group .form-input:focus {
  border-color: #ff373a;
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
.bakiye-ekle-left .bakiye-form .form-group .input-wrapper-currency {
  position: relative;
}
.bakiye-ekle-left .bakiye-form .form-group .input-wrapper-currency .currency-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
}
.bakiye-ekle-left .bakiye-form .form-group .input-wrapper-currency .form-input {
  padding-left: 44px;
}
.bakiye-ekle-left .balance-info {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.bakiye-ekle-left .balance-info .balance-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bakiye-ekle-left .balance-info .balance-info-item .balance-info-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.bakiye-ekle-left .balance-info .balance-info-item .balance-info-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.bakiye-ekle-left .btn-bakiye-yukle {
  width: 100%;
  padding: 20px 24px;
  background: #01b76c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
  margin-top: 8px;
}
.bakiye-ekle-left .btn-bakiye-yukle i {
  font-size: 18px;
}
.bakiye-ekle-left .btn-bakiye-yukle:hover {
  background: #019e5a;
  transform: translateY(-2px);
}

.gecmis-odemeler-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gecmis-odemeler-right .gecmis-odemeler-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.gecmis-odemeler-right .gecmis-odemeler-header i {
  font-size: 15px;
  border: 1px solid #444959;
  color: #444959;
  padding: 5px;
  border-radius: 6px;
}
.gecmis-odemeler-right .gecmis-odemeler-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.gecmis-odemeler-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gecmis-odemeler-list .gecmis-odeme-item {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: all 0.3s;
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left .odeme-item-top {
  background: rgba(255, 255, 255, 0.0509803922);
  padding: 16px 20px;
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left .odeme-item-top .odeme-type {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left .odeme-item-bottom {
  background: rgba(255, 255, 255, 0.031372549);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left .odeme-item-bottom .odeme-id {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left .odeme-item-bottom .odeme-separator {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-left .odeme-item-bottom .odeme-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-right {
  background: #ff373a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  flex-shrink: 0;
  min-width: 100px;
}
.gecmis-odemeler-list .gecmis-odeme-item .odeme-item-right .odeme-amount {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.dashboard-header-banner .bakiye-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header-banner .bakiye-header-content .bakiye-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header-banner .bakiye-header-content .bakiye-title span {
  color: #fff;
}
.dashboard-header-banner .bakiye-header-content .bakiye-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.dashboard-mobile-banner .bakiye-header-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard-mobile-banner .bakiye-header-content .bakiye-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex-wrap: wrap;
}
.dashboard-mobile-banner .bakiye-header-content .bakiye-title span {
  color: #fff;
}
.dashboard-mobile-banner .bakiye-header-content .bakiye-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .bakiye-ekle-content {
    grid-template-columns: 1fr;
  }
  .dashboard-header .dashboard-header-banner .bakiye-header-content .bakiye-title {
    font-size: 24px;
    gap: 12px;
  }
  .dashboard-header .dashboard-header-banner .bakiye-header-content .bakiye-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  .bakiye-ekle-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .dashboard-header .dashboard-header-banner .bakiye-header-content .bakiye-title {
    font-size: 20px;
    gap: 10px;
  }
  .dashboard-header .dashboard-header-banner .bakiye-header-content .bakiye-subtitle {
    font-size: 11px;
  }
  .dashboard-mobile-banner .bakiye-header-content .bakiye-title {
    font-size: 18px;
    gap: 8px;
  }
  .dashboard-mobile-banner .bakiye-header-content .bakiye-subtitle {
    font-size: 11px;
  }
  .bakiye-ekle-wrapper {
    gap: 16px;
    margin-top: 24px;
  }
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .payment-methods .payment-method-card .payment-method-top {
    padding: 12px;
  }
  .payment-methods .payment-method-card .payment-method-top .payment-method-title {
    font-size: 11px;
  }
  .payment-methods .payment-method-card .payment-method-bottom {
    padding: 12px;
  }
  .payment-methods .payment-method-card .payment-method-bottom .payment-method-bonus {
    font-size: 10px;
  }
  .bakiye-ekle-left .amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .bakiye-ekle-left .amount-buttons .amount-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  .gecmis-odemeler-list .gecmis-odeme-item {
    flex-direction: column;
  }
  .gecmis-odemeler-list .gecmis-odeme-item .odeme-item-right {
    width: 100%;
  }
  .gecmis-odemeler-list .gecmis-odeme-item .odeme-item-right .odeme-amount {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .bakiye-ekle-left .amount-buttons {
    grid-template-columns: 1fr;
  }
}
.destek-talebi-wrapper {
  margin-top: 50px;
}

.destek-talebi-content {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  align-items: flex-start;
  gap: 24px;
}

.destek-talebi-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.destek-talebi-left .destek-talebi-greeting {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.destek-talebi-left .destek-talebi-greeting .greeting-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.destek-talebi-left .destek-talebi-greeting .btn-ticket-olustur {
  background: #ff373a;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  width: 100%;
}
.destek-talebi-left .destek-talebi-greeting .btn-ticket-olustur i {
  font-size: 16px;
}
.destek-talebi-left .destek-talebi-greeting .btn-ticket-olustur:hover {
  background: #e62e31;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 55, 58, 0.3);
}
.destek-talebi-left .destek-talebi-character {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  margin-top: auto;
  padding-top: 20px;
}
.destek-talebi-left .destek-talebi-character .character-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  min-height: 300px;
  margin-bottom: -40px;
}

.destek-talebi-middle {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
}
.destek-talebi-middle .destek-talebi-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1600px) {
  .destek-talebi-middle .destek-talebi-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .destek-talebi-middle .destek-talebi-categories {
    grid-template-columns: repeat(1, 1fr);
  }
}
.destek-talebi-middle .destek-talebi-categories .category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #2d323e;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  min-width: 100px;
}
.destek-talebi-middle .destek-talebi-categories .category-btn .category-icon {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
.destek-talebi-middle .destek-talebi-categories .category-btn .category-check {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 12px;
  color: #fff;
  display: none;
}
.destek-talebi-middle .destek-talebi-categories .category-btn span {
  font-size: 13px;
}
.destek-talebi-middle .destek-talebi-categories .category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}
.destek-talebi-middle .destek-talebi-categories .category-btn.active {
  background: #ff373a;
  border-color: #ff373a;
  color: #fff;
}
.destek-talebi-middle .destek-talebi-categories .category-btn.active .category-check {
  display: block;
}
.destek-talebi-middle .destek-talebi-categories .category-btn.active .category-icon {
  color: #fff;
}
.destek-talebi-middle .destek-talebi-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.destek-talebi-middle .destek-talebi-form .form-group .form-label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.destek-talebi-middle .destek-talebi-form .form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .input-icon-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff373a;
  border-radius: 8px 0 0 8px;
  z-index: 2;
  flex-shrink: 0;
}
.destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .input-icon-wrapper .input-icon {
  color: #fff;
  font-size: 16px;
}
.destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .form-input {
  width: 100%;
  padding: 14px 16px 14px 70px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  min-height: 55px;
  box-sizing: border-box;
}
.destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .form-input:focus {
  border-color: #ff373a;
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
.destek-talebi-middle .destek-talebi-form .form-group .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  resize: vertical;
  min-height: 150px;
  box-sizing: border-box;
}
.destek-talebi-middle .destek-talebi-form .form-group .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.destek-talebi-middle .destek-talebi-form .form-group .form-textarea:focus {
  border-color: #ff373a;
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
.destek-talebi-middle .destek-talebi-form .btn-talep-olustur {
  background: #01b76c;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-top: 8px;
}
.destek-talebi-middle .destek-talebi-form .btn-talep-olustur:hover {
  background: #019e5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 183, 108, 0.3);
}

.destek-talebi-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
}
.destek-talebi-right .gecmis-talepler-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.destek-talebi-right .gecmis-talepler-header i {
  font-size: 15px;
  border: 1px solid #444959;
  color: #444959;
  padding: 5px;
  border-radius: 6px;
}
.destek-talebi-right .gecmis-talepler-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.destek-talebi-right .gecmis-talepler-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.destek-talebi-right .gecmis-talepler-list .talep-item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 12px;
}
.destek-talebi-right .gecmis-talepler-list .talep-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-description {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.0509803922);
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.031372549);
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-info .talep-id,
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-info .talep-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-info .talep-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  flex-shrink: 0;
  min-width: 120px;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right .talep-status-btn {
  border-radius: 6px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  background: none;
  color: #ffffff;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right.status-closed {
  background: #000000;
  color: #fff;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right.status-in-progress {
  background: #01b76c;
  color: #fff;
}
.destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right.status-waiting {
  background: #ff9800;
  color: #fff;
}

.dashboard-header-banner .destek-talebi-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header-banner .destek-talebi-header-content .destek-talebi-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header-banner .destek-talebi-header-content .destek-talebi-title span {
  color: #fff;
}
.dashboard-header-banner .destek-talebi-header-content .destek-talebi-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.dashboard-mobile-banner .destek-talebi-header-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard-mobile-banner .destek-talebi-header-content .destek-talebi-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex-wrap: wrap;
}
.dashboard-mobile-banner .destek-talebi-header-content .destek-talebi-title span {
  color: #fff;
}
.dashboard-mobile-banner .destek-talebi-header-content .destek-talebi-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .destek-talebi-content {
    grid-template-columns: 1fr;
  }
  .dashboard-header .dashboard-header-banner .destek-talebi-header-content .destek-talebi-title {
    font-size: 24px;
    gap: 12px;
  }
  .dashboard-header .dashboard-header-banner .destek-talebi-header-content .destek-talebi-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .destek-talebi-content {
    grid-template-columns: 1fr;
  }
  .destek-talebi-left .destek-talebi-character {
    position: relative;
    margin-top: 20px;
    padding-top: 0;
  }
  .destek-talebi-left .destek-talebi-character .character-image {
    max-width: 200px;
    min-height: 200px;
  }
}
@media (max-width: 768px) {
  .dashboard-header .dashboard-header-banner .destek-talebi-header-content .destek-talebi-title {
    font-size: 20px;
    gap: 10px;
  }
  .dashboard-header .dashboard-header-banner .destek-talebi-header-content .destek-talebi-subtitle {
    font-size: 11px;
  }
  .dashboard-mobile-banner .destek-talebi-header-content .destek-talebi-title {
    font-size: 18px;
    gap: 8px;
  }
  .dashboard-mobile-banner .destek-talebi-header-content .destek-talebi-subtitle {
    font-size: 11px;
  }
  .destek-talebi-wrapper {
    margin-top: 24px;
  }
  .destek-talebi-left {
    padding: 20px;
  }
  .destek-talebi-left .destek-talebi-greeting .greeting-text {
    font-size: 18px;
  }
  .destek-talebi-left .destek-talebi-greeting .btn-ticket-olustur {
    padding: 14px 20px;
    font-size: 14px;
  }
  .destek-talebi-left .destek-talebi-character .character-image {
    max-width: 150px;
  }
  .destek-talebi-middle {
    padding: 20px;
  }
  .destek-talebi-middle .destek-talebi-categories {
    gap: 8px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn {
    padding: 12px 16px;
    font-size: 13px;
    min-width: 80px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn .category-icon {
    font-size: 18px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn .category-check {
    top: 6px;
    right: 6px;
    font-size: 10px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn span {
    font-size: 12px;
  }
  .destek-talebi-middle .destek-talebi-form {
    gap: 16px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .input-icon-wrapper {
    width: 50px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .input-icon-wrapper .input-icon {
    font-size: 14px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .form-input {
    padding: 12px 14px 12px 65px;
    font-size: 13px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .form-textarea {
    padding: 12px 14px;
    font-size: 13px;
  }
  .destek-talebi-middle .destek-talebi-form .btn-talep-olustur {
    padding: 14px 20px;
    font-size: 14px;
  }
  .destek-talebi-right {
    padding: 20px;
  }
  .destek-talebi-right .gecmis-talepler-list .talep-item {
    flex-direction: column;
  }
  .destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-description {
    padding: 16px 20px;
    font-size: 13px;
  }
  .destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-left .talep-info {
    padding: 12px 20px;
    font-size: 11px;
  }
  .destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right {
    padding: 12px 20px;
    width: 100%;
  }
  .destek-talebi-right .gecmis-talepler-list .talep-item .talep-item-right .talep-status-btn {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .destek-talebi-left .destek-talebi-greeting .greeting-text {
    font-size: 16px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn {
    flex: 1;
    min-width: calc(50% - 4px);
    padding: 10px 12px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn .category-icon {
    font-size: 16px;
  }
  .destek-talebi-middle .destek-talebi-categories .category-btn span {
    font-size: 11px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .input-icon-wrapper {
    width: 45px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .input-icon-wrapper .input-icon {
    font-size: 12px;
  }
  .destek-talebi-middle .destek-talebi-form .form-group .input-wrapper .form-input {
    padding: 10px 12px 10px 60px;
    font-size: 12px;
  }
}
.talep-detay-wrapper {
  margin-top: 50px;
}

.talep-detay-content {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: flex-start;
}

.talep-detay-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  position: relative;
}

.talep-detay-title-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.talep-detay-title-section .talep-detay-title {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.talep-detay-title-section .talep-detay-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.talep-topic-box {
  position: relative;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ff373a;
  padding-top: 0px;
  padding-bottom: 22px;
}
.talep-topic-box .talep-topic-number {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.talep-topic-box .talep-topic-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  padding-right: 80px;
}

.talep-conversation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 200px;
  max-height: 600px;
  overflow-y: auto;
  padding: 8px 0;
}
.talep-conversation .conversation-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.talep-conversation .conversation-message.message-user {
  align-items: flex-end;
}
.talep-conversation .conversation-message.message-user .message-bubble {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px 12px 4px 12px;
  padding: 16px 20px;
  max-width: 70%;
}
.talep-conversation .conversation-message.message-user .message-bubble .message-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.talep-conversation .conversation-message.message-user .message-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
}
.talep-conversation .conversation-message.message-user .message-meta .message-author {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.talep-conversation .conversation-message.message-user .message-meta .message-time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.talep-conversation .conversation-message.message-staff {
  align-items: flex-start;
}
.talep-conversation .conversation-message.message-staff .message-bubble {
  background: #ff373a;
  border-radius: 12px 12px 12px 4px;
  padding: 16px 20px;
  max-width: 70%;
}
.talep-conversation .conversation-message.message-staff .message-bubble .message-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.talep-conversation .conversation-message.message-staff .message-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}
.talep-conversation .conversation-message.message-staff .message-meta .message-author {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}
.talep-conversation .conversation-message.message-staff .message-meta .message-time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.talep-message-input {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.talep-message-input .message-input-field {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  min-height: 50px;
  box-sizing: border-box;
}
.talep-message-input .message-input-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.talep-message-input .message-input-field:focus {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
.talep-message-input .btn-message-send {
  background: #01b76c;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  min-height: 50px;
}
.talep-message-input .btn-message-send:hover {
  background: #019e5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 183, 108, 0.3);
}

.talep-detay-info {
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.talep-detay-info .talep-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid #ff373a;
}
.talep-detay-info .talep-info-header i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.talep-detay-info .talep-info-header i.fa-circle {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: block;
}
.talep-detay-info .talep-info-header .talep-info-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.talep-detay-info .talep-info-details {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.talep-detay-info .talep-info-details .talep-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.talep-detay-info .talep-info-details .talep-info-item .talep-info-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.talep-detay-info .talep-info-details .talep-info-item .talep-info-value {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.talep-detay-info .talep-info-message {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.talep-detay-info .talep-info-message p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .talep-detay-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .talep-detay-wrapper {
    margin-top: 24px;
  }
  .talep-detay-main {
    padding: 20px;
  }
  .talep-detay-main .talep-detay-title-section .talep-detay-title {
    font-size: 24px;
  }
  .talep-detay-main .talep-detay-title-section .talep-detay-subtitle {
    font-size: 13px;
  }
  .talep-detay-main .talep-topic-box {
    padding: 16px 20px;
  }
  .talep-detay-main .talep-topic-box .talep-topic-number {
    top: 12px;
    right: 16px;
    font-size: 12px;
  }
  .talep-detay-main .talep-topic-box .talep-topic-text {
    font-size: 14px;
    padding-right: 60px;
  }
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-bubble, .talep-detay-main .talep-conversation .conversation-message.message-staff .message-bubble {
    max-width: 85%;
    padding: 14px 18px;
  }
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-bubble .message-text, .talep-detay-main .talep-conversation .conversation-message.message-staff .message-bubble .message-text {
    font-size: 13px;
  }
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-meta, .talep-detay-main .talep-conversation .conversation-message.message-staff .message-meta {
    font-size: 12px;
  }
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-meta .message-author,
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-meta .message-time, .talep-detay-main .talep-conversation .conversation-message.message-staff .message-meta .message-author,
  .talep-detay-main .talep-conversation .conversation-message.message-staff .message-meta .message-time {
    font-size: 11px;
  }
  .talep-detay-main .talep-message-input {
    flex-direction: column;
    gap: 10px;
  }
  .talep-detay-main .talep-message-input .message-input-field {
    width: 100%;
  }
  .talep-detay-main .talep-message-input .btn-message-send {
    width: 100%;
    padding: 12px 24px;
  }
  .talep-detay-info {
    padding: 20px;
  }
  .talep-detay-info .talep-info-header .talep-info-title {
    font-size: 16px;
  }
  .talep-detay-info .talep-info-details {
    gap: 12px;
  }
  .talep-detay-info .talep-info-details .talep-info-item .talep-info-label {
    font-size: 12px;
  }
  .talep-detay-info .talep-info-details .talep-info-item .talep-info-value {
    font-size: 14px;
  }
  .talep-detay-info .talep-info-message p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .talep-detay-main {
    padding: 16px;
  }
  .talep-detay-main .talep-detay-title-section .talep-detay-title {
    font-size: 20px;
  }
  .talep-detay-main .talep-topic-box {
    padding: 12px 16px;
  }
  .talep-detay-main .talep-topic-box .talep-topic-text {
    font-size: 13px;
    padding-right: 50px;
  }
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-bubble, .talep-detay-main .talep-conversation .conversation-message.message-staff .message-bubble {
    max-width: 90%;
    padding: 12px 16px;
  }
  .talep-detay-main .talep-conversation .conversation-message.message-user .message-bubble .message-text, .talep-detay-main .talep-conversation .conversation-message.message-staff .message-bubble .message-text {
    font-size: 12px;
  }
  .talep-detay-info {
    padding: 16px;
  }
}
.panel-kirala-wrapper {
  margin-top: 50px;
}

.panel-kirala-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

.panel-kirala-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background-color: #1d212b;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 100%;
}
.panel-kirala-left .panel-kirala-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.panel-kirala-left .panel-kirala-logo img {
  height: 60px;
  width: auto;
}
.panel-kirala-left .nameserver-card {
  background: #01b76c;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.panel-kirala-left .nameserver-card .nameserver-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.panel-kirala-left .nameserver-card .nameserver-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-kirala-left .nameserver-card .nameserver-fields .nameserver-field .nameserver-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  min-height: 55px;
  box-sizing: border-box;
  cursor: default;
  text-align: center;
}
.panel-kirala-left .nameserver-card .nameserver-fields .nameserver-field .nameserver-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.panel-kirala-left .nameserver-card .nameserver-fields .nameserver-field .nameserver-input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.panel-kirala-right .panel-kirala-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
}
.panel-kirala-right .panel-kirala-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel-kirala-right .panel-kirala-form .form-row.form-row-full {
  grid-template-columns: 1fr;
}
.panel-kirala-right .panel-kirala-form .form-row.form-row-actions {
  grid-template-columns: 250px 1fr;
  align-items: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.panel-kirala-right .panel-kirala-form .form-group .form-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.panel-kirala-right .panel-kirala-form .form-group .form-input,
.panel-kirala-right .panel-kirala-form .form-group .form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: all 0.3s;
  min-height: 55px;
  box-sizing: border-box;
}
.panel-kirala-right .panel-kirala-form .form-group .form-input::placeholder,
.panel-kirala-right .panel-kirala-form .form-group .form-select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.panel-kirala-right .panel-kirala-form .form-group .form-input:focus,
.panel-kirala-right .panel-kirala-form .form-group .form-select:focus {
  border-color: #ff373a;
  box-shadow: 0 0 0 3px rgba(255, 55, 58, 0.1);
}
.panel-kirala-right .panel-kirala-form .form-group .form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.panel-kirala-right .panel-kirala-form .form-group .form-select option {
  background: #1d212b;
  color: #fff;
}
.panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 100%;
  min-height: 55px;
  box-sizing: border-box;
}
.panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display .price-currency {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
}
.panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display .price-amount {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display .price-period {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}
.panel-kirala-right .panel-kirala-form .btn-panel-siparis-ver {
  width: 100%;
  padding: 20px 24px;
  background: #01b76c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
  min-height: 65px;
  box-sizing: border-box;
}
.panel-kirala-right .panel-kirala-form .btn-panel-siparis-ver:hover {
  background: #019e5a;
  transform: translateY(-2px);
}
.panel-kirala-right .panel-kirala-form .btn-panel-siparis-ver:active {
  transform: translateY(0);
}

.dashboard-header-banner .panel-kirala-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header-banner .panel-kirala-header-content .panel-kirala-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header-banner .panel-kirala-header-content .panel-kirala-title span {
  color: #fff;
}
.dashboard-header-banner .panel-kirala-header-content .panel-kirala-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}
.dashboard-header-banner .api-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header-banner .api-header-content .api-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header-banner .api-header-content .api-title span {
  color: #fff;
}
.dashboard-header-banner .api-header-content .api-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.dashboard-mobile-banner .panel-kirala-header-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dashboard-mobile-banner .panel-kirala-header-content .panel-kirala-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex-wrap: wrap;
}
.dashboard-mobile-banner .panel-kirala-header-content .panel-kirala-title span {
  color: #fff;
}
.dashboard-mobile-banner .panel-kirala-header-content .panel-kirala-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .panel-kirala-content {
    grid-template-columns: 1fr;
  }
  .dashboard-header .dashboard-header-banner .panel-kirala-header-content .panel-kirala-title {
    font-size: 24px;
    gap: 12px;
  }
  .dashboard-header .dashboard-header-banner .panel-kirala-header-content .panel-kirala-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .dashboard-header .dashboard-header-banner .panel-kirala-header-content .panel-kirala-title {
    font-size: 20px;
    gap: 10px;
  }
  .dashboard-header .dashboard-header-banner .panel-kirala-header-content .panel-kirala-subtitle {
    font-size: 11px;
  }
  .dashboard-mobile-banner .panel-kirala-header-content .panel-kirala-title {
    font-size: 18px;
    gap: 8px;
  }
  .dashboard-mobile-banner .panel-kirala-header-content .panel-kirala-subtitle {
    font-size: 11px;
  }
  .panel-kirala-wrapper {
    gap: 16px;
    margin-top: 24px;
  }
  .panel-kirala-left .nameserver-card {
    padding: 20px;
  }
  .panel-kirala-left .nameserver-card .nameserver-text {
    font-size: 13px;
  }
  .panel-kirala-left .nameserver-card .nameserver-fields {
    gap: 10px;
  }
  .panel-kirala-left .nameserver-card .nameserver-fields .nameserver-field .nameserver-input {
    padding: 12px 14px;
    font-size: 13px;
    min-height: 50px;
  }
  .panel-kirala-right .panel-kirala-form {
    padding: 20px;
    gap: 16px;
  }
  .panel-kirala-right .panel-kirala-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .panel-kirala-right .panel-kirala-form .form-row.form-row-actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .panel-kirala-right .panel-kirala-form .form-group .form-input,
  .panel-kirala-right .panel-kirala-form .form-group .form-select {
    padding: 12px 14px;
    font-size: 13px;
    min-height: 50px;
  }
  .panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display {
    padding: 14px 18px;
    min-height: 50px;
  }
  .panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display .price-currency {
    font-size: 14px;
  }
  .panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display .price-amount {
    font-size: 18px;
  }
  .panel-kirala-right .panel-kirala-form .panel-price-section .panel-price-display .price-period {
    font-size: 13px;
  }
  .panel-kirala-right .panel-kirala-form .btn-panel-siparis-ver {
    padding: 16px 20px;
    font-size: 14px;
    min-height: 50px;
  }
}
@media (max-width: 480px) {
  .panel-kirala-left .nameserver-card {
    padding: 16px;
  }
  .panel-kirala-left .nameserver-card .nameserver-text {
    font-size: 12px;
  }
  .panel-kirala-right .panel-kirala-form {
    padding: 16px;
  }
}
.dashboard-header-banner .hesabim-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-header-banner .hesabim-header-content .hesabim-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.dashboard-header-banner .hesabim-header-content .hesabim-title span {
  color: #fff;
}
.dashboard-header-banner .hesabim-header-content .hesabim-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.hesabim-wrapper {
  width: 100%;
}

.hesabim-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.hesabim-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hesabim-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hesabim-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: #1D212B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.hesabim-tab i {
  font-size: 14px;
}
.hesabim-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}
.hesabim-tab.active {
  background: #ff373a;
  border-color: #ff373a;
  color: #fff;
}

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

.hesabim-tab-panel {
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px;
}

.hesabim-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hesabim-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .hesabim-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.hesabim-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.hesabim-form .form-group .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.hesabim-form .form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.hesabim-form .form-group .input-wrapper .form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s;
}
.hesabim-form .form-group .input-wrapper .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.hesabim-form .form-group .input-wrapper .form-input:focus {
  outline: none;
  border-color: #ff373a;
  background: rgba(255, 255, 255, 0.08);
}
.hesabim-form .form-group .input-wrapper .form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hesabim-form .form-group .input-wrapper .form-select:focus {
  outline: none;
  border-color: #ff373a;
  background: rgba(255, 255, 255, 0.08);
}
.hesabim-form .form-group .input-wrapper .form-select option {
  background: #1d212b;
  color: #fff;
}
.hesabim-form .form-group .input-wrapper .select-arrow {
  position: absolute;
  right: 16px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  font-size: 12px;
}
.hesabim-form .form-group .input-wrapper .toggle-password-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hesabim-form .form-group .input-wrapper .toggle-password-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hesabim-form .form-group .input-wrapper .toggle-password-btn i {
  font-size: 16px;
}

.btn-hesabim-save {
  padding: 16px 24px;
  background: #01b76c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  width: 100%;
  min-height: 50px;
}
.btn-hesabim-save:hover {
  background: #019e5a;
  transform: translateY(-2px);
}

.hesabim-datetime-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hesabim-datetime-content .datetime-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.hesabim-datetime-content .form-group {
  margin: 0;
}
.hesabim-datetime-content .input-wrapper {
  position: relative;
}
.hesabim-datetime-content .input-wrapper .form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 50px;
  box-sizing: border-box;
}
.hesabim-datetime-content .input-wrapper .form-select:focus {
  outline: none;
  border-color: #ff373a;
  background: rgba(255, 255, 255, 0.08);
}
.hesabim-datetime-content .input-wrapper .form-select option {
  background: #1d212b;
  color: #fff;
}
.hesabim-datetime-content .input-wrapper .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  pointer-events: none;
  z-index: 2;
}
.hesabim-datetime-content .btn-hesabim-save {
  margin-top: 0;
  width: 100%;
}

.hesabim-api-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hesabim-api-content .api-key-generated {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(1, 183, 108, 0.15);
  border: 1px solid rgba(1, 183, 108, 0.4);
  border-radius: 8px;
  margin-bottom: 8px;
}
.hesabim-api-content .api-key-generated .api-key-text {
  color: #01b76c;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.hesabim-api-content .api-key-generated .api-key-display {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.hesabim-api-content .api-key-generated .api-key-display .api-key-value {
  flex: 1;
  color: #01b76c;
  font-size: 14px;
  font-family: monospace;
  word-break: break-all;
  font-weight: 500;
  line-height: 1.5;
}
.hesabim-api-content .api-key-generated .api-key-display .api-copy-btn {
  background: transparent;
  border: none;
  color: #01b76c;
  cursor: pointer;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 4px;
  flex-shrink: 0;
}
.hesabim-api-content .api-key-generated .api-key-display .api-copy-btn:hover {
  color: #019e5a;
  background: rgba(1, 183, 108, 0.1);
}
.hesabim-api-content .api-key-generated .api-key-display .api-copy-btn i {
  font-size: 16px;
}
.hesabim-api-content .form-group {
  margin: 0;
}
.hesabim-api-content .form-group .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.hesabim-api-content .form-group .input-wrapper {
  position: relative;
}
.hesabim-api-content .form-group .input-wrapper .api-key-input {
  width: 100%;
  padding: 14px 45px 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s;
  min-height: 50px;
  box-sizing: border-box;
}
.hesabim-api-content .form-group .input-wrapper .api-key-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.hesabim-api-content .form-group .input-wrapper .api-key-input:focus {
  outline: none;
  border-color: #ff373a;
  background: rgba(255, 255, 255, 0.08);
}
.hesabim-api-content .form-group .input-wrapper .api-key-input:read-only {
  background: rgba(255, 255, 255, 0.03);
  cursor: not-allowed;
}
.hesabim-api-content .form-group .input-wrapper .toggle-password-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 4px;
}
.hesabim-api-content .form-group .input-wrapper .toggle-password-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}
.hesabim-api-content .form-group .input-wrapper .toggle-password-btn i {
  font-size: 16px;
}
.hesabim-api-content .btn-hesabim-generate {
  margin-top: 0;
  width: 100%;
}

.btn-hesabim-generate {
  padding: 16px 24px;
  background: #01b76c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  width: 100%;
  min-height: 50px;
}
.btn-hesabim-generate:hover {
  background: #019e5a;
  transform: translateY(-2px);
}

.api-success-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.api-success-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.api-success-toast .toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #01b76c;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(1, 183, 108, 0.3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-width: 250px;
  max-width: 400px;
}
.api-success-toast .toast-content i {
  font-size: 18px;
  flex-shrink: 0;
}
.api-success-toast .toast-content span {
  flex: 1;
}
@media (max-width: 768px) {
  .api-success-toast {
    left: 20px;
    right: 20px;
    transform: translateY(-100px);
    max-width: calc(100% - 40px);
  }
  .api-success-toast.show {
    transform: translateY(0);
  }
  .api-success-toast .toast-content {
    min-width: auto;
    padding: 14px 20px;
    font-size: 13px;
  }
}

.hesabim-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 85px;
}
@media (max-width: 768px) {
  .hesabim-right {
    margin-top: 16px;
  }
}
.hesabim-right .hesabim-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1400px) {
  .hesabim-right .hesabim-right-grid {
    grid-template-columns: 1fr;
  }
}
.hesabim-right .balance-load-text {
  min-height: 45px;
  text-align: center;
}
.hesabim-right .balance-load-card button {
  background-color: rgba(255, 255, 255, 0.2509803922) !important;
  color: #fff !important;
}
.hesabim-right .balance-load-card .balance-load-image {
  position: static;
}
.hesabim-right .ticket-create-card .ticket-create-image {
  position: static;
}
.hesabim-right .ticket-create-card .ticket-create-text {
  min-height: 45px;
  text-align: center;
}
.hesabim-right .ticket-create-card button {
  background-color: rgba(255, 255, 255, 0.2509803922) !important;
  color: #fff !important;
  margin-top: 16px;
}

.balance-card-red {
  background: #ff373a !important;
  border: none !important;
}
.balance-card-red .balance-load-content .balance-load-text {
  color: #fff !important;
  font-size: 14px !important;
  margin: 0 0 20px 0 !important;
  text-align: center;
  line-height: 1.5;
}
.balance-card-red .balance-load-content .btn-balance-load-white {
  background: #fff;
  color: #ff373a;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  width: 100%;
}
.balance-card-red .balance-load-content .btn-balance-load-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.balance-card-red .balance-load-content .btn-balance-load-white i {
  font-size: 16px;
}

.balance-load-card .balance-load-content .balance-load-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0 0 20px 0;
  text-align: center;
  line-height: 1.5;
}

.ticket-create-card {
  background: #1d212b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.ticket-create-card .ticket-create-content {
  padding: 28px 24px 20px 24px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket-create-card .ticket-create-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0 0 20px 0;
  text-align: center;
  line-height: 1.5;
}
.ticket-create-card .ticket-create-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 70%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
  margin-top: auto;
}

.ticket-card-orange {
  background: #ff8a00 !important;
  border: none !important;
}
.ticket-card-orange .ticket-create-text {
  color: #fff !important;
}
.ticket-card-orange .btn-ticket-create-white {
  background: #fff;
  color: #ff8a00;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  width: 100%;
}
.ticket-card-orange .btn-ticket-create-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.ticket-card-orange .btn-ticket-create-white i {
  font-size: 16px;
}

.ticket-create-card .ticket-create-text {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1400px) {
  .hesabim-content {
    grid-template-columns: 1fr 280px;
  }
}
@media (max-width: 1200px) {
  .hesabim-content {
    grid-template-columns: 1fr;
  }
  .hesabim-right .hesabim-right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .dashboard-header .dashboard-header-banner .hesabim-header-content .hesabim-title {
    font-size: 24px;
    gap: 12px;
  }
  .dashboard-header .dashboard-header-banner .hesabim-header-content .hesabim-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .dashboard-header .dashboard-header-banner .hesabim-header-content .hesabim-title {
    font-size: 20px;
    gap: 10px;
  }
  .dashboard-header .dashboard-header-banner .hesabim-header-content .hesabim-subtitle {
    font-size: 11px;
  }
  .hesabim-tabs {
    gap: 8px;
  }
  .hesabim-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  .hesabim-tab i {
    font-size: 12px;
  }
  .hesabim-tab-panel {
    padding: 20px;
  }
  .hesabim-form {
    gap: 20px;
  }
  .hesabim-form .form-row {
    gap: 16px;
  }
  .hesabim-right {
    gap: 20px;
  }
  .hesabim-right .hesabim-right-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .balance-load-card .balance-load-content,
  .ticket-create-card .ticket-create-content {
    padding: 20px 16px 16px 16px;
  }
}
@media (max-width: 480px) {
  .hesabim-tab {
    padding: 8px 12px;
    font-size: 12px;
  }
  .hesabim-tab-panel {
    padding: 16px;
  }
  .hesabim-form {
    gap: 16px;
  }
  .hesabim-form .form-group .input-wrapper .form-input,
  .hesabim-form .form-group .input-wrapper .form-select {
    padding: 12px 14px;
    font-size: 13px;
  }
  .btn-hesabim-save,
  .btn-hesabim-generate {
    padding: 14px 20px;
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */