:root {
  --primary: #EFA01D;
  --primary-dark: #A77014;
  --primary-light: #F3BC60;
  --accent: #C86414;
  --dark: #0A0A0A;
  --dark-surface: #161616;
  --dark-card: #222222;
  --text-primary: #F2F2F2;
  --text-secondary: #BDBDBD;
  
  --gradient-1: linear-gradient(135deg, #EFA01D, #C86414);
  --gradient-2: linear-gradient(135deg, #C86414, #EFA01D);
  --button-gradient: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  --button-gradient-hover: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(22, 22, 22, 0.95));
  
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  --glow: 0 0 15px rgba(239, 160, 29, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  background-color: var(--dark);
  color: var(--text-primary);
  min-height: 100vh;
}
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a {
  text-decoration: none;
}
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-wrapper {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.main-area {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 1750px;
  margin: 0 auto;
  position: relative;
  min-height: calc(100vh - 80px - 245px);
}

.main-content {
  flex: 1;
  padding: 25px;
  overflow: auto;
}

.header {
  background-color: var(--dark-surface);
  padding: 22px 0;
  border-bottom: 1px solid rgba(239, 160, 29, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 1px 10px rgba(239, 160, 29, 0.1);
  z-index: 100;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(22, 22, 22, 0.95);
  backdrop-filter: blur(5px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-container {
  position: relative;
  width: 55px;
  height: 55px;
  margin-right: 15px;
}

.logo-border {
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 50%;
  border: 1px solid rgba(239, 160, 29, 0.3);
  animation: rotate 10s linear infinite;
}

.logo-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite alternate;
  overflow: hidden;
  background-color: rgba(15, 15, 15, 0.7);
}

.logo-icon {
  color: var(--primary);
  font-size: 30px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 26px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 2px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 10px;
  margin-right: -10px;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--dark);
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.sidebar {
  width: 400px;
  min-width: 400px;
  background-color: var(--dark-surface);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(239, 160, 29, 0.1);
  position: relative;
  height: auto;
  min-height: 100%;
}

.account-container {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 15px rgba(239, 160, 29, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin-top: 20px;
}

.login-section {
  padding: 1.75rem;
  text-align: center;
}

.login-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  background: linear-gradient(to right, rgb(110 81 12 / 10%), rgba(10, 10, 10, 0.95));
  color: var(--text-primary);
  transition: all 0.3s ease;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.login-auth-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-top: 5px;
}

.robot-checkbox {
  text-align: left;
}

.robot-checkbox label {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.robot-checkbox input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.forgot-link {
  text-align: right;
}

.forgot-link a {
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.forgot-link a i {
  margin-right: 5px;
  font-size: 14px;
}

.forgot-link a:hover {
  color: var(--primary);
}

.session-card {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 30px;
  max-width: 500px;
  margin: 50px auto;
  width: 100%;
}

.login-icon {
  text-align: center;
  margin-bottom: 25px;
}

.login-icon i {
  font-size: 48px;
  color: var(--primary);
  padding: 20px;
  background: rgba(239, 160, 29, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(239, 160, 29, 0.2);
}

.session-title {
  text-align: center;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.login-form {
  margin-bottom: 20px;
}

.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.forgot-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

.form-separator {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.form-separator:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(239, 160, 29, 0.1);
}

.form-separator span {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  background-color: var(--dark-card);
  color: var(--text-secondary);
  font-size: 14px;
}

.register-option {
  text-align: center;
}

.register-option p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(22, 22, 22, 0.95));
  color: var(--primary-light);
  border-color: rgba(239, 160, 29, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .session-card {
      padding: 20px;
      margin: 30px 15px;
  }
  
  .login-icon i {
      font-size: 40px;
      padding: 15px;
  }
  
  .session-title {
      font-size: 20px;
  }
  
  .login-options {
      flex-direction: column; 
      align-items: flex-start;
      gap: 15px;
  }
  
  .forgot-link {
      align-self: flex-end;
  }
}

.ep-header {
  text-align: center;
  margin-bottom: 30px;
}

.ep-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.ep-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
}

.ep-notification {
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: rgba(22, 22, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ep-notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
}

.ep-notification-content {
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
}

.ep-notification i {
  font-size: 22px;
  margin-right: 15px;
  flex-shrink: 0;
}

.ep-notification-text {
  flex: 1;
}

.ep-notification-text p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.ep-notification-warning::before {
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.ep-notification-warning i {
  color: var(--primary);
}

.ep-notification-info::before {
  background: linear-gradient(to bottom, #63b3ed, #3182ce);
}

.ep-notification-info i {
  color: #63b3ed;
}

.ep-campaign {
  background: rgba(22, 22, 22, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.ep-campaign-header {
  padding: 20px 25px;
  background: rgba(15, 15, 15, 0.7);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ep-campaign-badge {
  background: var(--gradient-1);
  color: var(--dark);
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.ep-campaign-badge i {
  margin-right: 5px;
}

.ep-campaign-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.ep-campaign-body {
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.ep-bonus-circle {
  width: 120px;
  height: 120px;
  position: relative;
  flex-shrink: 0;
}

.ep-bonus-circle-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0%, var(--accent) 35%, var(--primary-dark) 70%, var(--primary) 100%);
  position: absolute;
  animation: ep-rotate 4s linear infinite;
}

.ep-bonus-circle-inner {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(239, 160, 29, 0.2);
}

.ep-bonus-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.ep-bonus-symbol {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.ep-campaign-info {
  flex: 1;
  min-width: 280px;
}

.ep-campaign-info h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ep-campaign-info p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ep-timer {
  background: rgba(10, 10, 10, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 15px;
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.ep-timer i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
}

.ep-timer-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.ep-timer-digits {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-left: 5px;
}

.ep-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.ep-card {
  background: rgba(22, 22, 22, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.ep-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(239, 160, 29, 0.2);
  border-color: rgba(239, 160, 29, 0.2);
}

.ep-card-header {
  background: rgba(15, 15, 15, 0.7);
  padding: 18px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.ep-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ep-card-icon i {
  font-size: 20px;
  color: var(--dark);
}

.ep-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.ep-card-body {
  padding: 25px;
}

.ep-form-group {
  margin-bottom: 20px;
}

.ep-form-group label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
}

.ep-amount-group {
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.5);
  border-radius: 12px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.ep-amount-input {
  flex: 3;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  position: relative;
  margin-top: 8px;
}

.ep-amount-input:focus {
  color: var(--primary-light);
}

.ep-amount-divider {
  color: var(--text-secondary);
  font-size: 22px;
  margin: 0 5px;
}

.ep-amount-input-kurus {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  text-align: center;
  margin-top: 8px;
}

.ep-amount-unit {
  margin-left: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  background: rgba(239, 160, 29, 0.1);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.ep-form-control {
  width: 100%;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.ep-form-control:focus {
  border-color: rgba(239, 160, 29, 0.4);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
  color: var(--primary-light);
}

.ep-display {
  background: rgba(15, 15, 15, 0.7);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ep-display-title {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.ep-display-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.ep-bonus-badge {
  margin-left: 10px;
  font-size: 16px;
  background: rgba(104, 211, 145, 0.2);
  color: #68d391;
  padding: 3px 10px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.ep-bonus-badge i {
  margin-right: 5px;
  font-size: 14px;
}

.ep-extra-bonus {
      background: linear-gradient(to right, rgba(99, 179, 237, 0.15), rgba(104, 211, 145, 0.1));
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 30px;
      border: 1px solid rgba(99, 179, 237, 0.2);
      position: relative;
      overflow: hidden;
  }
  
  .ep-extra-bonus::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, #63b3ed, #68d391);
  }
  
  .ep-extra-bonus-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }
  
  .ep-extra-bonus-header i {
      font-size: 24px;
      margin-right: 15px;
      color: var(--primary);
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .ep-extra-bonus-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
  }

.ep-btn-submit {
  width: 100%;
  background: var(--gradient-1);
  color: var(--dark);
  border: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(239, 160, 29, 0.3);
}

.ep-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 160, 29, 0.4);
}

.ep-product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 15px;
}

.ep-product-table th {
  padding: 15px;
  background: rgba(15, 15, 15, 0.7);
  font-size: 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: left;
}

.ep-product-table th:first-child {
  border-top-left-radius: 12px;
}

.ep-product-table th:last-child {
  border-top-right-radius: 12px;
}

.ep-product-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
}

.ep-product-table tr:last-child td {
  border-bottom: none;
}

.ep-product-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.ep-product-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.ep-product-name {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.ep-bonus-tag {
  font-size: 13px;
  color: #68d391;
  background: rgba(104, 211, 145, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
  font-weight: 600;
}

.ep-product-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.ep-product-desc {
  font-size: 14px;
}

.ep-product-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.ep-steps-container {
  margin-top: 30px;
}

.ep-section-title {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 45px;
}

.ep-section-title i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ep-steps-list {
  margin-bottom: 30px;
}

.ep-step-item {
  background: rgba(22, 22, 22, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 25px 20px 80px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.ep-step-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(239, 160, 29, 0.2);
}

.ep-step-number {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  color: var(--dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(239, 160, 29, 0.3);
}

.ep-step-content {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

@keyframes ep-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .ep-card-container {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .ep-campaign-body {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 15px;
  }
  
  .ep-timer {
      width: 100%;
      justify-content: center;
  }
  
  .ep-step-item {
      padding: 15px 15px 15px 60px;
  }
  
  .ep-step-number {
      left: 15px;
      width: 30px;
      height: 30px;
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ep-amount-group {
      flex-direction: column;
      padding: 0;
      background: transparent;
      border: none;
  }
  
  .ep-amount-input, .ep-amount-input-kurus {
      background: rgba(10, 10, 10, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      margin-bottom: 10px;
  }
  
  .ep-amount-divider {
      display: none;
  }

  .ep-product-table td, .ep-product-table th {
      padding: 10px 8px;
      font-size: 14px;
  }
}

.ep-premium-bonus {
  background: linear-gradient(to right, rgba(15, 23, 30, 0.9), rgba(20, 30, 40, 0.9));
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(239, 160, 29, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ep-premium-bonus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 10% 20%, rgba(239, 160, 29, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(200, 100, 20, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.ep-premium-bonus::after {
  content: '%';
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(239, 160, 29, 0.07);
  z-index: 0;
  line-height: 1;
}

.ep-premium-bonus-content {
  position: relative;
  z-index: 1;
  padding: 25px 30px;
}

.ep-premium-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.ep-premium-title i {
  font-size: 24px;
  margin-right: 15px;
  color: var(--primary);
}

.ep-premium-title h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  line-height: 1.3;
}

.ep-premium-rates {
  padding-left: 25px;
  border-left: 3px solid rgba(239, 160, 29, 0.2);
}

.ep-premium-header {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-weight: 500;
}

.ep-premium-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ep-premium-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 2px 0;
}

.ep-premium-item:hover {
  transform: translateX(5px);
}

.ep-premium-item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gradient-1);
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 0 10px rgba(239, 160, 29, 0.4);
}

.ep-rate-amount {
  font-weight: 600;
}

.ep-rate-value {
  display: inline-block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 18px;
  margin: 0 8px;
}

.ep-premium-footer {
  margin-top: 20px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  text-align: right;
  position: relative;
  padding-right: 20px;
}

.ep-premium-footer::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.ep-premium-bonus:hover .ep-premium-footer::after {
  transform: translate(5px, -50%);
}

@media (max-width: 768px) {
  .ep-premium-bonus {
      margin-bottom: 25px;
  }
  
  .ep-premium-bonus-content {
      padding: 20px;
  }
  
  .ep-premium-title h3 {
      font-size: 18px;
  }
  
  .ep-premium-rates {
      padding-left: 15px;
  }
  
  .ep-premium-item {
      font-size: 15px;
  }
  
  .ep-rate-value {
      font-size: 16px;
  }
  
  .ep-premium-footer {
      font-size: 16px;
  }
}

.ep-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ep-price-card {
  background: linear-gradient(145deg, rgba(35, 35, 35, 0.6), rgba(22, 22, 22, 0.9));
  border: 1px solid rgba(239, 160, 29, 0.2);
  border-radius: 10px;
  overflow: hidden;
  width: 240px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.ep-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(239, 160, 29, 0.5);
}

.ep-price-card:nth-child(1),
.ep-price-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
}

.ep-price-card:nth-child(3),
.ep-price-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(35, 35, 35, 0.6), rgba(22, 22, 22, 0.9)); 
}

.ep-price-card:nth-child(5) {
  background: linear-gradient(145deg, rgba(40, 25, 15, 0.6), rgba(30, 20, 10, 0.9));
}

.ep-price-card:nth-child(6),
.ep-price-card:nth-child(7),
.ep-price-card:nth-child(8) {
  background: linear-gradient(145deg, rgba(45, 30, 15, 0.6), rgba(35, 25, 10, 0.9));
}

.ep-price-card:nth-child(9),
.ep-price-card:nth-child(10) {
  background: linear-gradient(145deg, rgba(55, 35, 15, 0.6), rgba(40, 30, 10, 0.9));
}

.ep-flex-grid .ep-card-header {
  padding: 10px 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

a.ep-buy-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.ep-security-box {
  background-color: #222;
  border-radius: 8px;
  padding: 15px;
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  border: 1px solid #333;
}

.security-icon-container {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.security-icon-container i {
  color: #222;
  font-size: 22px;
}

.ep-security-text {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  line-height: 1.5;
}

.payment-logo-container {
  background-color: #2a2a2a;
  border-radius: 6px;
  padding: 10px 20px;
  margin: 5px;
  text-align: center;
  border: 1px solid #333;
  display: inline-block;
}

.payment-logo-container img {
  height: 30px;
  width: auto;
  display: block;
}

.ep-payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 10px;
}

.ep-card-body {
  padding: 15px;
}

.ep-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ep-bonus {
  font-size: 13px;
  color: #68d391;
  background: rgba(104, 211, 145, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: inline-block;
}

.ep-buy-btn {
  background: linear-gradient(135deg, rgba(239, 160, 29, 0.2), rgba(200, 100, 20, 0.2));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 5px;
  padding: 8px 0;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ep-buy-btn:hover {
  background: var(--gradient-1);
  color: var(--dark);
}

.ep-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  color: var(--dark);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.ep-tag-popular {
  background: linear-gradient(135deg, #68d391, #48bb78);
}

.ep-tag-best {
  background: linear-gradient(135deg, #4c51bf, #6366f1);
}

.ep-security-box {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
  border: 1px solid rgba(239, 160, 29, 0.15);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  margin: 25px 0 20px;
}

.ep-security-icon {
  background: var(--gradient-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.ep-security-icon i {
  color: var(--dark);
  font-size: 20px;
}

.ep-security-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ep-payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.ep-payment-icon {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
  height: 24px;
}

@media (max-width: 768px) {
  .ep-price-card {
    width: calc(50% - 10px);
    min-width: 130px;
  }
  
  .ep-card-header {
    padding: 8px 5px;
    font-size: 16px;
  }
  
  .ep-security-box {
    flex-direction: column;
    text-align: center;
  }
  
  .ep-security-icon {
    margin: 0 0 15px 0;
  }
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--gradient-1);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.nav-container {
  margin-top: 15px;
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 15px rgba(239, 160, 29, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.nav-links {
  padding: 15px 10px 12px;
  text-align: center;
}

.nav-links-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #EFA01D, #C86414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.nav-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  position: relative;
}

.nav-button {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(22, 22, 22, 0.8);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 160, 29, 0.15);
}

.nav-button:hover {
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(239, 160, 29, 0.3);
  box-shadow: 0 0 8px rgba(239, 160, 29, 0.2);
}

.nav-icon-container {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  background: var(--dark-surface);
  transition: all 0.3s ease;
}

.nav-icon-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid var(--primary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.nav-button:hover .nav-icon-container {
  background: var(--gradient-1);
}

.nav-button:hover .nav-icon-border {
  opacity: 0;
}

.nav-icon {
  color: var(--primary);
  font-size: 15px;
  transition: all 0.3s ease;
}

.nav-button:hover .nav-icon {
  color: var(--dark);
}

.nav-text {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-button:hover .nav-text {
  color: var(--primary);
}

.player-ranking-widget {
  margin-top: 20px;
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 15px rgba(239, 160, 29, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.ranking-header {
  padding: 15px 20px;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(15, 15, 15, 0.7));
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ranking-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.ranking-title i {
  margin-right: 10px;
  font-size: 18px;
}

.player-podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 25px 15px;
  position: relative;
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
  height: 180px;
}

.podium-position {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.podium-position:hover {
  transform: translateY(-5px);
}

.podium-block {
  width: 70px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(239, 160, 29, 0.1);
  border-bottom: none;
}

.podium-first {
  height: 100px;
  background: var(--gradient-1);
  z-index: 3;
  margin: 0 5px;
}

.podium-second {
  height: 75px;
  background: var(--gradient-1);
  z-index: 2;
  margin-right: 5px;
}

.podium-third {
  height: 55px;
  background: var(--gradient-1);
  z-index: 1;
  margin-left: 5px;
}

.podium-rank {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-container {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 15px rgba(239, 160, 29, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin-bottom: 100px;
}

.social-links {
  padding: 1.5rem;
  text-align: center;
}

.social-links-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.social-icons {
  display: flex;
  justify-content: space-between;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-surface);
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gradient-1);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.social-icon i {
  font-size: 20px;
}

.main-slider-section {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  width: 100%;
  margin-top: 20px;
}

.video-slider {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 20px rgba(239, 160, 29, 0.2);
  border: 1px solid rgba(239, 160, 29, 0.1);
  position: relative;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  position: relative;
}

.slider-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}

.slider-image {
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.5) 100%);
  padding: 20px;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(239, 160, 29, 0.15);
  z-index: 2;
}

.slider-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slider-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.slider-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-counter {
  font-size: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.slider-nav {
  display: flex;
  gap: 8px;
  margin-left: 10px;
}

.slider-nav-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav-btn:hover {
  color: var(--primary-light);
  transform: scale(1.15);
}

.server-stats-section {
  margin-top: 25px;
}

.server-stats {
  width: 100%;
}
.slider-container {
  display: flex;
  flex-wrap: wrap;
}

.slider-content {
  flex: 1;
  min-width: 70%;
}

.server-stats-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 992px) {
  .slider-container {
    flex-direction: row;
  }
  
  .server-stats-sidebar {
    width: 250px;
    margin-left: 15px;
  }
}

@media (max-width: 991px) {
  .slider-container {
    flex-direction: column;
  }
  
  .server-stats-sidebar {
    width: 100%;
    flex-direction: row;
    margin-top: 15px;
    justify-content: space-between;
  }
  
  .server-box {
    flex: 1;
    margin: 0 5px;
  }
}

@media (min-width: 768px) {
  .slider-container {
    flex-direction: row;
  }
  
  .server-stats-sidebar {
    width: 250px; 
    flex-direction: row;
    margin-left: 15px;
  }
  
  .server-box {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .slider-container {
    flex-direction: row;
  }
  
  .server-stats-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: space-between;
    gap: 8px;
  }
  
  .server-box {
    flex: 1 0 calc(33% - 8px);
    min-width: 90px;
    max-width: calc(33% - 8px);
  }
}

@media (max-width: 400px) {
  .server-stats-sidebar {
    justify-content: center;
  }
  
  .server-box {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
.server-stats-sidebar {
  width: 170px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.server-box {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 5px rgba(239, 160, 29, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.25);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  flex: 1;
  position: relative;
  z-index: 1;
}

.server-box::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 15%;
  right: 15%;
  height: 10px;
  background: var(--primary);
  filter: blur(10px);
  opacity: 0.15;
  z-index: -1;
  transition: all 0.3s ease;
}

.server-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
  border-color: rgba(239, 160, 29, 0.4);
}

.server-box:hover::after {
  opacity: 0.3;
  height: 15px;
  filter: blur(12px);
}

.server-box-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.server-box:hover .server-box-icon {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(239, 160, 29, 0.4);
}

.server-box-icon i {
  font-size: 20px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.server-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.server-box-title {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 3px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.server-box-value {
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.server-box:hover .server-box-value {
  transform: scale(1.05);
  text-shadow: 0 0 5px rgba(239, 160, 29, 0.2);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: rgba(22, 22, 22, 0.5);
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  transition: all 0.3s ease;
}

.stat-row:hover {
  background-color: rgba(30, 30, 30, 0.8);
  border-color: rgba(239, 160, 29, 0.2);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.stat-value {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  margin-bottom: 25px;
}

.home-card {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 15px 20px;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(15, 15, 15, 0.7));
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-tabs {
  display: flex;
  gap: 15px;
}

.card-tab {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 2px;
  position: relative;
}

.card-tab.active, 
.card-tab:hover {
  color: var(--primary);
}

.card-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--gradient-1);
  border-radius: 2px;
}

.card-action {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.card-action:hover {
  transform: translateX(3px);
}

.card-action i {
  margin-left: 5px;
  font-size: 16px;
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-item {
  padding: 10px 12px;
  border-radius: 8px;
  background-color: rgba(22, 22, 22, 0.5);
  border: 1px solid rgba(239, 160, 29, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gradient-1);
  opacity: 0.7;
  transition: all 0.3s ease;
  display: none;
}

.news-item:hover {
  background-color: rgba(30, 30, 30, 0.8);
  border-color: rgba(239, 160, 29, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 0 5px rgba(239, 160, 29, 0.1);
}

.news-item:hover::before {
  width: 6px;
  opacity: 1;
}

.news-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.news-title::before {
  content: '';
}

.news-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-left: 0;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-left: 0;
}

.news-date {
  display: flex;
  align-items: center;
}

.news-date i {
  margin-right: 4px;
  font-size: 14px;
}

.news-category {
  background-color: rgba(239, 160, 29, 0.15);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 11px;
}

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background-color: rgba(22, 22, 22, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.event-item:hover {
  background-color: rgba(30, 30, 30, 0.8);
  transform: translateX(5px);
  border-color: rgba(239, 160, 29, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 8px rgba(239, 160, 29, 0.2);
}

.event-left {
  display: flex;
  align-items: center;
}

.event-icon {
  width: 30px;
  height: 30px;
  background: var(--dark-surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  transition: all 0.3s ease;
  color: var(--primary);
  font-size: 16px;
}

.event-item:hover .event-icon {
  background: var(--gradient-1);
  color: var(--dark);
  transform: scale(1.05);
}

.event-info {
  display: flex;
  flex-direction: column;
}

.event-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1px;
}

.event-desc {
  font-size: 11px;
  color: var(--text-secondary);
}

.event-time {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(15, 15, 15, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.event-time i {
  margin-right: 4px;
  color: var(--primary);
  font-size: 12px;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 170px;
  position: relative;
  margin-top: 15px;
}

.podium-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.podium-block:hover {
  transform: translateY(-5px);
}

.first-block {
  width: 85px;
  height: 130px;
  background: linear-gradient(to top, #EFA01D, #C86414);
  z-index: 3;
  margin: 0 10px;
}

.second-block {
  width: 85px;
  height: 100px;
  background: linear-gradient(to top, #EFA01D, #C86414);
  z-index: 2;
}

.third-block {
  width: 85px;
  height: 70px;
  background: linear-gradient(to top, #EFA01D, #C86414);
  z-index: 1;
}

.rank-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
}

.player-name {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  white-space: nowrap;
}

.ranking-container {
  padding: 8px 1px 12px;
}

.ranking-item {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  margin-bottom: 6px;
  background-color: rgba(25, 25, 25, 0.7);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-item:hover {
  transform: translateX(5px);
  background-color: rgba(30, 30, 30, 0.8);
}

.ranking-position {
  margin-right: 10px;
}

.rank-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ranking-info {
  flex: 1;
}

.ranking-name {
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.level {
  font-size: 11px;
  opacity: 0.85;
  font-weight: normal;
  margin-left: 5px;
  padding: 1px 5px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.2);
}

.ranking-medal {
  font-size: 14px;
  padding-right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ranking-item.gold {
  background: linear-gradient(to right, rgba(116, 100, 68, 0.8), rgba(30, 30, 30, 0.75));
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 0 6px rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.ranking-item.gold .rank-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.ranking-item.gold .ranking-name, 
.ranking-item.gold .ranking-medal, 
.ranking-item.gold .level {
  color: rgba(255, 215, 0, 0.9);
  text-shadow: 0 2px 2px rgb(0 0 0);
}

.ranking-item.silver {
  background: linear-gradient(to right, rgba(100, 100, 110, 0.8), rgba(28, 28, 28, 0.75));
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 0 6px rgba(192, 192, 192, 0.07);
  border: 1px solid rgba(192, 192, 192, 0.15);
}

.ranking-item.silver .rank-badge {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.9), rgba(169, 169, 169, 0.9));
  box-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
}

.ranking-item.silver .ranking-name, 
.ranking-item.silver .ranking-medal, 
.ranking-item.silver .level {
  color: rgba(192, 192, 192, 0.9);
  text-shadow: 0 2px 2px rgb(0 0 0);
}

.ranking-item.bronze {
  background: linear-gradient(to right, rgba(110, 80, 60, 0.8), rgba(28, 28, 28, 0.75));
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 0 0 6px rgba(205, 127, 50, 0.07);
  border: 1px solid rgba(205, 127, 50, 0.15);
}

.ranking-item.bronze .rank-badge {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.9), rgba(160, 82, 45, 0.9));
  box-shadow: 0 0 8px rgba(205, 127, 50, 0.3);
}

.ranking-item.bronze .ranking-name, 
.ranking-item.bronze .ranking-medal, 
.ranking-item.bronze .level {
  color: rgba(205, 127, 50, 0.9);
  text-shadow: 0 2px 2px rgb(0 0 0);
}

.ranking-item.normal {
  background: rgba(25, 25, 25, 0.7);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.ranking-item.normal .rank-badge {
  background: linear-gradient(135deg, #777777, #555555);
  box-shadow: 0 0 6px rgba(100, 100, 100, 0.3);
}

.ranking-item.normal .ranking-name, 
.ranking-item.normal .ranking-medal, 
.ranking-item.normal .level {
  color: #999999;
  text-shadow: 0 2px 2px rgb(0 0 0);
}

.ranking-item.normal .ranking-medal {
  color: rgba(180, 180, 180, 0.7);
}

.ranking-item.normal .ranking-medal i {
  color: #999999;
}

.ranking-filters {
  display: flex;
  justify-content: center;
  margin: 2px 0 10px;
  border-radius: 6px;
  background-color: rgba(20, 20, 20, 0.5);
  padding: 2px;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.filter-item {
  padding: 3px 6px;
  font-size: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
  flex: 1;
  font-weight: 500;
}

.filter-item:hover {
  color: var(--primary);
}

.filter-item.active {
  background-color: rgba(239, 160, 29, 0.1);
  color: var(--primary);
  box-shadow: 0 0 5px rgba(239, 160, 29, 0.1);
}

.character-info-container {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.character-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.2);
}

.character-title-area {
  display: flex;
  flex-direction: column;
}

.character-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.character-level {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.character-actions {
  display: flex;
  gap: 10px;
}

.btn-action {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: var(--gradient-1);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.character-profile {
  display: flex;
  gap: 30px;
}

.character-avatar-section {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.character-avatar {
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(239, 160, 29, 0.3);
}

.character-avatar img {
  display: block;
  width: 100%;
  height: auto;
}

.character-kingdom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.jinno-kingdom {
  background: linear-gradient(180deg, rgba(40, 70, 120, 0), rgba(40, 70, 120, 0.9));
}

.shinsoo-kingdom {
  background: linear-gradient(180deg, rgba(120, 40, 40, 0), rgba(120, 40, 40, 0.9));
}

.chunjo-kingdom {
  background: linear-gradient(180deg, rgba(120, 110, 40, 0), rgba(120, 110, 40, 0.9));
}

.character-basic-info {
  width: 100%;
  background-color: rgba(22, 22, 22, 0.7);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(239, 160, 29, 0.15);
}

.basic-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
}

.basic-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.basic-info-item i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.info-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
}

.info-value {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
}

.character-details-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.character-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.stat-box {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 160, 29, 0.2);
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 40, 0.85));
  border-color: rgba(239, 160, 29, 0.4);
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(239, 160, 29, 0.4);
}

.stat-icon i {
  font-size: 20px;
  color: var(--dark);
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.character-extra-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-extra {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(239, 160, 29, 0.15), rgba(200, 100, 20, 0.15));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-extra:hover {
  background: linear-gradient(135deg, rgba(239, 160, 29, 0.25), rgba(200, 100, 20, 0.25));
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-extra i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .character-profile {
      flex-direction: column;
  }
  
  .character-avatar-section {
      width: 100%;
      margin-bottom: 20px;
  }
  
  .character-avatar {
      max-width: 200px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .character-basic-info {
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .character-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .character-actions {
      width: 100%;
  }
  
  .btn-action {
      flex: 1;
      text-align: center;
  }
  
  .character-stats-grid {
      grid-template-columns: 1fr;
  }
  
  .character-extra-actions {
      flex-direction: column;
  }
}

@media (max-width: 576px) {
  .character-info-container {
      padding: 15px;
  }
  
  .character-name {
      font-size: 20px;
  }
  
  .character-level {
      font-size: 14px;
  }
  
  .btn-action, .btn-extra {
      font-size: 12px;
      padding: 8px 10px;
  }
  
  .stat-box {
      padding: 10px;
  }
  
  .stat-icon {
      width: 35px;
      height: 35px;
  }
  
  .stat-label {
      font-size: 12px;
  }
  
  .stat-value {
      font-size: 14px;
  }
}

.ticket-info-container {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin-bottom: 25px;
}

.ticket-header {
  padding: 20px;
}

.ticket-metadata {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ticket-meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.meta-value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.ticket-status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.status-waiting {
  background-color: rgba(255, 193, 7, 0.15);
  color: #ffcc29;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-answered {
  background-color: rgba(0, 123, 255, 0.15);
  color: #63b3ed;
  border: 1px solid rgba(0, 123, 255, 0.3);
}

.status-forwarded {
  background-color: rgba(111, 66, 193, 0.15);
  color: #b794f4;
  border: 1px solid rgba(111, 66, 193, 0.3);
}

.status-solved {
  background-color: rgba(40, 167, 69, 0.15);
  color: #68d391;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-danger {
  background-color: rgba(220, 53, 69, 0.15);
  color: #fc8181;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.ticket-messages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.message-item {
  display: flex;
  flex-direction: column;
  width: 75%;
}

.user-message {
  align-self: flex-end;
}

.admin-message {
  align-self: flex-start;
}

.message-container {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.15);
  position: relative;
}

.user-message .message-container {
  background-color: rgba(25, 25, 25, 0.9);
  border-left: 3px solid var(--primary);
}

.admin-message .message-container {
  background-color: rgba(30, 30, 30, 0.9);
  border-right: 3px solid #4299e1;
}

.message-content {
  padding: 15px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

.message-metadata {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.message-author {
  font-size: 13px;
  font-weight: 600;
}

.user-message .message-author {
  color: var(--primary);
}

.admin-message .message-author {
  color: #4299e1;
}

.message-time {
  font-size: 12px;
  color: var(--text-secondary);
}

.ticket-info-box {
  background-color: rgba(66, 153, 225, 0.1);
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ticket-info-box i {
  font-size: 20px;
  color: #4299e1;
}

.ticket-info-box p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ticket-reply-form {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.ticket-reply-form textarea {
  background: linear-gradient(to right, rgba(20, 20, 20, 0.95), rgba(25, 25, 25, 0.9));
  color: var(--text-primary);
  border: 1px solid rgba(239, 160, 29, 0.2);
  border-radius: 8px;
  width: 100%;
  padding: 15px;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

.ticket-reply-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

@media (max-width: 768px) {
  .ticket-metadata {
      grid-template-columns: 1fr;
      gap: 15px;
  }
  
  .message-item {
      width: 85%;
  }
}

@media (max-width: 576px) {
  .ticket-header {
      padding: 15px;
  }
  
  .message-item {
      width: 90%;
  }
  
  .message-content {
      padding: 12px;
      font-size: 14px;
  }
  
  .meta-label {
      font-size: 13px;
  }
  
  .meta-value {
      font-size: 15px;
  }
}

.guild-detail-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.guild-header-simple {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
  margin-bottom: 5px;
}

.guild-title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
  padding-bottom: 15px;
}

.main-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.guild-title-badge {
  display: flex;
  align-items: center;
}

.guild-quick-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-stat-item {
  flex: 1;
  min-width: 100px;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.quick-stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
  border-color: rgba(239, 160, 29, 0.3);
}

.quick-stat-item i {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guild-info-card,
.guild-wars-card,
.guild-members-card {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.card-header {
  padding: 15px 20px;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(15, 15, 15, 0.7));
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  font-size: 20px;
}

.card-content {
  padding: 20px;
}

.info-grid {
  display: grid;
  gap: 15px;
}

.info-row {
  display: flex;
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
  padding-bottom: 15px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  flex: 0 0 150px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

.info-value {
  flex: 1;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.last-seen {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 5px;
}

.table-responsive {
  overflow-x: auto;
  width: 100%;
}

.guild-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
}

.guild-table th {
  padding: 12px 15px;
  text-align: left;
  background-color: rgba(15, 15, 15, 0.5);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(239, 160, 29, 0.3);
}

.guild-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
}

.guild-table tr:hover td {
  background-color: rgba(40, 40, 40, 0.6);
  color: var(--text-primary);
}

.guild-table tr:last-child td {
  border-bottom: none;
}

.battle-result {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.battle-result.win {
  background-color: rgba(40, 167, 69, 0.15);
  color: #68d391;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.battle-result.lose {
  background-color: rgba(220, 53, 69, 0.15);
  color: #fc8181;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.member-name {
  font-weight: 600;
  position: relative;
}

.member-name.leader {
  color: var(--primary);
}

.member-name.leader::after {
  content: "Lider";
  font-size: 10px;
  background-color: rgba(239, 160, 29, 0.2);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.kingdom-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.kingdom-badge.jinno {
  background: linear-gradient(135deg, rgba(54, 95, 160, 0.2), rgba(40, 70, 120, 0.2));
  color: #ffffff;
  border: 1px solid rgba(70, 130, 220, 0.15);
}

.kingdom-badge.shinsoo {
  background: linear-gradient(135deg, rgba(160, 54, 54, 0.2), rgba(120, 40, 40, 0.2));
  color: #ffffff;
  border: 1px solid rgba(220, 70, 70, 0.15);
}

.kingdom-badge.chunjo {
  background: linear-gradient(135deg, rgba(160, 150, 54, 0.2), rgba(120, 110, 40, 0.2));
  color: #ffffff;
  border: 1px solid rgba(220, 200, 60, 0.15);
}

.member-details-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(239, 160, 29, 0.15);
  color: var(--primary);
  margin-left: 8px;
  font-size: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  vertical-align: middle;
}

.member-details-icon:hover {
  background-color: var(--primary);
  color: var(--dark);
  transform: scale(1.15);
  box-shadow: 0 0 8px rgba(239, 160, 29, 0.4);
}

@media (max-width: 992px) {
  .info-row {
      flex-direction: column;
  }
  
  .info-label {
      flex: 0 0 auto;
      margin-bottom: 5px;
  }
  
  .quick-stat-item {
      min-width: 80px;
  }
}

@media (max-width: 768px) {
  .guild-title-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
  
  .main-title {
      font-size: 24px;
  }
  
  .guild-quick-stats {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
      font-size: 16px;
  }
  
  .card-content {
      padding: 15px;
  }
  
  .guild-table th,
  .guild-table td {
      padding: 10px;
      font-size: 13px;
  }
  
  .quick-stat-item {
      padding: 10px;
  }
  
  .stat-value {
      font-size: 18px;
  }
  
  .stat-label {
      font-size: 11px;
  }
}

@media (max-width: 576px) {
  .guild-quick-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }
  
  .quick-stat-item {
      width: 100%;
  }
  
  .guild-header-simple {
      padding: 15px;
  }
}

.guild-ranking-container {
  margin-top: 10px;
}

.guild-ranking-item {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  margin-bottom: 6px;
  background-color: rgba(25, 25, 25, 0.7);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.guild-ranking-item:hover {
  transform: translateX(5px);
  background-color: rgba(30, 30, 30, 0.8);
}

.guild-ranking-item.jinno-bg {
  background: linear-gradient(to right, rgba(40, 70, 120, 0.15), rgba(25, 25, 25, 0.7));
  border: 1px solid rgba(70, 130, 220, 0.08);
}

.guild-ranking-item.jinno-bg:hover {
  background: linear-gradient(to right, rgba(40, 70, 120, 0.25), rgba(30, 30, 30, 0.8));
  border: 1px solid rgba(70, 130, 220, 0.15);
}

.guild-ranking-item.shinsoo-bg {
  background: linear-gradient(to right, rgba(120, 40, 40, 0.15), rgba(25, 25, 25, 0.7));
  border: 1px solid rgba(220, 70, 70, 0.08);
}

.guild-ranking-item.shinsoo-bg:hover {
  background: linear-gradient(to right, rgba(120, 40, 40, 0.25), rgba(30, 30, 30, 0.8));
  border: 1px solid rgba(220, 70, 70, 0.15);
}

.guild-ranking-item.chunjo-bg {
  background: linear-gradient(to right, rgba(120, 110, 40, 0.15), rgba(25, 25, 25, 0.7));
  border: 1px solid rgba(220, 200, 60, 0.08);
}

.guild-ranking-item.chunjo-bg:hover {
  background: linear-gradient(to right, rgba(120, 110, 40, 0.25), rgba(30, 30, 30, 0.8));
  border: 1px solid rgba(220, 200, 60, 0.15);
}

.guild-ranking-position {
  margin-right: 10px;
}

.guild-rank-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #777777, #555555);
}

.guild-ranking-info {
  flex: 1;
  text-align: left;
}

.guild-ranking-name {
  font-weight: 600;
  font-size: 13px;
  color: #BDBDBD;
}

.guild-ranking-kingdom {
  display: flex;
  align-items: center;
}

.guild-kingdom-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.guild-kingdom-badge.jinno {
  background: linear-gradient(135deg, rgba(54, 95, 160, 0.2), rgba(40, 70, 120, 0.2));
  color: #ffffff;
  border: 1px solid rgba(70, 130, 220, 0.15);
}

.guild-kingdom-badge.shinsoo {
  background: linear-gradient(135deg, rgba(160, 54, 54, 0.2), rgba(120, 40, 40, 0.2));
  color: #ffffff;
  border: 1px solid rgba(220, 70, 70, 0.15);
}

.guild-kingdom-badge.chunjo {
  background: linear-gradient(135deg, rgba(160, 150, 54, 0.2), rgba(120, 110, 40, 0.2));
  color: #ffffff;
  border: 1px solid rgba(220, 200, 60, 0.15);
}

.account-section {
  padding: 1.75rem;
}

.account-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.account-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.account-panel-spaced {
  display: flex;
  flex-direction: column;
  gap: 8px; 
  margin-bottom: 15px;
}

.account-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background-color: rgba(22, 22, 22, 0.9);
  border-radius: 6px;
  border: 1px solid rgba(40, 40, 40, 0.5);
}

.account-item-label {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.account-item-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.account-item-value-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.load-btn.dark-theme {
  padding: 5px 12px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(50, 50, 50, 0.8);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 65px;
  text-align: center;
  text-decoration: none;
}

.load-btn.dark-theme:hover {
  background: rgba(40, 40, 40, 0.9);
  border-color: rgba(239, 160, 29, 0.3);
  color: var(--primary);
}

.account-item.gold-item {
  background: linear-gradient(to right, rgba(75, 50, 20, 0.8), rgba(55, 35, 10, 0.4));
  border: 1px solid rgba(85, 60, 25, 0.3);
}

.account-item.gold-item .account-item-label i {
  color: var(--primary);
  margin-right: 6px;
  font-size: 16px;
}

.account-item.gold-item .account-item-value,
.account-item.gold-item .account-item-value-group .account-item-value {
  color: var(--primary);
}

.btn.logout-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(to right, rgba(239, 160, 29, 0.9), rgba(200, 100, 20, 0.7));
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  margin-top: 15px;
}

.btn.logout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(200, 100, 20, 0.9), rgba(239, 160, 29, 0.7));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn.logout-btn:hover::before {
  opacity: 1;
}

.accordion-menu-container {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 15px rgba(239, 160, 29, 0.15);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin-top: 15px;
  padding: 0;
}

.accordion-item {
  position: relative;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(40, 40, 40, 0.3);
}

.accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  background: linear-gradient(to right, rgba(22, 22, 22, 0.8), rgba(25, 25, 25, 0.6));
  position: relative;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: linear-gradient(to right, rgba(30, 30, 30, 0.9), rgba(35, 35, 35, 0.7));
}

.header-line-left, .header-line-right {
  height: 1px;
  flex: 1;
}

.header-line-left {
  margin-right: 10px;
  background: linear-gradient(to right, var(--primary), transparent);
  width: 20px;
  max-width: 20px;
}

.header-line-right {
  margin-left: 10px;
  background: linear-gradient(to right, transparent, var(--primary));
  flex: 1;
}

.accordion-title {
  background: linear-gradient(to right, #EFA01D, #C86414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.accordion-icon {
  margin-left: 10px;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(18, 18, 18, 0.8);
}

.accordion-item.active .accordion-content {
  max-height: 500px; 
}

.session-card {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 30px;
  max-width: 500px;
  margin: 50px auto;
  width: 100%;
}

.login-icon {
  text-align: center;
  margin-bottom: 25px;
}

.login-icon i {
  font-size: 48px;
  color: var(--primary);
  padding: 20px;
  background: rgba(239, 160, 29, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(239, 160, 29, 0.2);
}

.session-title {
  text-align: center;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.login-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  background: linear-gradient(to right, rgba(22, 22, 22, 0.95), rgba(25, 25, 25, 0.9));
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-label {
  padding-left: 28px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  user-select: none;
}

.checkbox-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(239, 160, 29, 0.3);
  background-color: rgba(22, 22, 22, 0.7);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-input:checked ~ .checkbox-label:before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-input:checked ~ .checkbox-label:after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--dark);
  font-size: 14px;
  font-weight: bold;
}

.forgot-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gradient-1);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
}

.form-separator {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.form-separator:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(239, 160, 29, 0.1);
}

.form-separator span {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  background-color: var(--dark-card);
  color: var(--text-secondary);
  font-size: 14px;
}

.register-option {
  text-align: center;
}

.register-option p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(22, 22, 22, 0.95));
  color: var(--primary-light);
  border-color: rgba(239, 160, 29, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .session-card {
      padding: 20px;
      margin: 30px 15px;
  }
  
  .login-icon i {
      font-size: 40px;
      padding: 15px;
  }
  
  .session-title {
      font-size: 20px;
  }
  
  .login-options {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .forgot-link {
      align-self: flex-end;
  }
}

.accordion-list {
  list-style: none;
  padding: 12px 15px;
}

.accordion-list li {
  margin: 8px 0;
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
}

.accordion-list li:last-child {
  border-bottom: none;
}

.accordion-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 10px 8px;
  position: relative;
}

.accordion-list a:hover {
  color: var(--primary);
  transform: translateX(8px);
  padding-left: 10px;
}

.bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(to right, #EFA01D, #C86414);
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(239, 160, 29, 0.3);
}

.accordion-list a:hover .bullet {
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(239, 160, 29, 0.5);
}

.payment-container {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .payment-container {
      flex-direction: column;
  }
}

.payment-product-details {
  flex: 1;
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.campaign-bonus-area {
  border-top: 1px solid rgba(239, 160, 29, 0.15);
  background: linear-gradient(135deg, rgba(27, 27, 27, 0.95), rgba(35, 35, 35, 0.9));
  padding: 0;
  position: relative;
  overflow: hidden;
}

.campaign-header {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(to right, rgba(239, 160, 29, 0.15), rgba(239, 160, 29, 0.05));
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
}

.campaign-header i {
  color: var(--primary);
  font-size: 18px;
  margin-right: 10px;
}

.campaign-header span {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.campaign-content {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.bonus-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.bonus-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(239, 160, 29, 0.25);
  position: relative;
  flex-shrink: 0;
}

.bonus-amount::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(239, 160, 29, 0.5);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bonus-details {
  flex: 1;
}

.bonus-details h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.bonus-details p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bonus-calculation {
  background: rgba(22, 22, 22, 0.7);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.calc-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.calc-item:last-child {
  border-bottom: none;
}

.calc-item.bonus {
  color: var(--primary-light);
}

.calc-item.total {
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 5px;
  padding-top: 10px;
  border-bottom: none;
}

.calc-item.total .item-value {
  color: var(--primary);
  font-size: 16px;
}

.item-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.item-value {
  font-size: 14px;
  color: var(--text-primary);
}

.campaign-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 15px;
}

.campaign-timer i {
  color: #dc3545;
  margin-right: 10px;
  font-size: 16px;
}

.campaign-timer span {
  font-size: 14px;
  color: var(--text-secondary);
}

.campaign-timer b {
  color: #dc3545;
  font-weight: 600;
}

.product-info {
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.9));
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.product-icon i {
  font-size: 28px;
  color: var(--dark);
}

.product-text {
  flex: 1;
}

.product-text h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.product-text p {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.price-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(239, 160, 29, 0.15);
  color: var(--primary);
  font-weight: 700;
  border-radius: 6px;
  font-size: 16px;
}

.buyer-info {
  padding: 20px;
}

.buyer-info h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.info-row {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.info-label {
  font-size: 15px;
  color: var(--text-secondary);
  margin-right: 10px;
  min-width: 80px;
}

.info-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.info-alert {
  display: flex;
  padding: 12px 15px;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-alert i {
  color: #dc3545;
  margin-right: 10px;
  font-size: 18px;
  margin-top: 2px;
}

.info-alert p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.btn-update-info {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(239, 160, 29, 0.2);
  transition: all 0.3s ease;
}

.btn-update-info:hover {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(22, 22, 22, 0.95));
  color: var(--primary-light);
  border-color: rgba(239, 160, 29, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.payment-methods {
  flex: 1.5;
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
}

.payment-methods h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}

.payment-tabs {
  display: flex;
  background-color: rgba(22, 22, 22, 0.7);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.payment-tab {
  flex: 1;
  padding: 12px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.payment-tab i {
  font-size: 22px;
  margin-bottom: 8px;
}

.payment-tab span {
  font-size: 14px;
  font-weight: 500;
}

.payment-tab:hover {
  color: var(--primary);
  background-color: rgba(30, 30, 30, 0.7);
}

.payment-tab.active {
  color: var(--primary);
  background-color: rgba(30, 30, 30, 0.9);
}

.payment-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
}

.payment-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.payment-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.payment-form {
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: linear-gradient(to right, rgb(110 81 12 / 10%), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(239, 160, 29, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.form-control::placeholder {
  color: rgba(189, 189, 189, 0.4);
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group.half {
  width: 50%;
}

.card-input-wrapper {
  position: relative;
}

.card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.card-icons i {
  font-size: 20px;
  color: var(--text-secondary);
}

.expiry-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.separator {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 600;
}

.cvv-input-wrapper {
  position: relative;
}

.cvv-info {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  cursor: pointer;
}

.cvv-tooltip {
  position: absolute;
  right: 0;
  top: -40px;
  background-color: rgba(30, 30, 30, 0.95);
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  width: 180px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.cvv-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 10px;
  width: 10px;
  height: 10px;
  background-color: rgba(30, 30, 30, 0.95);
  transform: rotate(45deg);
}

.cvv-info:hover .cvv-tooltip {
  opacity: 1;
  visibility: visible;
}

.payment-summary {
  background-color: rgba(22, 22, 22, 0.7);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  font-size: 15px;
  color: var(--text-secondary);
}

.summary-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  color: var(--text-secondary);
}

.checkbox-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(239, 160, 29, 0.3);
  background-color: rgba(22, 22, 22, 0.7);
  border-radius: 4px;
}

.checkbox-input:checked ~ .checkbox-label:before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-input:checked ~ .checkbox-label:after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: -1px;
  color: var(--dark);
  font-size: 14px;
  font-weight: bold;
}

.terms-link {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-link:hover {
  text-decoration: underline;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gradient-1);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 20px;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
}

.installment-info {
  padding: 15px 0;
}

.installment-info p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.installment-table {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.installment-row {
  display: flex;
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
}

.installment-row:last-child {
  border-bottom: none;
}

.installment-row.installment-header {
  background-color: rgba(22, 22, 22, 0.9);
}

.installment-row.installment-header .installment-cell {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.installment-cell {
  flex: 1;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--text-secondary);
}

.installment-note {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
}

.other-payment-methods {
  padding: 10px 0;
}

.other-payment-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: rgba(22, 22, 22, 0.7);
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  transition: all 0.3s ease;
}

.other-payment-option:hover {
  background-color: rgba(30, 30, 30, 0.8);
  transform: translateY(-2px);
  border-color: rgba(239, 160, 29, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.option-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.option-icon i {
  font-size: 24px;
  color: var(--dark);
}

.option-details {
  flex: 1;
}

.option-details h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.option-details p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-select-option {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.2);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.btn-select-option:hover {
  background: var(--gradient-1);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.secure-payment-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  padding: 15px;
  background-color: rgba(22, 22, 22, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.secure-info-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.secure-info-item i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .form-row {
      flex-direction: column;
      gap: 15px;
  }
  
  .form-group.half {
      width: 100%;
  }
  
  .payment-tabs {
      flex-direction: column;
  }
  
  .payment-tab {
      flex-direction: row;
      justify-content: flex-start;
  }
  
  .payment-tab i {
      margin-bottom: 0;
      margin-right: 10px;
  }
  
  .payment-tab.active::after {
      width: 3px;
      height: 100%;
      top: 0;
      left: 0;
  }
  
  .secure-payment-info {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
  }
}

@media (max-width: 576px) {
  .product-info {
      flex-direction: column;
      text-align: center;
  }
  
  .product-icon {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .payment-methods {
      padding: 15px;
  }
  
  .other-payment-option {
      flex-direction: column;
      text-align: center;
  }
  
  .option-icon {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .btn-select-option {
      margin-left: 0;
      margin-top: 15px;
      width: 100%;
  }
  
  .bonus-info {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .bonus-amount {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .bonus-details h4 {
      font-size: 16px;
  }
  
  .bonus-details p {
      font-size: 13px;
  }
  
  .campaign-timer {
      flex-direction: column;
      text-align: center;
  }
  
  .campaign-timer i {
      margin-right: 0;
      margin-bottom: 5px;
  }
}


.payment-success-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.success-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 12px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  box-shadow: var(--card-shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.2);
  position: relative;
}

.success-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid rgba(40, 167, 69, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon i {
  font-size: 40px;
  color: #28a745;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

.success-info-card {
  background-color: rgba(240, 255, 240, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.info-card-content {
  padding: 20px;
}

.info-card-content p {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #28a745, #20913a);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
}

.btn-primary i {
  margin-right: 8px;
  font-size: 18px;
}

.purchased-product-details {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.success-actions-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 12px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
  border-color: rgba(239, 160, 29, 0.3);
}

.menu-button i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 10px;
}

.menu-button span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.info-message {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  background-color: rgba(66, 153, 225, 0.1);
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 8px;
  margin-top: 10px;
}

.info-message i {
  color: #4299e1;
  font-size: 20px;
  margin-right: 10px;
  margin-top: 2px;
}

.info-message p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-message a {
  color: #4299e1;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.info-message a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .success-actions-menu {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .success-title {
      font-size: 20px;
  }
  
  .info-card-content p {
      font-size: 14px;
  }
}

@media (max-width: 576px) {
  .success-icon {
      width: 70px;
      height: 70px;
  }
  
  .success-icon i {
      font-size: 32px;
  }
  
  .btn-primary {
      width: 100%;
  }
  
  .menu-button {
      padding: 15px 10px;
  }
  
  .menu-button i {
      font-size: 24px;
  }
  
  .menu-button span {
      font-size: 14px;
  }
}

.payment-failed-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.failed-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 12px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  box-shadow: var(--card-shadow);
}

.failed-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(220, 53, 69, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
  position: relative;
}

.failed-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid rgba(220, 53, 69, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.failed-icon i {
  font-size: 40px;
  color: #dc3545;
}

.failed-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

.failed-info-card {
  background-color: rgba(255, 235, 238, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.info-card-content {
  padding: 20px;
}

.info-card-content p {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-card-content p:last-child {
  margin-bottom: 0;
}

.alternative-payments {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
}

.alt-payment-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 20px 0;
}

.alt-payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.alt-payment-option {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.alt-payment-option:hover {
  background: linear-gradient(135deg, rgba(239, 160, 29, 0.15), rgba(200, 100, 20, 0.15));
  transform: translateX(5px);
  border-color: rgba(239, 160, 29, 0.3);
}

.option-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.option-icon i {
  font-size: 24px;
  color: var(--dark);
}

.option-text {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.help-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.help-option {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.8));
  border-radius: 12px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.help-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.25);
  border-color: rgba(239, 160, 29, 0.3);
}

.help-option i {
  font-size: 30px;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
}

.help-content {
  flex: 1;
}

.help-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px 0;
}

.help-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.help-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.help-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.help-link::after {
  content: '\ea6c';
  font-family: 'remixicon';
  margin-left: 5px;
  font-size: 14px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.btn-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(22, 22, 22, 0.95));
  color: var(--primary-light);
  border-color: rgba(239, 160, 29, 0.5);
  transform: translateY(-2px);
}

.btn-secondary i {
  font-size: 20px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .failed-title {
      font-size: 20px;
  }
  
  .info-card-content p {
      font-size: 14px;
  }
  
  .help-option {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .help-option i {
      margin-right: 0;
      margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .failed-icon {
      width: 70px;
      height: 70px;
  }
  
  .failed-icon i {
      font-size: 32px;
  }
  
  .option-text {
      font-size: 14px;
  }
}

.footer {
  background-color: var(--dark-surface);
  border-top: 1px solid rgba(239, 160, 29, 0.2);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5), 0 -1px 10px rgba(239, 160, 29, 0.1);
  width: 100%;
  padding: 40px 0 20px;
  margin-top: 0;
  position: relative;
  z-index: 10;
  clear: both;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  opacity: 0.3;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-link:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: var(--primary);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-link:hover:before {
  width: 12px;
  background-color: var(--primary);
}

.footer-bottom {
  max-width: 1750px;
  margin: 40px auto 0;
  padding: 20px 25px 0;
  border-top: 1px solid rgba(239, 160, 29, 0.1);
  display: flex;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px 0 rgba(239, 160, 29, 0.3);
    opacity: 0.8;
  }
  100% {
    box-shadow: 0 0 15px 5px rgba(239, 160, 29, 0.6);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--dark-surface);
    padding: 20px;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .main-wrapper {
    padding-top: 115px;
  }
  
  .main-area {
    flex-direction: column;
    min-height: auto;
  }
  
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(239, 160, 29, 0.1);
    position: relative;
    height: auto;
    min-height: auto;
  }
  
  .main-slider-section {
    flex-direction: column;
  }
  
  .server-stats-sidebar {
    width: 100%;
    flex-direction: row;
  }
  
  .server-box {
    height: auto;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .slider-image {
    height: 250px;
  }
  
  .slider-title {
    font-size: 18px;
  }
  
  .slider-desc {
    font-size: 12px;
  }
  
  .podium-block {
    width: 70px !important;
  }
  
  .first-block {
    height: 110px;
    margin: 0 8px;
  }
  
  .second-block {
    height: 85px;
  }
  
  .third-block {
    height: 60px;
  }
  
  .rank-number {
    font-size: 28px;
  }
  
  .player-name {
    font-size: 12px;
  }
}


@media (max-width: 992px) {
    .header {
      padding: 12px 0;
    }
    
    .header-content {
      padding: 0 15px;
    }
    
    .logo-container {
      width: 45px;
      height: 45px;
    }
    
    .logo-title {
      font-size: 22px;
    }
    
    .logo-subtitle {
      font-size: 10px;
    }
    
    .main-wrapper {
      padding-top: 60px;
    }
    
    .form-control {
      padding: 8px 12px;
      font-size: 13px;
	  background: linear-gradient(to right, rgb(110 81 12 / 10%), rgba(10, 10, 10, 0.95))
    }
    
    .login-title, .nav-links-title, .social-links-title {
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
    }
    
    .login-auth-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .nav-buttons {
      gap: 6px;
    }
    
    .nav-button {
      padding: 6px 8px;
    }
    
    .slider-image {
      height: 320px;
    }
    
    .home-grid {
      gap: 15px;
    }
    
    .card-header {
      padding: 10px 15px;
    }
    
    .card-tabs {
      gap: 10px;
    }
    
    .card-tab {
      font-size: 13px;
    }
    
    .news-item, .event-item {
      padding: 8px 10px;
    }
    
    .news-title {
      font-size: 14px;
    }
    
    .news-text {
      font-size: 12px;
    }
    
    .nav-menu.active {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      border-bottom: 1px solid rgba(239, 160, 29, 0.2);
    }
    
    .nav-link {
      margin: 5px 0;
      display: block;
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .logo-title {
      font-size: 20px;
    }
    
    .header {
      padding: 12px 0;
    }
    
    .slider-title {
      font-size: 16px;
      margin-bottom: 5px;
    }
    
    .slider-desc {
      font-size: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .slider-caption {
      padding: 15px;
    }
    
    .slider-controls {
      padding: 15px;
    }
    
    .slider-image {
      height: 250px;
    }
    
    .card-content {
      padding: 10px;
    }
    
    .slider-nav-btn, .card-action i {
      font-size: 20px;
    }
    
    .footer-content {
      padding: 0 15px;
      gap: 20px;
    }
    
    .footer-title {
      font-size: 18px;
      margin-bottom: 15px;
    }
    
    .footer {
      padding: 30px 0 15px;
    }
  }
  
  @media (max-width: 480px) {
    
    .logo-container {
      width: 45px;
      height: 45px;
      margin-right: 10px;
    }
    
    .logo-icon {
      font-size: 28px;
    }
    
    .slider-image {
      height: 200px;
    }
    
    .event-desc {
      display: none;
    }
    
    .event-time {
      font-size: 10px;
      padding: 3px 6px;
    }
    
    .news-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
    }
    
    .slider-counter {
      display: none;
    }
    
    .server-box {
      padding: 8px 6px;
    }
    
    .server-box-icon {
      width: 32px;
      height: 32px;
    }
    
    .server-box-title {
      font-size: 13px;
    }
    
    .server-box-value {
      font-size: 16px;
    }
    
    .nav-button, .footer-link, .event-item, .news-item {
      padding-top: 10px;
      padding-bottom: 10px;
    }
    
    .main-content {
      padding: 15px 10px;
    }
    
    .ranking-name {
      font-size: 12px;
    }
    
    .rank-badge {
      width: 22px;
      height: 22px;
      font-size: 11px;
    }
    
    .level {
      font-size: 10px;
    }
  }
  
  @media (hover: none) {
    .nav-button:active, .event-item:active, .news-item:active, .footer-link:active, .social-icon:active {
      transform: scale(0.97);
      opacity: 0.9;
    }
    
    .btn:active {
      opacity: 0.9;
    }
    
    .slider-nav-btn {
      padding: 8px;
    }
  }
  
  .menu-toggle {
    width: 32px;
    height: 24px;
    margin-right: 5px;
  }
  
  .menu-toggle span {
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .news-text, .event-name {
    word-break: break-word;
  }
  
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 10px rgba(239, 160, 29, 0.2);
  border: 1px solid rgba(239, 160, 29, 0.15);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.7) translateY(50px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

.popup-overlay.active .popup-content {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: contentAppear 0.7s forwards;
}

@keyframes contentAppear {
  0% {
    transform: scale(0.7) translateY(50px);
    opacity: 0;
  }
  60% {
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.popup-header {
  padding: 15px 20px;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(15, 15, 15, 0.7));
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-title {
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.popup-close {
  font-size: 22px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.popup-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.popup-body {
  padding: 20px;
}

.popup-body .form-control {
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 10px;
  background: linear-gradient(to right, rgb(110 81 12 / 10%), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(239, 160, 29, 0.25);
  transition: all 0.3s ease;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.popup-body .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.2), inset 0 1px 5px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
  transform: translateY(-1px);
}

.popup-body .form-control::placeholder {
  color: rgba(189, 189, 189, 0.6);
  font-weight: 400;
}

.popup-body .checkbox-group,
.popup-body .robot-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.popup-body input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.popup-body .checkbox-input + label::before,
.popup-body .robot-checkbox input + label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: linear-gradient(to right, rgba(25, 25, 25, 0.95), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 4px;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.popup-body .checkbox-input:hover + label::before,
.popup-body .robot-checkbox input:hover + label::before {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(239, 160, 29, 0.1);
}

.popup-body .checkbox-input:checked + label::before,
.popup-body .robot-checkbox input:checked + label::before {
  background: var(--gradient-1);
  border-color: var(--primary);
}

.popup-body .checkbox-input:checked + label::after,
.popup-body .robot-checkbox input:checked + label::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark);
  font-size: 12px;
  font-weight: bold;
}

.popup-body .checkbox-label,
.popup-body .robot-checkbox label {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.popup-body .checkbox-input:focus + label::before,
.popup-body .robot-checkbox input:focus + label::before {
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.2);
}

.popup-body .robot-checkbox {
  margin-bottom: 25px;
}

.popup-body .btn {
  margin-top: 10px;
  padding: 14px;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.nav-link.active-popup {
  color: var(--dark);
  background: var(--gradient-1);
  animation: registerButtonPulse 2s infinite;
}

@keyframes registerButtonPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(239, 160, 29, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(239, 160, 29, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(239, 160, 29, 0);
  }
}

.download-popup .popup-content {
  max-width: 700px;
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
}

.download-body {
  padding: 30px;
  text-align: center;
}

.download-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.download-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-btn {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.95));
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  padding: 14px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.download-btn i {
  font-size: 18px;
}

.download-btn:hover {
  background: var(--gradient-1);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 8px rgba(239, 160, 29, 0.3);
}

.download-info {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.download-date {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--primary);
}

.system-requirements {
  font-size: 13px;
  opacity: 0.8;
}

.system-requirements p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .download-buttons {
    grid-template-columns: 1fr;
  }
}
.ban-list-container {
  width: 100%;
  padding: 30px 20px;
  background-color: var(--dark-card);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin: 20px 0;
}

.ban-list-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.ban-list-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.ban-list-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ban-list-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.ban-search {
  width: 100%;
  margin-bottom: 20px;
  text-align: right;
}

.ban-search input {
  width: 250px;
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  background-color: var(--dark);
  color: var(--text-primary);
  font-size: 14px;
}

.ban-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}
@media (max-width: 768px) {
  .ban-table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}
@media (max-width: 768px) {
  .ban-search {
    width: 100%;
    text-align: center;
  }
  
  .ban-search input {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .ban-explanation {
    padding: 15px 10px;
  }
  
  .ban-info-table th, 
  .ban-info-table td {
    padding: 8px 5px;
    font-size: 12px;
  }
}
@media (hover: none) {
  .ban-table td,
  .dataTables_paginate .paginate_button {
    padding: 12px;
  }
}
@media (max-width: 768px) {
    .ban-table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; 
    }
    
    .ban-table {
        min-width: 650px; 
    }
}
.ban-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ban-table th {
  padding: 14px 15px;
  text-align: left;
  background-color: rgba(15, 15, 15, 0.95);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(239, 160, 29, 0.3);
}

.ban-table th:first-child {
  border-top-left-radius: 8px;
}

.ban-table th:last-child {
  border-top-right-radius: 8px;
}

.ban-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.2s ease;
}

.ban-table tr:hover td {
  background-color: rgba(40, 40, 40, 0.6);
  color: var(--text-primary);
  border-bottom-color: rgba(239, 160, 29, 0.2);
}

.ban-table tr:last-child td {
  border-bottom: none;
}

.ban-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.ban-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.ban-table tr:nth-child(even) {
  background-color: rgb(227 138 27 / 8%);
}

.ban-table tr:nth-child(odd) {
  background-color: rgba(15, 15, 15, 0.1);
}

.ban-reason {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: help;
}

.ban-table .ban-reason:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


.ban-reason.basit-hakaret {
 background: linear-gradient(135deg, #cdae0c, #a17702);
    border: 1px solid rgb(223 139 32 / 64%);
}

.ban-reason.argo-basit-kufur-1,
.ban-reason.argo-basit-kufur-2,
.ban-reason.argo-basit-kufur-3,
.ban-reason.kufur-1,
.ban-reason.kufur-2,
.ban-reason.basit-hile,
.ban-reason.oyun-duzeni,
.ban-reason.sarkinti-1 {
  background: linear-gradient(135deg, #e67e22, #d35400);
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.ban-reason.kufur-3,
.ban-reason.hile-1,
.ban-reason.hile-2,
.ban-reason.hile-3 {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.ban-reason.ticaret,
.ban-reason.reklam,
.ban-reason.yonetici-hakaret,
.ban-reason.dini-milli,
.ban-reason.sarkinti-2 {
  background: linear-gradient(135deg, #7f8c8d, #2c3e50);
  border: 1px solid rgba(127, 140, 141, 0.2);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  padding: 0 12px;
  background-color: var(--dark-surface);
  color: var(--text-secondary);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 160, 29, 0.1);
  white-space: nowrap;
  overflow: hidden;
}

.pagination a.active {
  background: var(--gradient-1);
  color: var(--dark);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(239, 160, 29, 0.3);
  font-weight: 600;
}

.pagination a:hover:not(.active) {
  background: linear-gradient(135deg, rgba(239, 160, 29, 0.2), rgba(200, 100, 20, 0.2));
  color: var(--primary);
  border-color: rgba(239, 160, 29, 0.3);
  transform: translateY(-2px);
}

.ban-explanation {
  margin-top: 30px; 
  padding: 20px; 
  background-color: rgba(15, 15, 15, 0.8); 
  border-radius: 8px; 
  border: 1px solid rgba(239, 160, 29, 0.2);
}

.ban-info-table {
  width: 100%; 
  border-collapse: separate; 
  border-spacing: 0; 
  border-radius: 8px; 
  overflow: hidden;
}

.market-container {
  width: 100%;
  padding: 20px;
}

.featured-slider-container {
  position: relative;
  margin-bottom: 30px;
}

.featured-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.featured-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.featured-slide {
  display: flex;
  min-width: 100%;
  gap: 20px;
}

.featured-product {
  flex: auto;
  background-color: rgba(22, 22, 22, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.featured-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(239, 160, 29, 0.2);
  border-color: rgba(239, 160, 29, 0.4);
}

.featured-header {
  display: flex;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: rgba(10, 10, 10, 0.6);
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
}

.featured-title {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}

.featured-price {
  display: flex;
  align-items: center;
  background-color: rgba(239, 160, 29, 0.15);
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.featured-price i {
  margin-right: 4px;
}

.featured-content {
  padding: 15px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.featured-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.featured-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(10, 10, 10, 0.4);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.1);
  width: 60px;
}

.featured-item-img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(239, 160, 29, 0.15), transparent);
  border-radius: 50%;
}

.featured-item-img i {
  color: var(--primary);
  font-size: 28px;
}

.featured-item-img img{
  max-width: 24px;
  height: auto;
}

.featured-item-amount {
  font-size: 10px;
  color: var(--text-secondary);
}

.featured-desc {
  margin: 15px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  flex-grow: 1;
}

.featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(239, 160, 29, 0.1);
}

.stock-info {
  font-size: 13px;
  color: var(--text-secondary);
}

.buy-btn {
  background: var(--gradient-1);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: var(--gradient-2);
}

.featured-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.slider-btn {
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--primary);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--dark);
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(239, 160, 29, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.products-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 30px;
}

.search-filter-container {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 600px;
}

.search-container {
  flex-grow: 1;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 15px;
  padding-left: 40px;
  background-color: rgba(22, 22, 22, 0.8);
  border: 1px solid rgba(239, 160, 29, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 18px;
}

.filter-container {
  position: relative;
  width: 180px;
}

.filter-select {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(22, 22, 22, 0.8);
  border: 1px solid rgba(239, 160, 29, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.filter-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 18px;
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background-color: rgba(22, 22, 22, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(239, 160, 29, 0.2);
  border-color: rgba(239, 160, 29, 0.4);
}

.product-header {
  display: flex;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: rgba(10, 10, 10, 0.6);
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
}

.product-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.product-price {
  display: flex;
  align-items: center;
  background-color: rgba(239, 160, 29, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--primary);
  font-size: 12px;
}

.product-price i {
  margin-right: 4px;
  font-size: 14px;
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.product-img-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  background: radial-gradient(circle, rgba(239, 160, 29, 0.15), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 160, 29, 0.2);
}

.product-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.product-img-container i {
  font-size: 36px;
  color: var(--primary);
}

.product-footer {
  padding: 15px;
  border-top: 1px solid rgba(239, 160, 29, 0.1);
  text-align: center;
}

.tooltip-container {
  position: relative;
  z-index: 2;
}

.tooltip {
  position: absolute;
  top: auto;
  bottom: 120%; 
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background-color: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}



.tooltip-content {
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.5;
}

.tooltip-line {
  margin-bottom: 3px;
}

.tooltip-container:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: var(--primary) transparent transparent transparent;
}

.isVisible0 {
  display: none !important;
}

.isVisible1 {
  display: flex !important;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-slide {
    flex-direction: column;
  }
}

@media (max-width: 768px) { 
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .search-filter-container {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .search-filter-container {
    flex-direction: column;
  }
  
  .filter-container {
    width: 100%;
  }
}

.product-slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
}

.product-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.product-slider {
  display: flex;
  transition: transform 0.4s ease;
}

.product-box {
  flex: 0 0 100%;
  padding: 0;
  background-color: #161616;
  border: 1px solid rgba(239, 160, 29, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.product-box-header {
  display: flex;
  align-items: center;
  background-color: #0A0A0A;
  padding: 15px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.2);
}

.product-box-icon {
  width: 40px;
  height: 40px;
  background-color: #EFA01D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.product-box-icon i {
  font-size: 20px;
  color: #0A0A0A;
}

.product-box-title {
  color: #F2F2F2;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.product-box-content {
  padding: 20px;
}

.product-box-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.box-item {
  text-align: center;
}

.box-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.box-item-image {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid rgba(239, 160, 29, 0.3);
  padding: 2px;
  background-color: rgba(15, 15, 15, 0.5);
}

.box-item-amount {
  font-size: 12px;
  color: #BDBDBD;
}

.product-box-description {
  text-align: center;
  color: #BDBDBD;
  font-size: 14px;
  margin-bottom: 20px;
  min-height: 40px;
}

.product-box-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: rgba(10, 10, 10, 0.5);
  border-radius: 6px;
  margin-bottom: 20px;
}

.stock-info {
  font-size: 14px;
  color: #BDBDBD;
}

.stock-value {
  font-weight: 700;
  color: #F2F2F2;
  margin-left: 5px;
}

.price-label {
  background-color: rgba(239, 160, 29, 0.15);
  padding: 5px 10px;
  border-radius: 6px;
  color: #EFA01D;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-buy-button {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background-color: #EFA01D;
  color: #0A0A0A;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-buy-button:hover {
  background-color: #C86414;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 1;
}

.slider-control {
  width: 40px;
  height: 40px;
  background-color: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EFA01D;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-control:hover {
  background-color: #EFA01D;
  color: #0A0A0A;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(239, 160, 29, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #EFA01D;
  transform: scale(1.2);
}

.main-container {
  width: 100%;
  padding: 30px 20px;
  background-color: rgba(22, 22, 22, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin: 20px 0;
}

.main-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #EFA01D;
  background: linear-gradient(135deg, #EFA01D, #C86414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.filter-search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.table-length-control {
  color: #BDBDBD;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.length-select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  background-color: rgba(22, 22, 22, 0.9);
  color: #F2F2F2;
  font-size: 14px;
  min-width: 120px;
  appearance: auto;
}

.length-select:focus {
  outline: none;
  border-color: #EFA01D;
}

.search-box input {
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid rgba(239, 160, 29, 0.2);
  background-color: rgba(22, 22, 22, 0.9);
  color: #F2F2F2;
  font-size: 14px;
  min-width: 220px;
}

.search-box input:focus {
  outline: none;
  border-color: #EFA01D;
}

.product-item-wrapper {
  padding: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .filter-search-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .search-box input {
    width: 100%;
  }
  
  .slider-controls {
    padding: 0 10px;
  }
  
  .slider-control {
    width: 35px;
    height: 35px;
  }
  
  .product-box-header {
    padding: 12px;
  }
  
  .product-box-content {
    padding: 15px;
  }
  
  .product-box-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .product-grid{
    width: 100%;
  }
  
  .slider-control {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .product-box-items {
    gap: 5px;
  }
  
  .box-item-image {
    width: 40px;
    height: 40px;
  }
  
  .product-box-title {
    font-size: 16px;
  }
  
  .product-box-description {
    font-size: 12px;
  }
  
  .stock-info,
  .price-label {
    font-size: 12px;
  }
}

.statistics-body {
  padding: 20px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

.statistic-box {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(239, 160, 29, 0.1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.statistic-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  transition: all 0.3s ease;
}

.statistic-box:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(25, 25, 25, 0.9));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 8px rgba(239, 160, 29, 0.2);
  border-color: rgba(239, 160, 29, 0.3);
}

.statistic-box:hover::before {
  opacity: 1;
}

.statistic-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 10px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 24px;
  color: var(--dark);
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.statistic-box:hover .statistic-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(239, 160, 29, 0.4);
}

.statistic-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.statistic-title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.statistic-box:hover .statistic-title {
  color: var(--primary);
}

.statistic-arrow {
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.statistic-box:hover .statistic-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 576px) {
  .statistic-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 12px;
  }
  
  .statistic-title {
    font-size: 14px;
  }
}

        .oyuncu-siralama-container {
            width: 100%;
            padding: 30px 20px;
            background-color: var(--dark-card);
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(239, 160, 29, 0.1);
            margin: 20px 0;
        }

        .oyuncu-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .oyuncu-description {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.5;
        }

        .oyuncu-search {
            width: 50%;
            margin-bottom: 20px;
            text-align: right;
        }

        .oyuncu-search input {
            width: 250px;
            padding: 8px 15px;
            border-radius: 8px;
            border: 1px solid rgba(239, 160, 29, 0.2);
            background-color: var(--dark);
            color: var(--text-primary);
            font-size: 14px;
        }

        .oyuncu-search input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
        }
        
        .widget-content {
            padding: 20px;
        }
        
        .filter-search-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .filter-tab {
            padding: 10px 20px;
            background-color: var(--dark-surface);
            color: var(--primary);
            border: none;
            cursor: pointer;
            font-weight: 600;
            border-radius: 0;
            text-align: center;
        }

        .filter-tab.active {
            background-color: var(--primary);
            color: var(--dark);
        }

        .search-box {
            text-align: right;
            margin-bottom: 15px;
        }

        .search-box input {
            padding: 8px 15px;
            border-radius: 8px;
            border: 1px solid rgba(239, 160, 29, 0.2);
            background-color: var(--dark);
            color: var(--text-primary);
            width: 200px;
        }

        .oyuncu-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .oyuncu-table th {
            padding: 12px 10px;
            text-align: left;
            background-color: rgba(15, 15, 15, 0.95);
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid rgba(239, 160, 29, 0.3);
        }

        .oyuncu-table td {
            padding: 10px;
            border-bottom: 1px solid rgba(239, 160, 29, 0.1);
            color: var(--text-secondary);
            font-size: 14px;
        }

        .oyuncu-table tr:hover td {
            background-color: rgba(40, 40, 40, 0.6);
            color: var(--text-primary);
        }

        .oyuncu-table tr:nth-child(even) {
            background-color: rgba(25, 25, 25, 0.4);
        }

        .oyuncu-table tr:nth-child(odd) {
            background-color: rgba(15, 15, 15, 0.4);
        }

        .kingdom-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            min-width: 80px;
        }

        .jinno {
            background: linear-gradient(135deg, rgba(54, 95, 160, 0.2), rgba(40, 70, 120, 0.2));
            color: #ffffff;
            border: 1px solid rgba(70, 130, 220, 0.15);
        }

        .shinsoo {
            background: linear-gradient(135deg, rgba(160, 54, 54, 0.2), rgba(120, 40, 40, 0.2));
            color: #ffffff;
            border: 1px solid rgba(220, 70, 70, 0.15);
        }

        .chunjo {
            background: linear-gradient(135deg, rgba(160, 150, 54, 0.2), rgba(120, 110, 40, 0.2));
            color: #ffffff;
            border: 1px solid rgba(220, 200, 60, 0.15);
        }
		

.dataTables_paginate {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.dataTables_paginate .paginate_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    margin: 0 4px;
    padding: 0 10px;
    background: var(--dark-surface);
    color: var(--text-secondary) !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(239, 160, 29, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #EFA01D, #C86414) !important;
    color: #0A0A0A !important;
    border-color: #EFA01D !important;
    box-shadow: 0 0 10px rgba(239, 160, 29, 0.3);
    font-weight: 600;
}

.dataTables_paginate .paginate_button:hover:not(.current) {
    background: linear-gradient(135deg, rgba(239, 160, 29, 0.2), rgba(200, 100, 20, 0.2)) !important;
    color: #EFA01D !important;
    border-color: rgba(239, 160, 29, 0.3) !important;
    transform: translateY(-2px);
}

.dataTables_paginate .paginate_button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.dataTables_paginate .paginate_button.previous,
.dataTables_paginate .paginate_button.next {
    font-weight: 600;
}

.dataTables_info {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    padding: 15px 0;
}

.bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.dataTables_length {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.dataTables_length select {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(239, 160, 29, 0.2);
    background-color: var(--dark-surface);
    color: var(--text-primary);
    margin: 0 5px;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23EFA01D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
    min-width: 70px;
}

.dataTables_length select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.dataTables_filter {
    color: var(--text-secondary);
    font-size: 14px;
}

.dataTables_filter input {
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(239, 160, 29, 0.2);
    background-color: var(--dark-surface);
    color: var(--text-primary);
    margin-left: 8px;
    width: 200px;
    font-size: 14px;
}

.dataTables_filter input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

@media screen and (max-width: 767px) {
    .dataTables_wrapper .top {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dataTables_length, 
    .dataTables_filter {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .dataTables_filter input {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
}

.dataTables_wrapper .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.dataTables_wrapper .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

div.dataTables_wrapper div.dataTables_length,
div.dataTables_wrapper div.dataTables_filter {
    float: left;
    display: inline-block;
}

div.dataTables_wrapper div.dataTables_length {
    margin-right: 20px;
}

div.dataTables_wrapper div.dataTables_filter {
    float: right;
    margin-left: auto;
}

div.dataTables_wrapper div.dataTables_length,
div.dataTables_wrapper div.dataTables_filter {
    margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter {
        float: none;
        text-align: center;
    }
}

div.dataTables_wrapper {
    clear: both;
}
 @media screen and (max-width: 768px) {
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
        }
        
        .filter-tab {
            flex: 1;
            min-width: 120px;
            font-size: 14px;
            padding: 8px 5px;
        }
        
        .oyuncu-table {
            display: block;
            width: 100%;
            overflow-x: auto;
        }
          .lonca-table {
            display: block;
            width: 100%;
            overflow-x: auto;
        }      
        .dataTables_filter input {
            width: 100%;
            max-width: 200px;
        }
        
        .dataTables_paginate .paginate_button {
            padding: 0 8px;
            min-width: 30px;
            height: 30px;
            margin: 0 2px;
        }
    }
   #oyuncuSiralamaTable1_filter {
        display: none !important;
    }
    
    #oyuncuSiralamaTable1_length {
        display: none !important;
    }
.table-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .table-length-control .dataTables_length {
        font-size: 14px;
        color: var(--text-secondary);
    }
    
    .table-length-control .dataTables_length select {
        padding: 5px 10px;
        border-radius: 8px;
        border: 1px solid rgba(239, 160, 29, 0.2);
        background-color: var(--dark);
        color: var(--text-primary);
        margin: 0 5px;
    }
    
    .table-length-control .dataTables_length select:focus {
        outline: none;
        border-color: var(--primary);
    }
    
    .dataTables_length, .dataTables_filter {
        display: none !important;
    }
    
    @media screen and (max-width: 768px) {
        .table-controls {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .table-length-control, .oyuncu-search {
            width: 100%;
            margin-bottom: 10px;
        }
        
        .search-box input {
            width: 100%;
            max-width: 100%;
        }
        
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
        }
        
        .filter-tab {
            flex: 1;
            min-width: 120px;
            font-size: 14px;
            padding: 8px 5px;
        }
        
        .oyuncu-table {
            display: block;
            width: 100%;
            overflow-x: auto;
        }
    }
    .length-select {
        padding: 5px 10px;
        border-radius: 5px;
        border: 1px solid rgba(239, 160, 29, 0.2);
        background-color: var(--dark-surface);
        color: var(--text-primary);
        font-size: 14px;
        appearance: auto; 
        -webkit-appearance: auto; 
        margin: 0 5px;
        min-width: 60px;
    }
    
    .table-length-control {
        color: var(--text-secondary);
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    
    .table-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .search-box input {
        padding: 8px 15px;
        border-radius: 8px;
        border: 1px solid rgba(239, 160, 29, 0.2);
        background-color: var(--dark-surface);
        color: var(--text-primary);
        font-size: 14px;
        min-width: 200px;
    }
	
.lonca-siralama-container {
    width: 100%;
    padding: 30px 20px;
    background-color: var(--dark-card);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(239, 160, 29, 0.1);
    margin: 20px 0;
}

.lonca-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lonca-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.lonca-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.lonca-table th {
    padding: 14px 15px;
    text-align: left;
    background-color: rgba(15, 15, 15, 0.95);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(239, 160, 29, 0.3);
}

.lonca-table th:first-child {
    border-top-left-radius: 8px;
}

.lonca-table th:last-child {
    border-top-right-radius: 8px;
}

.lonca-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(239, 160, 29, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.lonca-table tr:hover td {
    background-color: rgba(40, 40, 40, 0.6);
    color: var(--text-primary);
    border-bottom-color: rgba(239, 160, 29, 0.2);
}

.lonca-table tr:last-child td {
    border-bottom: none;
}

.lonca-table tr:nth-child(even) {
    background-color: rgba(25, 25, 25, 0.4);
}

.lonca-table tr:nth-child(odd) {
    background-color: rgba(15, 15, 15, 0.4);
}

.main-container {
  width: 100%;
  padding: 30px 20px;
  background-color: var(--dark-card);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  margin: 20px 0;
}

.main-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 15, 15, 0.7);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #EFA01D, #d88c10);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #f3ab2f, #e79417);
}

::-webkit-scrollbar-corner {
  background: rgba(15, 15, 15, 0.7);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #EFA01D rgba(15, 15, 15, 0.7);
}

.article::-webkit-scrollbar {
  width: 6px;
}

.article::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #EFA01D, #d88c10);
  border-radius: 3px;
}

.article {
  scrollbar-width: thin;
  scrollbar-color: #EFA01D rgba(15, 15, 15, 0.7);
}

.modal-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.modal-product-item {
  background-color: rgba(25, 25, 25, 0.6);
  border: 1px solid rgba(239, 160, 29, 0.1);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  transition: all 0.2s ease;
}

.modal-product-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(239, 160, 29, 0.1);
}

.modal-product-image-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 160, 29, 0.15), transparent);
  border: 1px solid rgba(239, 160, 29, 0.2);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-product-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.modal-product-quantity {
  margin: 5px 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 13px;
}

.modal-product-description {
  margin-bottom: 8px;
  color: #cccccc;
  font-size: 12px;
  min-height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.modal-price-section {
  margin: 20px 0;
  padding: 12px;
  border-top: 1px solid rgba(239, 160, 29, 0.15);
  border-bottom: 1px solid rgba(239, 160, 29, 0.15);
  text-align: center;
  font-size: 16px;
}

.modal-price-value {
  color: var(--primary);
  font-weight: bold;
  font-size: 22px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .modal-product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }
}

@media (max-width: 480px) {
  .modal-product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
  }
  
  .modal-product-image-container {
      width: 70px;
      height: 70px;
  }
  
  .modal-product-description {
      min-height: 42px;
      -webkit-line-clamp: 2;
  }
}

.product-single-container {
  background-color: rgba(20, 20, 20, 0.4);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 20px;
}

.product-single-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.product-single-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-single-image-container {
  width: 120px;
  height: 120px;
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(239, 160, 29, 0.2);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(239, 160, 29, 0.15), transparent);
  margin-bottom: 20px;
}

.product-single-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.product-single-preview {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-preview-image {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.product-single-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.product-single-description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  max-width: 550px;
  margin: 0 auto;
  padding: 15px 0;
}

.product-single-price-info {
  margin: 10px 0;
  padding: 0;
  font-size: 16px;
}

.product-single-price-value,
.product-single-quantity {
  color: #EFA01D;
  font-weight: bold;
}

.product-single-form-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.product-single-form-row label {
  color: #cccccc;
  font-size: 16px;
}

.product-single-quantity-input {
  background-color: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(239, 160, 29, 0.3);
  border-radius: 4px;
  color: #ffffff;
  padding: 8px 12px;
  width: 80px;
  text-align: center;
  font-size: 16px;
}

.product-single-quantity-input:focus {
  outline: none;
  border-color: #EFA01D;
}

.product-single-purchase-button {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 10px auto;
  padding: 12px 0;
  background-color: #EFA01D;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.product-single-purchase-button:hover {
  background-color: #d88c10;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .product-single-content {
      flex-direction: row;
      align-items: flex-start;
  }
  
  .product-single-media {
      width: 40%;
  }
  
  .product-single-details {
      width: 60%;
      text-align: left;
      border-left: 1px solid rgba(239, 160, 29, 0.15);
      padding-left: 20px;
  }
  
  .product-single-description {
      border-top: none;
      padding-top: 0;
  }
  
  .product-single-form-row {
      justify-content: flex-start;
  }
  
  .product-single-purchase-button {
      margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .product-single-container {
      padding: 15px;
  }
  
  .product-single-price-info {
      font-size: 14px;
  }
}

.main-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.main-table th {
  padding: 14px 15px;
  text-align: left;
  background-color: rgba(15, 15, 15, 0.95);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(239, 160, 29, 0.3);
}

.main-table th:first-child {
  border-top-left-radius: 8px;
}

.main-table th:last-child {
  border-top-right-radius: 8px;
}

.main-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(239, 160, 29, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.2s ease;
}

.main-table tr:hover td {
  background-color: rgba(40, 40, 40, 0.6);
  color: var(--text-primary);
  border-bottom-color: rgba(239, 160, 29, 0.2);
}

.main-table tr:last-child td {
  border-bottom: none;
}

.main-table tr:nth-child(even) {
  background-color: rgba(25, 25, 25, 0.4);
}

.main-table tr:nth-child(odd) {
  background-color: rgba(15, 15, 15, 0.4);
}

.main-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}


.main-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #999;
}

.main-meta i {
  color: #e2a939;
}

.main-features {
  width: 100%;
}

.features-tab {
  border-radius: 6px;
}

.main-content-text {
  line-height: 1.6;
  margin-bottom: 30px;
}

.main-content-text img {
  max-width: 100%;
}

.main-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.main-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.main-tag {
  background-color: #333;
  color: #e0e0e0;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.main-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-text {
  color: #999;
  font-size: 14px;
}

.share-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.facebook-share {
  background-color: #3b5998;
}

.twitter-share {
  background-color: #1da1f2;
}

.whatsapp-share {
  background-color: #25d366;
}

.discord-share {
  background-color: #7289da;
}

.share-button:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .main-footer {
      flex-direction: column;
      gap: 15px;
  }
  
  .main-share {
      width: 100%;
      justify-content: flex-start;
  }
  
  .main-tags {
      width: 100%;
      margin-bottom: 10px;
  }
}

.modal-content img {
  max-width: 100%;
}

.tab-container {
  display: flex;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.tab-button {
  flex: 1;
  padding: 15px;
  background: linear-gradient(to right, rgba(22, 22, 22, 0.8), rgba(25, 25, 25, 0.6));
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  text-align: center;
}

.tab-button:hover {
  background: linear-gradient(to right, rgba(30, 30, 30, 0.9), rgba(35, 35, 35, 0.7));
  color: var(--primary);
}

.tab-button.active {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  background: linear-gradient(to right, rgba(35, 35, 35, 0.95), rgba(40, 40, 40, 0.8));
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .tab-button {
      font-size: 14px;
      padding: 12px 5px;
  }
}

.alert {
  position: relative;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
  animation: alertFadeIn 0.5s forwards;
  width: 100%;
}

@keyframes alertFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  border-radius: 2px 0 0 2px;
}

.alert-icon {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  min-width: 24px;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.alert-message {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.alert-close {
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  font-size: 20px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.alert-success {
  background-color: rgba(25, 35, 25, 0.95);
  border-color: rgba(72, 187, 120, 0.3);
  color: #9ae6b4;
}

.alert-success::before {
  background: linear-gradient(to bottom, #48bb78, #38a169);
}

.alert-success .alert-icon {
  color: #48bb78;
}

.alert-success .alert-title {
  color: #9ae6b4;
}

.alert-info {
  background-color: rgba(21, 28, 41, 0.95);
  border-color: rgba(79, 129, 189, 0.3);
  color: #90cdf4;
}

.alert-info::before {
  background: linear-gradient(to bottom, #4299e1, #3182ce);
}

.alert-info .alert-icon {
  color: #4299e1;
}

.alert-info .alert-title {
  color: #90cdf4;
}

.alert-warning {
  background-color: rgba(41, 31, 21, 0.95);
  border-color: rgba(239, 160, 29, 0.3);
  color: #f3bc60;
}

.alert-warning::before {
  background: linear-gradient(to bottom, #EFA01D, #C86414);
}

.alert-warning .alert-icon {
  color: #EFA01D;
}

.alert-warning .alert-title {
  color: #f3bc60;
}

.alert-danger {
  background-color: rgba(41, 21, 21, 0.95);
  border-color: rgba(229, 62, 62, 0.3);
  color: #feb2b2;
}

.alert-danger::before {
  background: linear-gradient(to bottom, #e53e3e, #c53030);
}

.alert-danger .alert-icon {
  color: #e53e3e;
}

.alert-danger .alert-title {
  color: #feb2b2;
}

@media (max-width: 768px) {
  .alert {
    padding: 12px 15px;
  }
  
  .alert-icon {
    font-size: 18px;
    margin-right: 10px;
  }
  
  .alert-title {
    font-size: 15px;
  }
  
  .alert-message {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .alert {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .alert-icon {
    margin-bottom: 10px;
  }
  
  .alert-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }
}

.alert a {
  position: relative;
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  padding-bottom: 1px;
}

.alert a:hover {
  border-bottom: 1px solid currentColor;
}

.alert a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.alert a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.alert-success a {
  color: #68d391; 
  border-bottom-color: rgba(104, 211, 145, 0.4);
}

.alert-success a:hover {
  color: #9ae6b4;
}

.alert-info a {
  color: #63b3ed; 
  border-bottom-color: rgba(99, 179, 237, 0.4);
}

.alert-info a:hover {
  color: #90cdf4;
}

.alert-warning a {
  color: #F3BC60; 
  border-bottom-color: rgba(243, 188, 96, 0.4);
}

.alert-warning a:hover {
  color: #fbd38d;
}

.alert-danger a {
  color: #fc8181; 
  border-bottom-color: rgba(252, 129, 129, 0.4);
}

.alert-danger a:hover {
  color: #feb2b2;
}

.alert-system-message a {
  color: #90cdf4; 
  border-bottom-color: rgba(144, 205, 244, 0.4);
}

.alert-system-message a:hover {
  color: #bee3f8;
}

.alert a:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5);
  border-radius: 2px;
}

.alert a:active {
  opacity: 0.8;
  transform: translateY(1px);
}
@media (max-width: 576px) {
  .alert a.link-button {
    padding: 6px 12px; 
    width: 100%; 
    margin: 8px 0;
  }
}

.session-message {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.session-card {
  max-width: 600px;
  margin: 50px auto;
  animation: fadeInUp 0.5s ease-out;
}

.timeout-icon {
  margin-bottom: 25px;
}

.timeout-icon i {
  font-size: 70px;
  color: var(--primary);
  animation: pulse 1.5s infinite alternate;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  from {
      transform: scale(1);
      opacity: 0.8;
  }
  to {
      transform: scale(1.1);
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .session-card {
      margin: 30px 15px;
  }
  
  .timeout-icon i {
      font-size: 60px;
  }
  
  .session-title {
      font-size: 24px;
  }
  
  .session-message {
      font-size: 16px;
  }
}

.form-buttons-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
}

.form-buttons-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-buttons-row .btn-submit {
  width: 100%;
  display: block;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--gradient-1);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
}

.form-buttons-row .btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-buttons-row .btn-submit:hover::before {
  opacity: 1;
}

@media (max-width: 576px) {
  .form-buttons-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-buttons-row .form-group {
    width: 100%;
  }
}

.verifyCodeCounter {
  display: block;
  text-align: right;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.verifyCodeCounter .counter {
  color: var(--primary);
  font-weight: 600;
}

.alert-verification-time {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.alert-verification-time i {
  margin-right: 8px;
}

select option {
  background-color: var(--dark-card); 
  color: var(--text-primary); 
  padding: 10px;
}

select {
  background-color: var(--dark-surface);
  color: var(--text-primary);
  border: 1px solid rgba(239, 160, 29, 0.2);
  padding: 10px 15px;
  border-radius: 8px;
  appearance: auto; 
  font-size: 14px;
  cursor: pointer;
}

select:hover {
  border-color: var(--primary);
}

select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(239, 160, 29, 0.15);
}

.session-card {
  background-color: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(239, 160, 29, 0.1);
  padding: 30px;
  margin-top: 20px;
}

.session-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: center;
}

.session-list {
  list-style: none;
  margin-bottom: 30px;
}

.session-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.session-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gradient-1);
  border-radius: 50%;
}

.btn-home {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: var(--gradient-1);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.btn-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-home:hover::before {
  opacity: 1;
}

.timeout-icon {
  text-align: center;
  margin-bottom: 20px;
}

.timeout-icon i {
  font-size: 60px;
  color: var(--primary);
  animation: vibrate 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) 2;
}

@keyframes vibrate {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@media (max-width: 768px) {
  .session-card {
    padding: 20px;
  }
  
  .session-title {
    font-size: 24px;
    text-align: center;
  }
}

.rules-container {
    width: 100%;
    padding: 30px 20px;
    background-color: var(--dark-card);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(239, 160, 29, 0.1);
    margin: 20px 0;
}

.rules-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.update-date {
    position: absolute;
    top: 60px;
    right: 50px;
    color: #aaaaaa;
    font-style: italic;
    font-size: 14px;
}

.rules-content {
    line-height: 1.9;
    padding: 30px;
}
        
        .rules-content a {
            color: #eb9a1cc7;
            text-decoration: none;
        }
.haber-link {
  color: #d5993b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  
  &:hover {
    color: #f7ba0d;
    text-decoration: none;
	
  }
  
  &:visited {
    color: #644c2f;
  }
  
  &:active {
    color: #ff4500;
  }
  
  &:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
  }
}

.main-content-text a, .modal-content .article a {
  color: #d5993b;
  text-decoration: underline;
  text-decoration-color: #d5993b;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.main-content-text a, .modal-content .article a:hover {
  color: #f7ba0d;
  text-decoration-color: #f7ba0d;
  text-decoration-thickness: 2px;
  text-shadow: 0 0 1px rgba(247, 186, 13, 0.2);
}

.main-content-text a, .modal-content .article a:active {
  color: #ff4500;
  text-decoration-color: #ff4500;
}

.main-content-text a, .modal-content .article a:visited {
  color: #644c2f;
  text-decoration-color: #644c2f;
}

        .changelog-accordion {
            width: 100%;
        }

        .changelog-item {
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(239, 160, 29, 0.1);
            background-color: var(--dark-surface);
        }

        .changelog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: linear-gradient(to right, rgba(22, 22, 22, 0.8), rgba(25, 25, 25, 0.6));
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .changelog-header:hover {
            background: linear-gradient(to right, rgba(30, 30, 30, 0.9), rgba(35, 35, 35, 0.7));
        }

        .changelog-date {
            font-size: 16px;
            font-weight: 600;
        }

        .changelog-icon {
            color: var(--primary);
            transition: transform 0.3s ease;
            font-size: 20px;
        }

        .changelog-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(18, 18, 18, 0.8);
        }

        .changelog-content.active {
            max-height: 1000px;
        }

        .changelog-inner {
            padding: 20px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .change-item {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            font-size: 15px;
        }

        .change-item:last-child {
            margin-bottom: 0;
        }

        .change-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--gradient-1);
            border-radius: 50%;
        }

        .changelog-header.active .changelog-icon {
            transform: rotate(180deg);
        }
		
.btn-submit {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--gradient-1);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover::before {
  opacity: 1;
}		
.support-rules {
  background-color: rgba(22, 22, 22, 0.5);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  border: 1px solid rgba(239, 160, 29, 0.1);
}

.support-rules h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 15px;

  text-transform: uppercase;
}

.support-rules ul {
  list-style-type: none;
  padding-left: 0;
}

.support-rules li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.support-rules li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 10px;
}


.header-right {
    display: flex;
    align-items: center;
}

.account-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background-color: #e74c3c;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-surface);
}

.swipe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.swipe-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.swipe-slide {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .swipe-wrapper {
	  flex-direction: column; 
    width: 100%;
    gap: 20px;
  }
  
  .swipe-slide {
    width: 100%;
  }
  
  .swipe-pagination {
     display: none!important;
  }
}

@media (max-width: 767px) {
  .swipe-wrapper {
    width: 200%;
  }
  
  .swipe-slide {
    width: 50%;
  }
}

.swipe-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  background-color: #555;
  border-radius: 50%;
}

.pagination-dot.active {
  background-color: #f0a500;
}

.account-header {
    margin-bottom: 15px;
    text-align: center;
}

.account-panel-spaced {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.account-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-item.gold-item {
    background-color: rgba(240, 165, 0, 0.1);
}

.account-item-label {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.account-item-label img {
    height: 20px;
    margin-right: 5px;
}

.account-item-value {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.account-item-value-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.load-btn {
    background-color: #2c2c2c;
    color: #f0a500;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.load-btn:hover {
    background-color: #3c3c3c;
}

.logout-btn {
    width: 100%;
    background-color: rgba(255, 0, 0, 0.2);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background-color: rgba(255, 0, 0, 0.3);
}

.sidebar-toggle {
  display: none; 
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0a500;
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sidebar-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar {
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .sidebar-toggle {
    display: flex; 
  }
  
  .sidebar {
    position: fixed;
    top: 70px; 
    left: 0; 
    width: 250px;
    height: calc(100vh - 70px);
    background-color: #1a1a1a;
    z-index: 999;
    transform: translateX(-100%); 
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
  
  .sidebar-overlay.active {
    display: block;
  }
}
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
  cursor: grab;
}

.slider-track:active {
  cursor: grabbing;
}

.slider-dots {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot.active {
  background-color: #f0a500;
  transform: scale(1.2);
}

@media (max-width: 767px) {
  
  .slider-dot {
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    position: fixed;
    top: 70px; 
    left: 0;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: #1a1a1a;
    z-index: 999;
    transform: translateX(-100%);
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
  }
  
  .sidebar > * {
    min-height: auto; 
    flex-shrink: 0; 
    height: auto !important; 
  }
  
  .sidebar::-webkit-scrollbar {
    width: 5px;
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background: rgba(239, 160, 29, 0.5);
    border-radius: 5px;
  }
}