@charset "UTF-8";
.media-section .media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .media-section .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .media-section .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.media-section .media-item {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.media-section .media-item:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-8px);
}
.media-section .media-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1.2);
}
.media-section .media-item:hover .media-thumbnail img {
  transform: scale(1.1);
}
.media-section .media-item .media-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
  background: rgba(5, 5, 5, 0.5);
}
.media-section .media-item .media-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.media-section .media-item .media-thumbnail .media-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 16px;
  background: rgba(5, 5, 5, 0.95);
  border: 1px solid #ff0000;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #ff0000;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.media-section .media-item:hover .media-thumbnail::after {
  opacity: 1;
}
.media-section .media-item .media-title {
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}
.media-section .media-item:hover .media-title {
  color: #ff0000;
}
.media-section .media-cta {
  text-align: center;
  margin-top: 64px;
}

.media-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.media-lightbox.open {
  display: flex;
}
.media-lightbox.open .media-lightbox-inner {
  transform: scale(1);
  opacity: 1;
}
.media-lightbox .media-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1;
}
.media-lightbox .media-lightbox-inner {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.media-lightbox .media-lightbox-inner .media-lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
}
.media-lightbox .media-lightbox-inner .media-lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  background: rgba(255, 0, 0, 0.9);
  border: 2px solid #ff0000;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.media-lightbox .media-lightbox-inner .media-lightbox-close:hover {
  background: #ff0000;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}
.media-lightbox .media-lightbox-inner .media-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 0, 0, 0.9);
  border: 2px solid #ff0000;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.media-lightbox .media-lightbox-inner .media-lightbox-arrow:hover {
  background: #ff0000;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
}
.media-lightbox .media-lightbox-inner .media-lightbox-arrow.prev {
  left: -70px;
}
.media-lightbox .media-lightbox-inner .media-lightbox-arrow.next {
  right: -70px;
}
@media (max-width: 768px) {
  .media-lightbox .media-lightbox-inner .media-lightbox-arrow.prev {
    left: 10px;
  }
  .media-lightbox .media-lightbox-inner .media-lightbox-arrow.next {
    right: 10px;
  }
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 16px;
  background: rgba(17, 17, 17, 0.95);
  border-radius: 8px;
  overflow-x: auto;
  max-width: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip::-webkit-scrollbar {
  height: 6px;
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.5);
  border-radius: 3px;
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 0, 0.7);
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip .media-lightbox-thumb {
  flex: 0 0 100px;
  width: 100px;
  height: 56px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip .media-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip .media-lightbox-thumb:hover {
  opacity: 1;
  border-color: rgba(255, 0, 0, 0.5);
  transform: scale(1.1);
}
.media-lightbox .media-lightbox-inner .media-lightbox-strip .media-lightbox-thumb.active {
  opacity: 1;
  border-color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  transform: scale(1.05);
}

.events-feed {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, transparent 100%);
}
.events-feed .events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .events-feed .events-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.events-feed .event-item {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 4px;
  padding: 16px 24px;
  font-family: "Courier New", monospace;
  position: relative;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideInLeft 0.5s ease-out both;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.events-feed .event-item:nth-child(1) {
  animation-delay: 0s;
  border-color: rgba(0, 255, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.events-feed .event-item:nth-child(2) {
  animation-delay: 0.1s;
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.events-feed .event-item:nth-child(3) {
  animation-delay: 0.2s;
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.events-feed .event-item:nth-child(4) {
  animation-delay: 0.3s;
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.8);
}
.events-feed .event-item .event-icon {
  display: none;
}
.events-feed .event-item .event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.events-feed .event-item .event-content .event-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #ffffff;
  font-family: "Courier New", monospace;
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
}
.events-feed .event-item .event-content .event-text::before {
  content: "> ";
  color: #00ff00;
  font-weight: 700;
}
.events-feed .event-item .event-content .event-text .user {
  color: #ff0000;
  font-weight: 700;
}
.events-feed .event-item .event-content .event-text .game {
  color: #00ffff;
  font-weight: 600;
}
.events-feed .event-item .event-content .event-time {
  display: block;
  font-size: 10px;
  color: #666666;
  font-family: "Courier New", monospace;
  margin-top: 4px;
  opacity: 0.6;
  padding-left: 16px;
}
.events-feed .event-item.typing::after {
  content: "_";
  color: #00ff00;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.live-purchase-feed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 350px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .live-purchase-feed {
    bottom: 10px;
    left: 10px;
    max-width: 280px;
    gap: 8px;
  }
}
.live-purchase-feed .live-purchase-item {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  animation: popupIn 0.4s ease-out both;
  pointer-events: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.live-purchase-feed .live-purchase-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .live-purchase-feed .live-purchase-item {
    padding: 8px 16px;
  }
}
.live-purchase-feed .live-purchase-item .feed-message {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .live-purchase-feed .live-purchase-item .feed-message {
    font-size: 12px;
    margin-bottom: 2px;
    line-height: 1.3;
  }
}
.live-purchase-feed .live-purchase-item .feed-meta {
  font-size: 12px;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .live-purchase-feed .live-purchase-item .feed-meta {
    font-size: 10px;
  }
}
.live-purchase-feed .live-purchase-item .feed-meta::before {
  content: "•";
  color: #ff0000;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes popupOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
}
.loader-simulator .loader-ui {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  overflow-x: hidden;
  border: 2px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.loader-simulator .loader-ui .loader-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.loader-simulator .loader-ui .loader-header .loader-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.loader-simulator .loader-ui .loader-header .loader-logo .version {
  font-size: 12px;
  color: #666666;
  margin-left: 8px;
}
.loader-simulator .loader-ui .loader-header .loader-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.loader-simulator .loader-ui .loader-header .loader-status .status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.loader-simulator .loader-ui .loader-header .loader-status .status-indicator.active {
  background: #00ff00;
  box-shadow: 0 0 16px rgba(0, 255, 0, 0.5), 0 0 32px rgba(0, 255, 0, 0.3), 0 0 48px rgba(0, 255, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}
.loader-simulator .loader-ui .loader-header .loader-status .status-text {
  font-size: 14px;
  color: #00ff00;
}
@media (max-width: 768px) {
  .loader-simulator .loader-ui .loader-header {
    padding: 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .loader-simulator .loader-ui .loader-header .loader-logo {
    font-size: 16px;
  }
  .loader-simulator .loader-ui .loader-header .loader-logo .version {
    font-size: 10px;
    margin-left: 4px;
  }
  .loader-simulator .loader-ui .loader-header .loader-status .status-text {
    font-size: 12px;
  }
}
.loader-simulator .loader-ui .loader-content {
  display: flex;
  height: 400px;
  overflow-x: hidden;
}
.loader-simulator .loader-ui .loader-content .loader-sidebar {
  width: 200px;
  background: rgba(5, 5, 5, 0.5);
  border-right: 1px solid rgba(255, 0, 0, 0.2);
  padding: 24px;
}
.loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item:hover, .loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item.active {
  background: rgba(255, 0, 0, 0.1);
  border-left: 3px solid #ff0000;
}
.loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item .sidebar-icon {
  font-size: 18px;
}
.loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item .sidebar-text {
  font-size: 14px;
}
@media (max-width: 768px) {
  .loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item {
    margin-bottom: 0;
    padding: 8px 16px;
    min-width: 120px;
    flex-shrink: 0;
  }
  .loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item:hover, .loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item.active {
    border-left: none;
    border-bottom: 3px solid #ff0000;
  }
  .loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item .sidebar-icon {
    font-size: 16px;
  }
  .loader-simulator .loader-ui .loader-content .loader-sidebar .sidebar-item .sidebar-text {
    font-size: 12px;
  }
}
.loader-simulator .loader-ui .loader-content .loader-main {
  flex: 1;
  padding: 32px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.loader-simulator .loader-ui .loader-content .loader-main::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .loader-simulator .loader-ui .loader-content .loader-main {
    padding: 16px;
  }
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .loader-simulator .loader-ui .loader-content .loader-main .game-selector {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option:hover {
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .game-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .game-name {
  flex: 1;
  margin-left: 24px;
  font-weight: 600;
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .btn-launch {
  padding: 8px 24px;
  background: #ff0000;
  border-radius: 8px;
  font-weight: 600;
}
.loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .btn-launch:hover {
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option {
    padding: 16px;
    flex-wrap: wrap;
  }
  .loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .game-icon {
    width: 30px;
    height: 30px;
  }
  .loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .game-name {
    font-size: 14px;
    margin-left: 16px;
  }
  .loader-simulator .loader-ui .loader-content .loader-main .game-selector .game-option .btn-launch {
    padding: 4px 16px;
    font-size: 12px;
    width: 100%;
    margin-top: 8px;
  }
}
.loader-simulator .loader-ui .loader-content .loader-main .loader-console {
  background: rgba(0, 0, 0, 0.5);
  padding: 24px;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-size: 13px;
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 768px) {
  .loader-simulator .loader-ui .loader-content .loader-main .loader-console {
    padding: 16px;
    font-size: 12px;
  }
}
.loader-simulator .loader-ui .loader-content .loader-main .loader-console::-webkit-scrollbar {
  display: none;
}
.loader-simulator .loader-ui .loader-content .loader-main .loader-console .console-line {
  margin-bottom: 8px;
  color: #b3b3b3;
}
.loader-simulator .loader-ui .loader-content .loader-main .loader-console .console-line.success {
  color: #00ff00;
}
.loader-simulator .loader-ui .loader-content .loader-main .loader-console .console-line.error {
  color: #ff0000;
}

.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-section .pricing-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
}
.pricing-section .pricing-card.featured {
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: scale(1.05);
}
.pricing-section .pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255, 0, 0, 0.3);
}
.pricing-section .pricing-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.pricing-section .pricing-card .popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 24px;
  background: #ff0000;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}
.pricing-section .pricing-card .pricing-header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-section .pricing-card .pricing-header .pricing-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-section .pricing-card .pricing-header .pricing-subtitle {
  color: #b3b3b3;
}
.pricing-section .pricing-card .pricing-price {
  margin-bottom: 32px;
}
.pricing-section .pricing-card .pricing-price .price-amount {
  font-size: 48px;
  font-weight: 900;
  color: #ff0000;
}
.pricing-section .pricing-card .pricing-price .price-period {
  font-size: 16px;
  color: #b3b3b3;
}
.pricing-section .pricing-card .pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-section .pricing-card .pricing-features .feature-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.pricing-section .pricing-card .pricing-features .feature-item:last-child {
  border-bottom: none;
}
.pricing-section .pricing-card .btn-pricing {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 2px solid #ff0000;
  border-radius: 8px;
  color: #ff0000;
  font-weight: 600;
}
.pricing-section .pricing-card .btn-pricing:hover {
  background: #ff0000;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}
.pricing-section .pricing-card .btn-pricing.primary {
  background: #ff0000;
  color: #ffffff;
}
.pricing-section .pricing-card .btn-pricing.primary:hover {
  background: transparent;
  color: #ff0000;
}

.world-map .map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.world-map .map-container .world-map-svg {
  width: 100%;
  height: auto;
}
.world-map .map-container .world-map-svg .map-land {
  fill: rgba(17, 17, 17, 0.5);
  stroke: rgba(255, 0, 0, 0.2);
  stroke-width: 1;
}
.world-map .map-container .world-map-svg .server-point {
  cursor: pointer;
  transition: all 0.3s ease;
}
.world-map .map-container .world-map-svg .server-point:hover .point-glow {
  r: 12;
}
.world-map .map-container .world-map-svg .server-point .point-glow {
  fill: #ff0000;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
.world-map .map-container .world-map-svg .server-point .point-core {
  fill: #ff0000;
  filter: drop-shadow(0 0 5px #ff0000);
}
.world-map .map-container .world-map-svg .server-point .point-label {
  fill: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
}
.world-map .map-container .world-map-svg .connection-line {
  stroke: rgba(0, 255, 255, 0.3);
  stroke-width: 1;
  stroke-dasharray: 5, 5;
  animation: float 3s ease-in-out infinite;
}
.world-map .map-container .map-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
}
.world-map .map-container .map-stats .map-stat {
  text-align: center;
}
.world-map .map-container .map-stats .map-stat .stat-value {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ff0000;
  margin-bottom: 8px;
}
.world-map .map-container .map-stats .map-stat .stat-label {
  font-size: 16px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.main-footer .footer-terminal {
  background: rgba(0, 0, 0, 0.5);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .main-footer .footer-terminal {
    display: none;
  }
}
.main-footer .footer-terminal .terminal-line {
  font-family: "Courier New", monospace;
  font-size: 16px;
  color: #00ff00;
  font-weight: 500;
}
@media (max-width: 768px) {
  .main-footer .footer-terminal .terminal-line {
    font-size: 12px;
  }
}
.main-footer .footer-terminal .terminal-line .terminal-prompt {
  color: #ff0000;
  margin-right: 8px;
}
.main-footer .footer-terminal .terminal-line .terminal-text {
  color: #ffffff;
}
.main-footer .footer-terminal .terminal-line .terminal-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: #ff0000;
}
.main-footer .footer-content {
  padding: 32px 0;
}
@media (max-width: 768px) {
  .main-footer .footer-content {
    padding: 8px 0;
  }
}
.main-footer .footer-content .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
}
.main-footer .footer-content .footer-column .footer-logo {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-logo {
    margin-bottom: 8px;
  }
}
.main-footer .footer-content .footer-column .footer-logo .logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-logo .logo-text {
    font-size: 18px;
  }
}
.main-footer .footer-content .footer-column .footer-logo .footer-tagline {
  color: #b3b3b3;
  font-size: 15px;
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-logo .footer-tagline {
    font-size: 12px;
  }
}
.main-footer .footer-content .footer-column .footer-description {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-description {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
  }
}
.main-footer .footer-content .footer-column .footer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-stats {
    display: none;
  }
}
.main-footer .footer-content .footer-column .footer-stats .stat-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 8px;
  background: rgba(17, 17, 17, 0.3);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  min-width: auto;
}
.main-footer .footer-content .footer-column .footer-stats .stat-item .stat-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ff0000;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-footer .footer-content .footer-column .footer-stats .stat-item .stat-label {
  display: block;
  font-size: 11px;
  color: #666666;
  font-weight: 500;
  margin-top: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-footer .footer-content .footer-column .footer-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ff0000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.main-footer .footer-content .footer-column .footer-links {
  list-style: none;
}
.main-footer .footer-content .footer-column .footer-links li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-links li {
    margin-bottom: 4px;
  }
}
.main-footer .footer-content .footer-column .footer-links li a {
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-footer .footer-content .footer-column .footer-links li a:hover {
  color: #ff0000;
  padding-left: 8px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .footer-links li a {
    font-size: 13px;
  }
}
.main-footer .footer-content .footer-column .social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-footer .footer-content .footer-column .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 8px 16px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-footer .footer-content .footer-column .social-links .social-link svg {
  width: 22px;
  height: 22px;
}
.main-footer .footer-content .footer-column .social-links .social-link:hover {
  border-color: currentColor;
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
}
.main-footer .footer-content .footer-column .social-links .social-link.telegram {
  color: #0088cc;
}
.main-footer .footer-content .footer-column .social-links .social-link.discord {
  color: #5865F2;
}
.main-footer .footer-content .footer-column .social-links .social-link.twitter {
  color: #1DA1F2;
}
.main-footer .footer-content .footer-column .social-links .social-link.youtube {
  color: #FF0000;
}
.main-footer .footer-content .footer-column .newsletter {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-column .newsletter {
    display: none;
  }
}
.main-footer .footer-content .footer-column .newsletter .newsletter-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.main-footer .footer-content .footer-column .newsletter .newsletter-form {
  display: flex;
  gap: 8px;
}
.main-footer .footer-content .footer-column .newsletter .newsletter-form .newsletter-input {
  flex: 1;
  padding: 16px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
}
.main-footer .footer-content .footer-column .newsletter .newsletter-form .newsletter-input:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.main-footer .footer-content .footer-column .newsletter .newsletter-form .newsletter-btn {
  width: 50px;
  height: 50px;
  background: #ff0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.main-footer .footer-content .footer-column .newsletter .newsletter-form .newsletter-btn:hover {
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}
.main-footer .footer-content .footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-bottom {
    padding-top: 8px;
  }
}
.main-footer .footer-content .footer-bottom .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-bottom .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}
.main-footer .footer-content .footer-bottom .footer-bottom-content .copyright {
  color: #666666;
  font-size: 15px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-bottom .footer-bottom-content .copyright {
    font-size: 12px;
  }
}
.main-footer .footer-content .footer-bottom .footer-bottom-content .footer-badges {
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-bottom .footer-bottom-content .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
}
.main-footer .footer-content .footer-bottom .footer-bottom-content .footer-badges .badge {
  padding: 4px 16px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 4px;
  font-size: 14px;
  color: #00ff00;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-bottom .footer-bottom-content .footer-badges .badge {
    padding: 4px 8px;
    font-size: 11px;
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.purchase-activity-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.purchase-activity-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.purchase-activity-modal.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.purchase-activity-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.purchase-activity-modal .modal-content {
  position: relative;
  background: #111111;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.purchase-activity-modal .modal-content::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content {
    max-width: 95%;
    width: 95%;
    max-height: 85vh;
    border-radius: 8px;
    padding: 16px;
  }
}
.purchase-activity-modal .modal-content .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.purchase-activity-modal .modal-content .modal-close:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  transform: rotate(90deg);
}
.purchase-activity-modal .modal-content .modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.purchase-activity-modal .modal-content .modal-header .modal-icon {
  font-size: 32px;
  color: #ffd700;
}
.purchase-activity-modal .modal-content .modal-header .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content .modal-header {
    padding: 16px;
    gap: 8px;
  }
  .purchase-activity-modal .modal-content .modal-header .modal-icon {
    font-size: 24px;
  }
  .purchase-activity-modal .modal-content .modal-header .modal-title {
    font-size: 18px;
  }
}
.purchase-activity-modal .modal-content .modal-body {
  padding: 32px;
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content .modal-body {
    padding: 16px;
  }
}
.purchase-activity-modal .modal-content .modal-body .activity-details {
  margin-bottom: 32px;
}
.purchase-activity-modal .modal-content .modal-body .activity-details .detail-item {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.purchase-activity-modal .modal-content .modal-body .activity-details .detail-item .detail-label {
  color: #b3b3b3;
  font-weight: 700;
}
.purchase-activity-modal .modal-content .modal-body .activity-details .detail-item .detail-value {
  color: #00ff00;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content .modal-body .activity-details .detail-item {
    font-size: 13px;
    margin-bottom: 8px;
    flex-direction: column;
    gap: 2px;
  }
}
.purchase-activity-modal .modal-content .modal-body .modal-explanation {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content .modal-body .modal-explanation {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
}
.purchase-activity-modal .modal-content .modal-body .active-user-box {
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid #00ff00;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
}
.purchase-activity-modal .modal-content .modal-body .active-user-box .box-icon {
  font-size: 32px;
  color: #ffd700;
  flex-shrink: 0;
}
.purchase-activity-modal .modal-content .modal-body .active-user-box .box-content .box-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.purchase-activity-modal .modal-content .modal-body .active-user-box .box-content .box-text {
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content .modal-body .active-user-box {
    padding: 16px;
    margin-bottom: 16px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .purchase-activity-modal .modal-content .modal-body .active-user-box .box-icon {
    font-size: 24px;
  }
  .purchase-activity-modal .modal-content .modal-body .active-user-box .box-content .box-title {
    font-size: 14px;
  }
  .purchase-activity-modal .modal-content .modal-body .active-user-box .box-content .box-text {
    font-size: 12px;
    line-height: 1.5;
  }
}
.purchase-activity-modal .modal-content .modal-body .feature-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .purchase-activity-modal .modal-content .modal-body .feature-badges {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
}
.purchase-activity-modal .modal-content .modal-body .feature-badges .feature-badge {
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.purchase-activity-modal .modal-content .modal-body .feature-badges .feature-badge .badge-icon {
  font-size: 24px;
}
.purchase-activity-modal .modal-content .modal-body .feature-badges .feature-badge .badge-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.purchase-activity-modal .modal-content .modal-body .feature-badges .feature-badge .badge-content .badge-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.3px;
}
.purchase-activity-modal .modal-content .modal-body .feature-badges .feature-badge .badge-content .badge-subtitle {
  font-size: 14px;
  color: #b3b3b3;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.purchase-activity-modal .modal-content .modal-body .modal-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.purchase-activity-modal .modal-content .modal-body .modal-cta .cta-text {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.purchase-activity-modal .modal-content .modal-body .modal-cta .cta-text .cta-link {
  color: #00ff00;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
.purchase-activity-modal .modal-content .modal-body .modal-cta .cta-text .cta-link:hover {
  color: #ff0000;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .hero-banner .hero-characters-left,
  .hero-banner .hero-characters-right {
    width: 30%;
  }
  .hero-banner .hero-content .hero-title {
    font-size: 48px;
  }
  .main-nav .nav-links {
    display: none;
  }
  .main-nav .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .hero-banner .hero-characters-left,
  .hero-banner .hero-characters-right {
    opacity: 0.5;
  }
  .hero-banner .hero-content .hero-title {
    font-size: 32px;
  }
  .section-header .section-title {
    font-size: 32px;
  }
}
.products-hero,
.technology-hero,
.partners-hero,
.media-hero,
.about-hero,
.contact-hero {
  padding: 96px 0 64px;
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
}

.products-grid .filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.products-grid .filter-tabs .filter-tab {
  padding: 16px 32px;
  background: transparent;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 9999px;
  color: #b3b3b3;
  font-weight: 600;
}
.products-grid .filter-tabs .filter-tab:hover, .products-grid .filter-tabs .filter-tab.active {
  background: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.products-grid .products-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.products-grid .product-card-full {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 680px;
  overflow: hidden;
}
.products-grid .product-card-full:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.products-grid .product-card-full .product-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .products-grid .product-card-full .product-header {
    grid-template-columns: 1fr;
  }
}
.products-grid .product-card-full .product-image-large {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.products-grid .product-card-full .product-image-large img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}
.products-grid .product-card-full .product-image-large .esp-overlay-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-grid .product-card-full .product-image-large .esp-overlay-effect::before {
  content: "";
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 0, 0, 0.6);
  box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.2), 0 0 20px rgba(255, 0, 0, 0.4);
  position: absolute;
  pointer-events: none;
  animation: pulse 2s ease-in-out infinite;
}
.products-grid .product-card-full .product-image-large:hover .esp-overlay-effect {
  opacity: 1;
}
.products-grid .product-card-full .product-info-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}
.products-grid .product-card-full .product-info-header .product-name-large {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}
.products-grid .product-card-full .product-info-header .product-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #b3b3b3;
  margin-bottom: 16px;
  line-height: 1.5;
  min-height: 48px;
}
.products-grid .product-card-full .product-info-header .product-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.products-grid .product-card-full .product-info-header .badge-item {
  padding: 8px 24px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 9999px;
  font-size: 14px;
  color: #00ff00;
  font-weight: 600;
}
.products-grid .product-card-full .product-features-preview {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  height: 36px;
}
.products-grid .product-card-full .product-features-preview .feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ff1a1a;
  background: transparent;
  border: 1.5px solid #ff1a1a;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 26, 26, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.products-grid .product-card-full .product-features-preview .feature-badge:hover {
  background: rgba(255, 26, 26, 0.1);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
  transform: translateY(-1px);
}
.products-grid .product-card-full .product-features-preview .feature-column {
  display: none;
}
.products-grid .product-card-full .product-footer-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .products-grid .product-card-full .product-footer-full {
    flex-direction: column;
    gap: 24px;
  }
}
.products-grid .product-card-full .product-footer-full .product-price-large .price {
  font-size: 48px;
  font-weight: 900;
  color: #ff0000;
}
.products-grid .product-card-full .product-footer-full .product-price-large .period {
  color: #666666;
}
.products-grid .product-card-full .product-footer-full .product-actions {
  display: flex;
  gap: 16px;
}

.product-detail .product-detail-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .product-detail .product-detail-hero {
    grid-template-columns: 1fr;
  }
}
.product-detail .product-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail .product-media .media-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
}
.product-detail .product-media .media-overlay .play-video {
  padding: 8px 24px;
  background: rgba(255, 0, 0, 0.9);
  border: 2px solid #ff0000;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-detail .product-media .media-overlay .play-video:hover {
  background: #ff0000;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
  transform: scale(1.05);
}
.product-detail .product-detail-info .product-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
}
.product-detail .product-detail-info .product-status {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.product-detail .product-detail-info .product-status .status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 9999px;
  font-size: 14px;
}
.product-detail .product-detail-info .product-status .status-item .status-icon {
  color: #00ff00;
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option {
  position: relative;
  display: block;
  cursor: pointer;
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option input[type=radio] {
  position: absolute;
  opacity: 0;
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option input[type=radio]:checked + .option-content {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option .option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option .option-content:hover {
  border-color: rgba(255, 0, 0, 0.5);
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option .option-content .option-duration {
  font-weight: 600;
}
.product-detail .product-detail-info .product-pricing-detail .pricing-options .pricing-option .option-content .option-price {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
}
.product-detail .product-detail-info .product-pricing-detail .btn-purchase {
  width: 100%;
  padding: 24px;
  background: #ff0000;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.product-detail .product-detail-info .product-pricing-detail .btn-purchase:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3), 0 0 60px rgba(255, 0, 0, 0.1);
}
.product-detail .features-tabs .main-tabs-navigation {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}
.product-detail .features-tabs .main-tabs-navigation .main-tab-btn {
  padding: 24px 48px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #b3b3b3;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.product-detail .features-tabs .main-tabs-navigation .main-tab-btn:hover {
  color: #ff0000;
  border-bottom-color: rgba(255, 0, 0, 0.5);
}
.product-detail .features-tabs .main-tabs-navigation .main-tab-btn.active {
  color: #ff0000;
  border-bottom-color: #ff0000;
}
.product-detail .features-tabs .main-tab-content {
  display: none;
}
.product-detail .features-tabs .main-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}
.product-detail .features-tabs .feature-categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}
.product-detail .features-tabs .feature-categories-nav .category-btn {
  padding: 16px 32px;
  background: rgba(17, 17, 17, 0.5);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  color: #b3b3b3;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.product-detail .features-tabs .feature-categories-nav .category-btn:hover {
  border-color: rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.1);
  color: #ffffff;
}
.product-detail .features-tabs .feature-categories-nav .category-btn.active {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.product-detail .features-tabs .features-content {
  position: relative;
  min-height: 400px;
}
.product-detail .features-tabs .feature-category-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}
.product-detail .features-tabs .feature-category-content.active {
  display: block;
}
.product-detail .features-tabs .feature-section {
  background: rgba(17, 17, 17, 0.3);
  border-radius: 8px;
  padding: 32px;
  border-left: 4px solid #ff0000;
}
.product-detail .features-tabs .feature-section .feature-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.product-detail .features-tabs .feature-section .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}
.product-detail .features-tabs .feature-section .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #ffffff;
}
.product-detail .features-tabs .feature-section .feature-list .feature-item .feature-check {
  color: #00ff00;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.product-detail .features-tabs .feature-section .feature-list .feature-item .feature-name {
  font-size: 15px;
  line-height: 1.5;
}
.product-detail .features-tabs .feature-item-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px;
  background: rgba(17, 17, 17, 0.3);
  border-radius: 8px;
  border-left: 3px solid #ff0000;
}
.product-detail .features-tabs .feature-item-detail .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.product-detail .features-tabs .feature-item-detail .feature-text h4 {
  font-weight: 600;
  margin-bottom: 4px;
}
.product-detail .features-tabs .feature-item-detail .feature-text p {
  font-size: 14px;
  color: #b3b3b3;
}
.product-detail .features-tabs .media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.product-detail .features-tabs .media-gallery-grid .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.product-detail .features-tabs .media-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-detail .features-tabs .media-gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}
.product-detail .features-tabs .media-gallery-grid .gallery-item .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ff0000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-detail .features-tabs .media-gallery-grid .gallery-item.video:hover .play-overlay {
  opacity: 1;
}
.product-detail .features-tabs .faq-list .faq-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.product-detail .features-tabs .faq-list .faq-item .faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ff0000;
}
.product-detail .features-tabs .faq-list .faq-item .faq-answer {
  color: #b3b3b3;
  line-height: 1.8;
}

.tech-pipeline .pipeline-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.tech-pipeline .pipeline-diagram .pipeline-step {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  min-width: 180px;
}
.tech-pipeline .pipeline-diagram .pipeline-step.active {
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.tech-pipeline .pipeline-diagram .pipeline-step .step-icon {
  margin-bottom: 24px;
}
.tech-pipeline .pipeline-diagram .pipeline-step .step-icon svg {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  color: #ff0000;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}
.tech-pipeline .pipeline-diagram .pipeline-step .step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tech-pipeline .pipeline-diagram .pipeline-step .step-description {
  font-size: 14px;
  color: #b3b3b3;
}
.tech-pipeline .pipeline-diagram .pipeline-arrow {
  font-size: 48px;
  color: #ff0000;
}

.code-showcase .code-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}
.code-showcase .code-block {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
  overflow: hidden;
}
.code-showcase .code-block .code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.code-showcase .code-block .code-header .code-title {
  font-weight: 600;
}
.code-showcase .code-block .code-header .code-lang {
  font-size: 12px;
  padding: 4px 16px;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 4px;
  color: #ff0000;
}
.code-showcase .code-block .code-content {
  padding: 32px;
  background: rgba(0, 0, 0, 0.5);
  overflow-x: auto;
}
.code-showcase .code-block .code-content pre {
  margin: 0;
}
.code-showcase .code-block .code-content pre code {
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #00ffff;
}

.performance-metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.performance-metrics .metric-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.performance-metrics .metric-card .metric-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}
.performance-metrics .metric-card .metric-chart {
  margin-bottom: 32px;
}
.performance-metrics .metric-card .metric-chart .circular-progress {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.performance-metrics .metric-card .metric-chart .circular-progress svg {
  transform: rotate(-90deg);
}
.performance-metrics .metric-card .metric-chart .circular-progress svg circle {
  fill: none;
  stroke-width: 10;
}
.performance-metrics .metric-card .metric-chart .circular-progress svg circle.progress-bg {
  stroke: rgba(255, 255, 255, 0.05);
}
.performance-metrics .metric-card .metric-chart .circular-progress svg circle.progress-fill {
  stroke: #ff0000;
  stroke-dasharray: 502;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px #ff0000);
}
.performance-metrics .metric-card .metric-chart .circular-progress .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.performance-metrics .metric-card .metric-chart .circular-progress .progress-text .progress-value {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ff0000;
}
.performance-metrics .metric-card .metric-chart .circular-progress .progress-text .progress-label {
  font-size: 14px;
  color: #b3b3b3;
}
.performance-metrics .metric-card .metric-chart .bar-chart {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  height: 150px;
}
.performance-metrics .metric-card .metric-chart .bar-chart .bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.performance-metrics .metric-card .metric-chart .bar-chart .bar-item .bar-fill {
  width: 100%;
  background: #ff0000;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.performance-metrics .metric-card .metric-chart .bar-chart .bar-item .bar-label {
  margin-top: 8px;
  font-size: 12px;
  color: #b3b3b3;
}
.performance-metrics .metric-card .metric-status {
  font-weight: 600;
}
.performance-metrics .metric-card .metric-status.success {
  color: #00ff00;
}

.undetected-score .score-dashboard {
  max-width: 800px;
  margin: 0 auto;
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.undetected-score .score-dashboard .score-meter {
  text-align: center;
  margin-bottom: 64px;
}
.undetected-score .score-dashboard .score-meter .meter-bg {
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.undetected-score .score-dashboard .score-meter .meter-bg .meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff00, #ff0000);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3), 0 0 30px rgba(0, 255, 0, 0.1);
}
.undetected-score .score-dashboard .score-meter .meter-value {
  font-size: 48px;
  font-weight: 900;
  color: #00ff00;
  margin-bottom: 8px;
}
.undetected-score .score-dashboard .score-meter .meter-label {
  color: #b3b3b3;
}
.undetected-score .score-dashboard .game-scores {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.undetected-score .score-dashboard .game-scores .game-score-item {
  display: grid;
  grid-template-columns: 180px 1fr 80px;
  align-items: center;
  gap: 24px;
}
.undetected-score .score-dashboard .game-scores .game-score-item .game-name {
  font-weight: 600;
}
.undetected-score .score-dashboard .game-scores .game-score-item .score-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  overflow: hidden;
}
.undetected-score .score-dashboard .game-scores .game-score-item .score-bar .score-fill {
  height: 100%;
  background: #00ff00;
  border-radius: 9999px;
  box-shadow: 0 0 6px rgba(0, 255, 0, 0.5), 0 0 12px rgba(0, 255, 0, 0.3), 0 0 18px rgba(0, 255, 0, 0.1);
}
.undetected-score .score-dashboard .game-scores .game-score-item .score-value {
  text-align: right;
  font-weight: 700;
  color: #00ff00;
}

.security-features .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.security-features .security-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.security-features .security-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.security-features .security-card .security-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.security-features .security-card .security-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.security-features .security-card .security-description {
  color: #b3b3b3;
  line-height: 1.8;
}

.partners-section .partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
.partners-section .partner-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.partners-section .partner-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.partners-section .partner-card:hover .partner-glow {
  opacity: 0.3;
}
.partners-section .partner-card .partner-flag {
  margin-bottom: 24px;
}
.partners-section .partner-card .partner-flag .flag-svg {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.partners-section .partner-card .partner-info .partner-country {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}
.partners-section .partner-card .partner-info .partner-location {
  color: #b3b3b3;
  margin-bottom: 24px;
}
.partners-section .partner-card .partner-info .partner-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.partners-section .partner-card .partner-info .partner-stats .stat {
  text-align: center;
  padding: 16px;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 8px;
}
.partners-section .partner-card .partner-info .partner-stats .stat .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
}
.partners-section .partner-card .partner-info .partner-stats .stat .stat-label {
  font-size: 12px;
  color: #666666;
}
.partners-section .partner-card .partner-info .partner-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.partners-section .partner-card .partner-info .partner-features .feature-tag {
  padding: 4px 16px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 12px;
  color: #00ffff;
}
.partners-section .partner-card .partner-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.partners-section .partner-card .partner-glow.israel-glow {
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
}
.partners-section .partner-card .partner-glow.japan-glow {
  background: radial-gradient(circle at center, rgba(188, 0, 45, 0.2) 0%, transparent 70%);
}
.partners-section .partner-card .partner-glow.brazil-glow {
  background: radial-gradient(circle at center, rgba(0, 156, 59, 0.2) 0%, transparent 70%);
}
.partners-section .partner-card .partner-glow.russia-glow {
  background: radial-gradient(circle at center, rgba(0, 57, 166, 0.2) 0%, transparent 70%);
}
.partners-section .partner-card .partner-glow.china-glow {
  background: radial-gradient(circle at center, rgba(222, 41, 16, 0.2) 0%, transparent 70%);
}

.benefits-section {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.5) 50%, transparent 100%);
}
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.benefits-section .benefit-item {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.benefits-section .benefit-item:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.benefits-section .benefit-item .benefit-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.benefits-section .benefit-item .benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.benefits-section .benefit-item .benefit-description {
  color: #b3b3b3;
  line-height: 1.8;
}

.partner-cta {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
}
.partner-cta .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.partner-cta .cta-content .cta-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
}
.partner-cta .cta-content .cta-description {
  font-size: 18px;
  color: #b3b3b3;
  margin-bottom: 48px;
}
.partner-cta .cta-content .cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.media-filters .filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.media-filters .filter-wrapper .filter-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1;
}
.media-filters .filter-wrapper .filter-buttons .filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 9999px;
  color: #b3b3b3;
  font-weight: 600;
  font-size: 14px;
}
.media-filters .filter-wrapper .filter-buttons .filter-btn:hover, .media-filters .filter-wrapper .filter-buttons .filter-btn.active {
  background: #ff0000;
  color: #ffffff;
  border-color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.media-filters .filter-wrapper .view-toggle {
  display: flex;
  gap: 8px;
}
.media-filters .filter-wrapper .view-toggle .view-btn {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-filters .filter-wrapper .view-toggle .view-btn:hover, .media-filters .filter-wrapper .view-toggle .view-btn.active {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}
.media-filters .filter-wrapper .view-toggle .view-btn:hover svg, .media-filters .filter-wrapper .view-toggle .view-btn.active svg {
  color: #ff0000;
}
.media-filters .filter-wrapper .view-toggle .view-btn svg {
  color: #b3b3b3;
}

.media-gallery-section .media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.media-gallery-section .gallery-item {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}
.media-gallery-section .gallery-item:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.media-gallery-section .gallery-item:hover .gallery-thumbnail img {
  transform: scale(1.1);
}
.media-gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.media-gallery-section .gallery-item .gallery-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.media-gallery-section .gallery-item .gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-overlay .play-btn-large {
  font-size: 64px;
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.3);
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-overlay .zoom-btn {
  font-size: 32px;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-overlay .overlay-info {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-overlay .overlay-info .overlay-duration {
  padding: 4px 16px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  font-size: 12px;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 16px;
  background: rgba(5, 5, 5, 0.9);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-badge.video {
  border: 1px solid #ff0000;
  color: #ff0000;
}
.media-gallery-section .gallery-item .gallery-thumbnail .gallery-badge.screenshot {
  border: 1px solid #00ffff;
  color: #00ffff;
}
.media-gallery-section .gallery-item .gallery-info {
  padding: 24px;
}
.media-gallery-section .gallery-item .gallery-info .gallery-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.media-gallery-section .gallery-item .gallery-info .gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #666666;
}
.media-gallery-section .gallery-item .gallery-info .gallery-meta .game-tag {
  color: #ff0000;
  font-weight: 600;
}
.media-gallery-section .load-more-wrapper {
  text-align: center;
  margin-top: 64px;
}
.media-gallery-section .load-more-wrapper .load-more {
  padding: 16px 48px;
}

.upload-cta {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
}
.upload-cta .cta-box {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid rgba(255, 0, 0, 0.3);
}
.upload-cta .cta-box .cta-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}
.upload-cta .cta-box .cta-description {
  color: #b3b3b3;
  margin-bottom: 32px;
}

.our-story .story-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .our-story .story-content {
    grid-template-columns: 1fr;
  }
}
.our-story .story-content .story-text p {
  color: #b3b3b3;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 18px;
}
.our-story .story-content .story-text .story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .our-story .story-content .story-text .story-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.our-story .story-content .story-text .story-stats .story-stat {
  text-align: center;
}
.our-story .story-content .story-text .story-stats .story-stat .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.our-story .story-content .story-text .story-stats .story-stat .stat-label {
  display: block;
  font-size: 14px;
  color: #b3b3b3;
  margin-top: 8px;
}
.our-story .story-content .story-visual .visual-box {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.our-story .story-content .story-visual .visual-box .code-animation .code-line {
  height: 20px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.3) 50%, transparent 100%);
  border-radius: 4px;
  animation: pulse 2s ease-in-out infinite;
}
.our-story .story-content .story-visual .visual-box .code-animation .code-line:nth-child(1) {
  animation-delay: 0s;
  width: 80%;
}
.our-story .story-content .story-visual .visual-box .code-animation .code-line:nth-child(2) {
  animation-delay: 0.2s;
  width: 60%;
}
.our-story .story-content .story-visual .visual-box .code-animation .code-line:nth-child(3) {
  animation-delay: 0.4s;
  width: 90%;
}
.our-story .story-content .story-visual .visual-box .code-animation .code-line:nth-child(4) {
  animation-delay: 0.6s;
  width: 70%;
}
.our-story .story-content .story-visual .visual-box .code-animation .code-line:nth-child(5) {
  animation-delay: 0.8s;
  width: 85%;
}

.values-section {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.3) 50%, transparent 100%);
}
.values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.values-section .value-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.values-section .value-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.values-section .value-card .value-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.values-section .value-card .value-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.values-section .value-card .value-description {
  color: #b3b3b3;
  line-height: 1.8;
}

.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.team-section .team-member {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.team-section .team-member:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.team-section .team-member:hover .member-avatar {
  transform: scale(1.1);
}
.team-section .team-member .member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.team-section .team-member .member-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff0000, #ff00ff);
  font-size: 32px;
  font-weight: 900;
}
.team-section .team-member .member-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.team-section .team-member .member-role {
  color: #ff0000;
  margin-bottom: 16px;
  font-weight: 600;
}
.team-section .team-member .member-bio {
  color: #b3b3b3;
  font-size: 14px;
  line-height: 1.6;
}

.achievements-section .timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.achievements-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #ff0000 50%, transparent 100%);
}
@media (max-width: 768px) {
  .achievements-section .timeline::before {
    left: 20px;
  }
}
.achievements-section .timeline .timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
}
@media (max-width: 768px) {
  .achievements-section .timeline .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
}
.achievements-section .timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: #ff0000;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
  z-index: 2;
}
@media (max-width: 768px) {
  .achievements-section .timeline .timeline-item::before {
    left: 20px;
  }
}
.achievements-section .timeline .timeline-item:nth-child(even) .timeline-date {
  order: 2;
  text-align: left;
}
@media (max-width: 768px) {
  .achievements-section .timeline .timeline-item:nth-child(even) .timeline-date {
    order: 1;
    text-align: center;
  }
}
.achievements-section .timeline .timeline-item:nth-child(even) .timeline-content {
  order: 1;
}
@media (max-width: 768px) {
  .achievements-section .timeline .timeline-item:nth-child(even) .timeline-content {
    order: 2;
  }
}
.achievements-section .timeline .timeline-item .timeline-date {
  font-size: 32px;
  font-weight: 900;
  color: #ff0000;
  text-align: right;
}
@media (max-width: 768px) {
  .achievements-section .timeline .timeline-item .timeline-date {
    font-size: 18px;
    text-align: center;
    width: 60px;
  }
}
.achievements-section .timeline .timeline-item .timeline-content {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.achievements-section .timeline .timeline-item .timeline-content .timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.achievements-section .timeline .timeline-item .timeline-content .timeline-description {
  color: #b3b3b3;
}

.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
}
@media (max-width: 1024px) {
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-form-container {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-section .contact-form-container .form-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
}
.contact-section .contact-form-container .contact-form .form-group {
  margin-bottom: 24px;
}
.contact-section .contact-form-container .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #b3b3b3;
}
.contact-section .contact-form-container .contact-form .form-group input, .contact-section .contact-form-container .contact-form .form-group select, .contact-section .contact-form-container .contact-form .form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}
.contact-section .contact-form-container .contact-form .form-group input:focus, .contact-section .contact-form-container .contact-form .form-group select:focus, .contact-section .contact-form-container .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.contact-section .contact-form-container .contact-form .form-group select {
  background: rgba(17, 17, 17, 0.8);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-section .contact-form-container .contact-form .form-group select option {
  background: #111111;
  color: #ffffff;
  padding: 12px;
}
.contact-section .contact-form-container .contact-form .form-group select option:hover {
  background: rgba(255, 0, 0, 0.2);
}
.contact-section .contact-form-container .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form-container .contact-form .form-group .captcha-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.contact-section .contact-form-container .contact-form .form-group .captcha-container .captcha-image {
  border: 2px solid #ff0000;
  border-radius: 4px;
  background: #0d0d0d;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.contact-section .contact-form-container .contact-form .form-group .captcha-container .captcha-refresh {
  padding: 8px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-form-container .contact-form .form-group .captcha-container .captcha-refresh:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  transform: rotate(180deg);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.contact-section .contact-form-container .contact-form .form-group .captcha-container .captcha-refresh svg {
  display: block;
}
.contact-section .contact-form-container .contact-form .btn-submit {
  width: 100%;
  padding: 24px;
  background: #ff0000;
  color: #ffffff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-section .contact-form-container .contact-form .btn-submit:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3), 0 0 60px rgba(255, 0, 0, 0.1);
}
.contact-section .contact-form-container .contact-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notification-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  min-width: 320px;
  max-width: 480px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(400px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.notification-toast.show {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.notification-toast.notification-success {
  border-left: 4px solid #00ff00;
}
.notification-toast.notification-success .notification-icon {
  color: #00ff00;
}
.notification-toast.notification-success .notification-progress {
  background: #00ff00;
}
.notification-toast.notification-error {
  border-left: 4px solid #ff0000;
}
.notification-toast.notification-error .notification-icon {
  color: #ff0000;
}
.notification-toast.notification-error .notification-progress {
  background: #ff0000;
}
.notification-toast .notification-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  position: relative;
}
.notification-toast .notification-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.notification-toast .notification-message {
  flex: 1;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.notification-toast .notification-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.notification-toast .notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.notification-toast .notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ff0000;
  transition: width 5s linear;
}
@media (max-width: 640px) {
  .notification-toast {
    top: 16px;
    right: 16px;
    left: 16px;
    min-width: auto;
    max-width: none;
  }
}

.contact-section .contact-info-container .info-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}
.contact-section .contact-info-container .info-description {
  color: #b3b3b3;
  margin-bottom: 32px;
}
.contact-section .contact-info-container .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-section .contact-info-container .contact-methods .contact-method {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 24px;
  align-items: center;
}
.contact-section .contact-info-container .contact-methods .contact-method:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.contact-section .contact-info-container .contact-methods .contact-method .method-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  flex-shrink: 0;
}
.contact-section .contact-info-container .contact-methods .contact-method .method-icon svg {
  color: #ff0000;
}
.contact-section .contact-info-container .contact-methods .contact-method .method-content {
  flex: 1;
}
.contact-section .contact-info-container .contact-methods .contact-method .method-content .method-title {
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-section .contact-info-container .contact-methods .contact-method .method-content .method-text {
  color: #b3b3b3;
  margin-bottom: 4px;
}
.contact-section .contact-info-container .contact-methods .contact-method .method-content .method-link {
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
}
.contact-section .contact-info-container .contact-methods .contact-method .method-content .method-link:hover {
  text-decoration: underline;
}
.contact-section .contact-info-container .support-hours {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00ff00;
}
.contact-section .contact-info-container .support-hours .hours-title {
  font-weight: 700;
  margin-bottom: 24px;
  color: #00ff00;
}
.contact-section .contact-info-container .support-hours .hours-list {
  margin-bottom: 24px;
}
.contact-section .contact-info-container .support-hours .hours-list .hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-section .contact-info-container .support-hours .hours-list .hours-item:last-child {
  border-bottom: none;
}
.contact-section .contact-info-container .support-hours .hours-list .hours-item .hours-day {
  color: #b3b3b3;
}
.contact-section .contact-info-container .support-hours .hours-list .hours-item .hours-time {
  font-weight: 600;
  color: #00ff00;
}
.contact-section .contact-info-container .support-hours .hours-note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

.faq-hero {
  padding: 96px 0 64px;
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
}

.faq-section {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.3) 100%);
}
.faq-section .faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-section .faq-item-large {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-section .faq-item-large .faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-section .faq-item-large .faq-question-btn .faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}
.faq-section .faq-item-large .faq-question-btn .faq-toggle {
  font-size: 32px;
  color: #ff0000;
  transition: transform 0.3s ease;
  font-weight: 700;
  line-height: 1;
}
.faq-section .faq-item-large.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-section .faq-item-large.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in;
}
.faq-section .faq-item-large .faq-answer {
  display: none;
  padding-top: 24px;
  color: #b3b3b3;
  line-height: 1.8;
}
.faq-section .faq-item-large .faq-answer p {
  margin: 0;
}

.help-search-hero {
  padding: 96px 0 64px;
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
}
.help-search-hero .search-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.help-search-hero .search-box {
  width: 100%;
  padding: 32px 48px;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 18px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.help-search-hero .search-box:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  background: rgba(17, 17, 17, 0.8);
}
.help-search-hero .search-box::placeholder {
  color: #666666;
}
.help-search-hero .search-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff0000;
  font-size: 24px;
  pointer-events: none;
}
.help-search-hero .search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
}
.help-search-hero .search-suggestions.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.help-search-hero .search-suggestions .suggestion-item {
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.help-search-hero .search-suggestions .suggestion-item:last-child {
  border-bottom: none;
}
.help-search-hero .search-suggestions .suggestion-item:hover {
  background: rgba(255, 0, 0, 0.1);
  padding-left: 32px;
}
.help-search-hero .search-suggestions .suggestion-item .suggestion-question {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.help-search-hero .search-suggestions .suggestion-item .suggestion-question .highlight {
  background: rgba(255, 0, 0, 0.3);
  color: #ff0000;
  padding: 2px 4px;
  border-radius: 2px;
  font-weight: 700;
}
.help-search-hero .search-suggestions .suggestion-item .suggestion-category {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.help-search-hero .search-suggestions .no-results {
  padding: 32px;
  text-align: center;
  color: #666666;
}

.help-categories {
  padding: 64px 0;
}
.help-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .help-categories .categories-grid {
    grid-template-columns: 1fr;
  }
}
.help-categories .category-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.help-categories .category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.help-categories .category-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
}
.help-categories .category-card:hover::before {
  opacity: 1;
}
.help-categories .category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}
.help-categories .category-card.active {
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.help-categories .category-card.active::before {
  opacity: 1;
}
.help-categories .category-card .category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.help-categories .category-card .category-icon svg {
  width: 32px;
  height: 32px;
  color: #ff0000;
}
.help-categories .category-card .category-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}
.help-categories .category-card .category-description {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.6;
}

.help-faq-section {
  padding: 64px 0;
}
.help-faq-section .faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.help-faq-section .faq-item {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.help-faq-section .faq-item:not(.active) .faq-answer {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.help-faq-section .faq-item.active {
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.help-faq-section .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.help-faq-section .faq-item.active .faq-answer {
  max-height: 2000px;
  opacity: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}
.help-faq-section .faq-item .faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.help-faq-section .faq-item .faq-question-btn:hover {
  background: rgba(255, 0, 0, 0.05);
}
.help-faq-section .faq-item .faq-question-btn .faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
  margin-right: 16px;
}
.help-faq-section .faq-item .faq-question-btn .faq-toggle {
  font-size: 32px;
  color: #ff0000;
  transition: transform 0.3s ease;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.help-faq-section .faq-item .faq-answer {
  padding: 0 24px;
  color: #b3b3b3;
  line-height: 1.8;
  transition: all 0.4s ease;
  overflow: hidden;
}
.help-faq-section .faq-item .faq-answer p {
  margin-bottom: 16px;
}
.help-faq-section .faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}
.help-faq-section .faq-item .faq-answer strong {
  color: #ffffff;
  font-weight: 700;
}
.help-faq-section .faq-item .faq-answer code {
  background: rgba(255, 0, 0, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #ff0000;
}
.help-faq-section .faq-item .faq-answer ul, .help-faq-section .faq-item .faq-answer ol {
  margin: 16px 0;
  padding-left: 32px;
}
.help-faq-section .faq-item .faq-answer ul li, .help-faq-section .faq-item .faq-answer ol li {
  margin-bottom: 4px;
}
.help-faq-section .faq-item .faq-related {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.help-faq-section .faq-item .faq-related .related-title {
  font-size: 14px;
  font-weight: 600;
  color: #b3b3b3;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.help-faq-section .faq-item .faq-related .related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.help-faq-section .faq-item .faq-related .related-links .related-link {
  padding: 4px 16px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.help-faq-section .faq-item .faq-related .related-links .related-link:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: translateY(-2px);
}
.help-faq-section .faq-item .faq-feedback {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
.help-faq-section .faq-item .faq-feedback .feedback-text {
  font-size: 14px;
  color: #b3b3b3;
}
.help-faq-section .faq-item .faq-feedback .feedback-buttons {
  display: flex;
  gap: 8px;
}
.help-faq-section .faq-item .faq-feedback .feedback-buttons .feedback-btn {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.help-faq-section .faq-item .faq-feedback .feedback-buttons .feedback-btn:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  transform: scale(1.1);
}
.help-faq-section .faq-item .faq-feedback .feedback-buttons .feedback-btn.active {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}
.help-faq-section .faq-item .faq-feedback .feedback-buttons .feedback-btn svg {
  width: 20px;
  height: 20px;
}

.help-popular {
  padding: 64px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.3) 100%);
}
.help-popular .popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .help-popular .popular-grid {
    grid-template-columns: 1fr;
  }
}
.help-popular .popular-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
.help-popular .popular-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.help-popular .popular-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
}
.help-popular .popular-card:hover::before {
  opacity: 1;
}
.help-popular .popular-card .popular-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff0000;
  color: #ffffff;
  padding: 4px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(45deg) translate(30%, -50%);
  transform-origin: center;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}
.help-popular .popular-card .popular-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}
.help-popular .popular-card .popular-excerpt {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 16px;
}
.help-popular .popular-card .popular-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #666666;
}
.help-popular .popular-card .popular-meta .popular-category {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.help-popular .popular-card .popular-meta .popular-views {
  color: #ff0000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 2000px;
    opacity: 1;
  }
}
@keyframes highlightFlash {
  0%, 100% {
    background: transparent;
  }
  50% {
    background: rgba(255, 0, 0, 0.3);
  }
}
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  }
}
@media (max-width: 768px) {
  .help-search-hero {
    padding: 48px 0 32px;
  }
  .help-search-hero .search-box {
    padding: 16px 24px;
    font-size: 16px;
  }
  .help-categories {
    padding: 32px 0;
  }
  .help-categories .categories-grid {
    gap: 16px;
  }
  .help-categories .category-card {
    padding: 24px;
  }
  .help-faq-section {
    padding: 32px 0;
  }
  .help-faq-section .faq-item .faq-question-btn {
    padding: 16px;
  }
  .help-faq-section .faq-item .faq-question-btn .faq-question {
    font-size: 16px;
  }
  .help-popular {
    padding: 32px 0;
  }
  .help-popular .popular-card {
    padding: 24px;
  }
}
.live-status-widget {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.live-status-widget:hover {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.live-status-widget .widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}
.live-status-widget .widget-header .widget-title {
  font-size: 11px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.live-status-widget .widget-header .widget-header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-status-widget .widget-header .status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff00;
  box-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
  animation: statusPulse 2s ease-in-out infinite;
}
.live-status-widget .widget-header .widget-close {
  background: transparent;
  border: none;
  color: #b3b3b3;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}
.live-status-widget .widget-header .widget-close:hover {
  color: #ff0000;
  transform: scale(1.2);
}
.live-status-widget .widget-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.live-status-widget .widget-content .widget-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.live-status-widget .widget-content .widget-counter .counter-value {
  font-size: 16px;
  font-weight: 700;
  color: #ff0000;
  font-family: "Courier New", monospace;
  line-height: 1;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}
.live-status-widget .widget-content .widget-counter .counter-label {
  font-size: 10px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .live-status-widget {
    top: 80px;
    right: 10px;
    min-width: 110px;
    padding: 4px 8px;
    z-index: 998;
  }
  .live-status-widget .widget-header .widget-title {
    font-size: 10px;
  }
  .live-status-widget .widget-header .widget-header-right {
    gap: 4px;
  }
  .live-status-widget .widget-header .status-indicator {
    width: 5px;
    height: 5px;
  }
  .live-status-widget .widget-header .widget-close {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  .live-status-widget .widget-content {
    gap: 2px;
  }
  .live-status-widget .widget-content .widget-counter .counter-value {
    font-size: 13px;
  }
  .live-status-widget .widget-content .widget-counter .counter-label {
    font-size: 9px;
  }
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
.live-status {
  display: none;
}

.compatibility-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.compatibility-modal.open {
  opacity: 1;
  pointer-events: all;
}
.compatibility-modal.open .compatibility-modal-content {
  transform: scale(1);
  opacity: 1;
}
.compatibility-modal .compatibility-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}
.compatibility-modal .compatibility-modal-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 90%;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.compatibility-modal .compatibility-card {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 0, 0, 0.1), inset 0 0 20px rgba(255, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.compatibility-modal .compatibility-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.5), rgba(0, 255, 255, 0.5), rgba(255, 0, 0, 0.5));
  border-radius: 12px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
  opacity: 0.6;
}
.compatibility-modal .compatibility-card.status-compatible {
  border-color: rgba(0, 255, 0, 0.5);
}
.compatibility-modal .compatibility-card.status-compatible::before {
  background: linear-gradient(45deg, rgba(0, 255, 0, 0.5), rgba(0, 255, 0, 0.3), rgba(0, 255, 0, 0.5));
}
.compatibility-modal .compatibility-card.status-warning {
  border-color: rgba(255, 0, 0, 0.5);
}
.compatibility-modal .compatibility-card.status-warning::before {
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.5));
}
.compatibility-modal .compatibility-card.status-unsupported {
  border-color: rgba(255, 0, 0, 0.5);
}
.compatibility-modal .compatibility-card.status-unsupported::before {
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.5));
}
.compatibility-modal .compatibility-icon {
  text-align: center;
  margin-bottom: 24px;
}
.compatibility-modal .compatibility-icon svg {
  color: #ff0000;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}
.compatibility-modal .compatibility-status {
  text-align: center;
  margin-bottom: 24px;
}
.compatibility-modal .compatibility-status .status-light {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px currentColor;
  animation: statusPulse 2s ease-in-out infinite;
  vertical-align: middle;
  background: #ffaa00;
  color: #ffaa00;
}
.compatibility-modal .compatibility-status .status-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.compatibility-modal .compatibility-status.status-compatible .status-light {
  background: #00ff00;
  color: #00ff00;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}
.compatibility-modal .compatibility-status.status-compatible .status-text {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}
.compatibility-modal .compatibility-status.status-warning .status-light {
  background: #ff0000;
  color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}
.compatibility-modal .compatibility-status.status-warning .status-text {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.compatibility-modal .compatibility-status.status-unsupported .status-light {
  background: #ff0000;
  color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}
.compatibility-modal .compatibility-status.status-unsupported .status-text {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.compatibility-modal .compatibility-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}
.compatibility-modal .compatibility-details .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.compatibility-modal .compatibility-details .detail-item .detail-label {
  color: #b3b3b3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.compatibility-modal .compatibility-details .detail-item .detail-value {
  color: #ffffff;
  font-weight: 600;
  font-family: "Courier New", monospace;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
@keyframes borderGlow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
.compatibility-redirect {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  text-align: center;
}
.compatibility-redirect .redirect-message {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.compatibility-redirect .redirect-message #redirectCountdown {
  color: #ff0000;
  font-weight: 700;
  font-family: "Courier New", monospace;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
.docs-sidebar {
  position: fixed;
  left: 0;
  top: 80px;
  width: 280px;
  height: calc(100vh - 80px);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 0, 0, 0.2);
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.3) transparent;
}
.docs-sidebar::-webkit-scrollbar {
  width: 6px;
}
.docs-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.docs-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.3);
  border-radius: 3px;
}
.docs-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 0, 0.5);
}
.docs-sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.95);
  z-index: 10;
}
.docs-sidebar .sidebar-header .sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}
.docs-sidebar .sidebar-header .sidebar-title:hover {
  color: #ff3333;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.3);
  transform: translateX(4px);
}
.docs-sidebar .sidebar-header .sidebar-close {
  display: none;
  background: transparent;
  border: none;
  color: #b3b3b3;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.docs-sidebar .sidebar-header .sidebar-close:hover {
  color: #ff0000;
  transform: scale(1.2);
}
.docs-sidebar .sidebar-nav {
  padding: 16px;
}
.docs-sidebar .nav-section {
  margin-bottom: 16px;
}
.docs-sidebar .nav-section .nav-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.docs-sidebar .nav-section .nav-section-toggle:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
.docs-sidebar .nav-section .nav-section-toggle .section-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #ff0000;
}
.docs-sidebar .nav-section .nav-section-toggle .section-title {
  font-weight: 600;
  font-size: 16px;
}
.docs-sidebar .nav-section.expanded .nav-section-toggle .section-icon {
  transform: rotate(90deg);
}
.docs-sidebar .nav-section .nav-section-items {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.docs-sidebar .nav-section .nav-section-items.expanded {
  max-height: 1000px;
}
.docs-sidebar .nav-section .nav-section-items li {
  margin: 0;
}
.docs-sidebar .nav-section .nav-section-items li .nav-link {
  display: block;
  padding: 8px 16px;
  color: #b3b3b3;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-left: 16px;
  border-left: 2px solid transparent;
}
.docs-sidebar .nav-section .nav-section-items li .nav-link:hover {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  border-left-color: rgba(255, 0, 0, 0.5);
  padding-left: 24px;
  text-shadow: 0 0 2px rgba(255, 0, 0, 0.8), 0 0 4px rgba(255, 0, 0, 0.5), 0 0 6px rgba(255, 0, 0, 0.3);
}
.docs-sidebar .nav-section .nav-section-items li .nav-link.active {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.15);
  border-left-color: #ff0000;
  font-weight: 600;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.docs-sidebar .sidebar-header .sidebar-close {
  display: none;
}
@media (min-width: 1025px) {
  .docs-sidebar {
    transform: translateX(0);
  }
  .docs-sidebar.open {
    transform: translateX(0);
  }
  .docs-sidebar:not(.open) {
    transform: translateX(-100%);
  }
}
@media (max-width: 1024px) {
  .docs-sidebar {
    transform: translateX(-100%);
    z-index: 1000;
  }
  .docs-sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
  }
  .docs-sidebar .sidebar-header .sidebar-close {
    display: block;
  }
}

.docs-sidebar-toggle {
  display: flex;
  position: fixed;
  top: 70px;
  left: 20px;
  z-index: 1001;
  width: 45px;
  height: 45px;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ff0000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.docs-sidebar-toggle:hover {
  background: rgba(255, 0, 0, 0.15);
  border-color: #ff0000;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5), 0 0 16px rgba(255, 0, 0, 0.3), 0 0 24px rgba(255, 0, 0, 0.1);
  transform: scale(1.05);
}
.docs-sidebar-toggle:active {
  transform: scale(0.95);
}
.docs-sidebar-toggle svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1025px) {
  .docs-sidebar-toggle {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .docs-sidebar-toggle {
    display: flex;
    top: 70px;
  }
}

.docs-container {
  display: flex;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}

.docs-content {
  flex: 1;
  margin-left: 280px;
  padding: 48px;
  max-width: calc(100% - 280px);
  transition: margin-left 0.3s ease;
}
@media (max-width: 1024px) {
  .docs-content {
    margin-left: 0;
    max-width: 100%;
    padding: 32px 24px;
  }
}
.docs-content .docs-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.docs-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-header .docs-breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}
.docs-header .docs-breadcrumb a {
  color: #ff0000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.docs-header .docs-breadcrumb a:hover {
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.docs-header .docs-breadcrumb .breadcrumb-separator {
  margin: 0 8px;
  color: #666666;
}
.docs-header .docs-title {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 0 2px rgba(255, 0, 0, 0.8), 0 0 4px rgba(255, 0, 0, 0.5), 0 0 6px rgba(255, 0, 0, 0.3);
  line-height: 1.2;
}
.docs-header .docs-description {
  font-size: 18px;
  color: #b3b3b3;
  line-height: 1.6;
}

.docs-article .docs-article-content {
  color: #b3b3b3;
  line-height: 1.8;
  font-size: 16px;
}
.docs-article .docs-article-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 0, 0, 0.2);
  text-shadow: 0 0 1px rgba(255, 0, 0, 0.8), 0 0 2px rgba(255, 0, 0, 0.5), 0 0 3px rgba(255, 0, 0, 0.3);
}
.docs-article .docs-article-content h2:first-child {
  margin-top: 0;
}
.docs-article .docs-article-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 16px;
}
.docs-article .docs-article-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 8px;
}
.docs-article .docs-article-content p {
  margin-bottom: 24px;
}
.docs-article .docs-article-content p:last-child {
  margin-bottom: 0;
}
.docs-article .docs-article-content ul, .docs-article .docs-article-content ol {
  margin: 24px 0;
  padding-left: 48px;
}
.docs-article .docs-article-content ul li, .docs-article .docs-article-content ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.docs-article .docs-article-content ul li::marker, .docs-article .docs-article-content ol li::marker {
  color: #ff0000;
}
.docs-article .docs-article-content strong {
  color: #ffffff;
  font-weight: 700;
}
.docs-article .docs-article-content code {
  background: rgba(255, 0, 0, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
}
.docs-article .docs-article-content a {
  color: #ff0000;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.docs-article .docs-article-content a:hover {
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
  border-bottom-color: #ff0000;
}
.docs-article .docs-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 32px 0;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-article .docs-article-content blockquote {
  border-left: 4px solid #ff0000;
  padding-left: 24px;
  margin: 32px 0;
  color: #b3b3b3;
  font-style: italic;
  background: rgba(255, 0, 0, 0.05);
  padding: 24px;
  border-radius: 4px;
}

.docs-toc {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  margin-bottom: 48px;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 0, 0.2);
  position: relative;
  max-height: none;
  overflow: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.3) transparent;
}
.docs-toc::-webkit-scrollbar {
  width: 4px;
}
.docs-toc::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.3);
  border-radius: 2px;
}
.docs-toc .toc-header {
  margin-bottom: 16px;
}
.docs-toc .toc-header .toc-title {
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
  text-shadow: 0 0 2px rgba(255, 0, 0, 0.8), 0 0 4px rgba(255, 0, 0, 0.5), 0 0 6px rgba(255, 0, 0, 0.3);
}
.docs-toc .toc-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.docs-toc .toc-nav li {
  margin: 0;
}
.docs-toc .toc-nav li a {
  display: block;
  padding: 4px 8px;
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.docs-toc .toc-nav li a:hover {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  border-left-color: rgba(255, 0, 0, 0.5);
  padding-left: 16px;
}
.docs-toc .toc-nav li a.active {
  color: #ff0000;
  border-left-color: #ff0000;
  background: rgba(255, 0, 0, 0.15);
  font-weight: 600;
}
.docs-toc .toc-nav li ul {
  list-style: none;
  padding-left: 16px;
  margin-top: 4px;
}
.docs-toc .toc-nav li ul li a {
  font-size: 13px;
  padding-left: 16px;
}
@media (max-width: 1024px) {
  .docs-toc {
    position: relative;
    top: 0;
    max-height: none;
  }
}

.docs-content-inner {
  position: relative;
}
.docs-content-inner .docs-toc.floating {
  position: fixed;
  top: 100px;
  right: 20px;
  width: 250px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 50;
}
@media (max-width: 1400px) {
  .docs-content-inner .docs-toc.floating {
    display: none;
  }
}

.docs-warning-box,
.docs-info-box,
.docs-success-box {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  margin: 32px 0;
  display: flex;
  gap: 16px;
  border-left: 4px solid;
  animation: fadeIn 0.5s ease;
}
.docs-warning-box .box-icon,
.docs-info-box .box-icon,
.docs-success-box .box-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.docs-warning-box .box-content,
.docs-info-box .box-content,
.docs-success-box .box-content {
  flex: 1;
}
.docs-warning-box .box-content strong,
.docs-info-box .box-content strong,
.docs-success-box .box-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.docs-warning-box {
  background: rgba(255, 165, 0, 0.1);
  border-color: #ffaa00;
  border-left-width: 4px;
}
.docs-warning-box .box-icon {
  color: #ffaa00;
}
.docs-warning-box .box-content {
  color: #ffcc88;
}
.docs-warning-box .box-content strong {
  color: #ffaa00;
}

.docs-info-box {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
  border-left-width: 4px;
}
.docs-info-box .box-icon {
  color: #ff0000;
}
.docs-info-box .box-content {
  color: #b3b3b3;
}
.docs-info-box .box-content strong {
  color: #ff0000;
}

.docs-success-box {
  background: rgba(0, 255, 0, 0.1);
  border-color: #00ff00;
  border-left-width: 4px;
}
.docs-success-box .box-icon {
  color: #00ff00;
}
.docs-success-box .box-content {
  color: #88ff88;
}
.docs-success-box .box-content strong {
  color: #00ff00;
}

.callout {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  margin: 32px 0;
  display: flex;
  gap: 16px;
  border-left: 4px solid;
  animation: fadeIn 0.5s ease;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: currentColor;
  opacity: 0.8;
}
.callout .callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.callout .callout-content {
  flex: 1;
  color: #b3b3b3;
  line-height: 1.7;
}
.callout .callout-content strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.callout-info {
  background: rgba(255, 0, 0, 0.08);
  border-color: #ff0000;
}
.callout-info .callout-icon {
  color: #ff0000;
}
.callout-info .callout-content {
  color: #b3b3b3;
}
.callout-info .callout-content strong {
  color: #ff0000;
}

.callout-warning {
  background: rgba(255, 170, 0, 0.1);
  border-color: #ffaa00;
}
.callout-warning .callout-icon {
  color: #ffaa00;
}
.callout-warning .callout-content {
  color: #ffcc88;
}
.callout-warning .callout-content strong {
  color: #ffaa00;
}

.callout-note {
  background: rgba(0, 255, 255, 0.08);
  border-color: #00ffff;
}
.callout-note .callout-icon {
  color: #00ffff;
}
.callout-note .callout-content {
  color: #b3b3b3;
}
.callout-note .callout-content strong {
  color: #00ffff;
}

.step {
  display: flex;
  gap: 14px;
  background: #0d0d0d;
  border-left: 3px solid #ff1a1a;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: 0.2s;
}
.step:hover {
  background: #151515;
  transform: translateX(4px);
}
.step .step-number {
  color: #ff1a1a;
  font-weight: 700;
  font-size: 16px;
  min-width: 40px;
  flex-shrink: 0;
}
.step .step-text {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
  flex: 1;
}
.step .step-text strong {
  color: #ffffff;
  font-weight: 600;
}
.step .step-text kbd {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 26, 26, 0.2);
  border: 1px solid rgba(255, 26, 26, 0.4);
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #ff1a1a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0 2px;
}
.step .step-text code {
  background: rgba(255, 26, 26, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #ff1a1a;
  border: 1px solid rgba(255, 26, 26, 0.3);
}

.checklist {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist .checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.checklist .checklist-item:hover {
  background: rgba(17, 17, 17, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}
.checklist .checklist-item .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
}
.checklist .checklist-item .check-content {
  flex: 1;
  color: #b3b3b3;
  line-height: 1.7;
  padding-top: 2px;
}
.checklist .checklist-item.check .check-icon {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 2px solid #00ff00;
  text-shadow: 0 0 3px rgba(0, 255, 0, 0.8), 0 0 6px rgba(0, 255, 0, 0.5), 0 0 9px rgba(0, 255, 0, 0.3);
}
.checklist .checklist-item.cross .check-icon {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 2px solid #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}

kbd {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #ff0000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 2px;
  font-weight: 500;
}

.docs-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-navigation .nav-prev,
.docs-navigation .nav-next {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-navigation .nav-prev:hover,
.docs-navigation .nav-next:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}
.docs-navigation .nav-prev .nav-label,
.docs-navigation .nav-next .nav-label {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.docs-navigation .nav-prev .nav-title,
.docs-navigation .nav-next .nav-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.docs-navigation .nav-prev {
  text-align: left;
}
.docs-navigation .nav-prev::before {
  content: "←";
  margin-right: 8px;
  color: #ff0000;
}
.docs-navigation .nav-next {
  text-align: right;
  grid-column: 2;
}
.docs-navigation .nav-next::after {
  content: "→";
  margin-left: 8px;
  color: #ff0000;
}
@media (max-width: 768px) {
  .docs-navigation {
    grid-template-columns: 1fr;
  }
  .docs-navigation .nav-next {
    grid-column: 1;
  }
}

.docs-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-related .related-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.docs-related .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.docs-related .related-grid .related-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-related .related-grid .related-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
}
.docs-related .related-grid .related-card .related-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.docs-related .related-grid .related-card .related-card-category {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.docs-feedback {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-feedback .feedback-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-feedback .feedback-question .feedback-text {
  font-size: 16px;
  color: #b3b3b3;
  font-weight: 600;
}
.docs-feedback .feedback-question .feedback-buttons {
  display: flex;
  gap: 16px;
}
.docs-feedback .feedback-question .feedback-buttons .feedback-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #b3b3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}
.docs-feedback .feedback-question .feedback-buttons .feedback-btn svg {
  width: 18px;
  height: 18px;
}
.docs-feedback .feedback-question .feedback-buttons .feedback-btn:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  transform: scale(1.05);
}
.docs-feedback .feedback-question .feedback-buttons .feedback-btn.active {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}
.docs-feedback .feedback-question .feedback-buttons .feedback-btn.active.no {
  border-color: #ffaa00;
  background: rgba(255, 170, 0, 0.1);
  color: #ffaa00;
}
@media (max-width: 768px) {
  .docs-feedback .feedback-question {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.docs-article-content pre {
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  padding: 24px;
  overflow-x: auto;
  margin: 32px 0;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
}
.docs-article-content pre code {
  background: transparent;
  padding: 0;
  border: none;
  color: #ffffff;
}
.docs-article-content code {
  background: rgba(255, 0, 0, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.docs-homepage .docs-search-hero {
  text-align: center;
  padding: 64px 0;
  margin-bottom: 64px;
}
.docs-homepage .docs-search-hero .search-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.docs-homepage .docs-search-hero .search-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 32px;
  text-shadow: 0 0 2px rgba(255, 0, 0, 0.8), 0 0 4px rgba(255, 0, 0, 0.5), 0 0 6px rgba(255, 0, 0, 0.3);
}
.docs-homepage .docs-search-hero .docs-search-input {
  width: 100%;
  padding: 24px 48px;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 18px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.docs-homepage .docs-search-hero .docs-search-input:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  background: rgba(17, 17, 17, 0.8);
}
.docs-homepage .docs-search-hero .docs-search-input::placeholder {
  color: #666666;
}
.docs-homepage .docs-search-hero .search-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}
.docs-homepage .docs-search-hero .search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
}
.docs-homepage .docs-search-hero .search-suggestions.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.docs-homepage .docs-search-hero .search-suggestions .suggestion-item {
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.docs-homepage .docs-search-hero .search-suggestions .suggestion-item:last-child {
  border-bottom: none;
}
.docs-homepage .docs-search-hero .search-suggestions .suggestion-item:hover {
  background: rgba(255, 0, 0, 0.1);
  padding-left: 32px;
}
.docs-homepage .docs-search-hero .search-suggestions .suggestion-item .suggestion-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.docs-homepage .docs-search-hero .search-suggestions .suggestion-item .suggestion-category {
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
}
.docs-homepage .docs-popular,
.docs-homepage .docs-categories,
.docs-homepage .docs-quicklinks {
  margin-bottom: 64px;
}
.docs-homepage .docs-popular .section-title,
.docs-homepage .docs-categories .section-title,
.docs-homepage .docs-quicklinks .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
}
.docs-homepage .docs-popular .section-title .highlight,
.docs-homepage .docs-categories .section-title .highlight,
.docs-homepage .docs-quicklinks .section-title .highlight {
  color: #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.docs-homepage .popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.docs-homepage .popular-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.docs-homepage .popular-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.docs-homepage .popular-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
}
.docs-homepage .popular-card:hover::before {
  opacity: 1;
}
.docs-homepage .popular-card .popular-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.docs-homepage .popular-card .popular-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.docs-homepage .popular-card .popular-excerpt {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 16px;
}
.docs-homepage .popular-card .popular-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.docs-homepage .popular-card .popular-meta .popular-category {
  color: #666666;
  text-transform: uppercase;
}
.docs-homepage .popular-card .popular-meta .popular-views {
  color: #ff0000;
}
.docs-homepage .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.docs-homepage .category-box {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
  text-decoration: none;
  display: block;
  color: inherit;
}
.docs-homepage .category-box:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.5);
}
.docs-homepage .category-box .category-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.docs-homepage .category-box .category-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.docs-homepage .category-box .category-description {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 16px;
}
.docs-homepage .category-box .category-count {
  font-size: 12px;
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 16px;
}
.docs-homepage .category-box .category-articles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  text-align: left;
}
.docs-homepage .category-box .category-article-link {
  display: block;
  padding: 8px 16px;
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 4px;
  color: #b3b3b3;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.docs-homepage .category-box .category-article-link:hover {
  background: rgba(255, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff0000;
  transform: translateX(4px);
}
.docs-homepage .category-box-multi {
  cursor: default;
}
.docs-homepage .category-box-multi:hover {
  transform: translateY(-4px);
}
.docs-homepage .quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.docs-homepage .quicklink-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.docs-homepage .quicklink-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}
.docs-homepage .quicklink-card .quicklink-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.docs-homepage .quicklink-card .quicklink-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.docs-homepage .quicklink-card .quicklink-text {
  font-size: 13px;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  .docs-content {
    padding: 24px 16px;
  }
  .docs-header .docs-title {
    font-size: 32px;
  }
  .docs-header .docs-description {
    font-size: 16px;
  }
  .docs-article-content h2 {
    font-size: 24px;
  }
  .docs-article-content h3 {
    font-size: 18px;
  }
  .docs-homepage .docs-search-hero {
    padding: 32px 0;
  }
  .docs-homepage .docs-search-hero .search-title {
    font-size: 32px;
  }
  .docs-homepage .docs-search-hero .docs-search-input {
    padding: 16px 24px;
    font-size: 16px;
  }
  .docs-homepage .popular-grid,
  .docs-homepage .categories-grid,
  .docs-homepage .quicklinks-grid {
    grid-template-columns: 1fr;
  }
}
.dashboard-body {
  background: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}

.dashboard-mobile-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 401;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(5, 5, 5, 0.95);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
}
.dashboard-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ff0000;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.dashboard-mobile-toggle:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
}
.dashboard-mobile-toggle:hover span {
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}
.dashboard-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.dashboard-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.dashboard-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 768px) {
  .dashboard-mobile-toggle {
    display: flex;
  }
}

.dashboard-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 399;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.dashboard-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .dashboard-sidebar-overlay {
    display: block;
  }
}

.dashboard-sidebar {
  width: 280px;
  background: rgba(5, 5, 5, 0.98);
  border-right: 1px solid rgba(255, 0, 0, 0.2);
  padding: 32px 0;
  position: fixed;
  left: 0;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  z-index: 50;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 0, 0.3) transparent;
}
.dashboard-sidebar::-webkit-scrollbar {
  width: 6px;
}
.dashboard-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 0, 0.3);
  border-radius: 3px;
}
.dashboard-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 0, 0, 0.5);
}
.dashboard-sidebar .sidebar-header {
  padding: 0 32px 32px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  margin-bottom: 24px;
}
.dashboard-sidebar .sidebar-header .sidebar-logo {
  display: flex;
  flex-direction: column;
}
.dashboard-sidebar .sidebar-header .sidebar-logo .logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
  margin-bottom: 4px;
}
.dashboard-sidebar .sidebar-header .sidebar-logo .logo-subtitle {
  font-size: 12px;
  color: #b3b3b3;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dashboard-sidebar .sidebar-nav {
  padding: 0 16px;
}
.dashboard-sidebar .sidebar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  margin-bottom: 4px;
  border-radius: 8px;
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.dashboard-sidebar .sidebar-item .sidebar-icon {
  flex-shrink: 0;
  color: inherit;
  transition: all 0.3s ease;
}
.dashboard-sidebar .sidebar-item:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}
.dashboard-sidebar .sidebar-item:hover .sidebar-icon {
  color: #ff0000;
}
.dashboard-sidebar .sidebar-item.active {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
  border-left: 3px solid #ff0000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.dashboard-sidebar .sidebar-item.active .sidebar-icon {
  color: #ff0000;
}
.dashboard-sidebar .sidebar-item.logout-item {
  color: #ff0000;
  margin-top: 16px;
}
.dashboard-sidebar .sidebar-item.logout-item:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
.dashboard-sidebar .sidebar-item.logout-item:hover .sidebar-icon {
  color: #ff0000;
}
.dashboard-sidebar .sidebar-divider {
  height: 1px;
  background: rgba(255, 0, 0, 0.2);
  margin: 24px 32px;
}
@media (max-width: 768px) {
  .dashboard-sidebar {
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 400;
  }
  .dashboard-sidebar.active {
    transform: translateX(0);
  }
}

.dashboard-content {
  flex: 1;
  margin-left: 280px;
  padding: 32px;
  max-width: calc(100% - 280px);
}
.dashboard-content .dashboard-header {
  margin-bottom: 48px;
}
.dashboard-content .dashboard-header .dashboard-title {
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.dashboard-content .dashboard-header .dashboard-subtitle {
  font-size: 18px;
  color: #b3b3b3;
}
.dashboard-content .dashboard-section {
  margin-bottom: 48px;
}
.dashboard-content .dashboard-section .section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .dashboard-content {
    margin-left: 0;
    max-width: 100%;
    padding: 24px;
  }
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.dashboard-card:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.dashboard-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  margin-bottom: 24px;
  color: #ff0000;
}
.dashboard-card .card-icon svg {
  width: 28px;
  height: 28px;
}
.dashboard-card .card-content .card-label {
  font-size: 16px;
  color: #b3b3b3;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.dashboard-card .card-content .card-value {
  font-size: 32px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 4px;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.dashboard-card .card-content .card-subtitle {
  font-size: 14px;
  color: #666666;
}
.dashboard-card .card-header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.dashboard-card .card-header .card-title {
  font-size: 24px;
  font-weight: 700;
}
.dashboard-card .card-body .placeholder-text {
  color: #b3b3b3;
  font-size: 16px;
  line-height: 1.6;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .quick-actions {
    grid-template-columns: 1fr;
  }
}
.quick-actions .action-button {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
  color: #ffffff;
}
.quick-actions .action-button .action-icon {
  width: 32px;
  height: 32px;
  color: #ff0000;
  transition: all 0.3s ease;
}
.quick-actions .action-button span {
  font-size: 16px;
  font-weight: 600;
}
.quick-actions .action-button:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5), 0 0 16px rgba(255, 0, 0, 0.3), 0 0 24px rgba(255, 0, 0, 0.1);
}
.quick-actions .action-button:hover .action-icon {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5), 0 0 24px rgba(255, 0, 0, 0.3), 0 0 36px rgba(255, 0, 0, 0.1);
}

.user-avatar-menu {
  position: relative;
}
.user-avatar-menu .user-avatar-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 16px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.user-avatar-menu .user-avatar-trigger .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid rgba(255, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.user-avatar-menu .user-avatar-trigger .user-avatar .avatar-letter {
  font-size: 16px;
  font-weight: 700;
  color: #ff0000;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.3);
}
.user-avatar-menu .user-avatar-trigger .user-greeting {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 768px) {
  .user-avatar-menu .user-avatar-trigger .user-greeting {
    display: none;
  }
}
.user-avatar-menu .user-avatar-trigger .dropdown-arrow {
  width: 12px;
  height: 8px;
  color: #b3b3b3;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.user-avatar-menu .user-avatar-trigger:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
}
.user-avatar-menu .user-avatar-trigger:hover .dropdown-arrow {
  color: #ff0000;
}
.user-avatar-menu .user-avatar-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
  color: #ff0000;
}
.user-avatar-menu .user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 200;
}
.user-avatar-menu .user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-avatar-menu .user-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.user-avatar-menu .user-dropdown .dropdown-item .dropdown-icon {
  width: 16px;
  height: 16px;
  color: #b3b3b3;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.user-avatar-menu .user-dropdown .dropdown-item:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
.user-avatar-menu .user-dropdown .dropdown-item:hover .dropdown-icon {
  color: #ff0000;
}
.user-avatar-menu .user-dropdown .dropdown-item.logout-item {
  color: #ff0000;
}
.user-avatar-menu .user-dropdown .dropdown-item.logout-item:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
.user-avatar-menu .user-dropdown .dropdown-item.logout-item:hover .dropdown-icon {
  color: #ff0000;
}
.user-avatar-menu .user-dropdown .dropdown-divider {
  height: 1px;
  background: rgba(255, 0, 0, 0.2);
  margin: 8px 0;
}
@media (max-width: 768px) {
  .user-avatar-menu .user-dropdown {
    right: auto;
    left: 0;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .user-avatar-menu .user-avatar-trigger .user-greeting {
    display: none;
  }
}

.dashboard-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .dashboard-main-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.panel-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.panel-header .panel-title .panel-icon {
  color: #ff0000;
}
.panel-header .panel-update-time {
  font-size: 14px;
  color: #666666;
}

.btn-scan-system {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-scan-system svg {
  width: 16px;
  height: 16px;
}
.btn-scan-system:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}

.loader-status-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.loader-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.loader-status-box {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}
.loader-status-box:hover {
  border-color: rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.loader-status-box .status-indicator {
  position: relative;
  width: 12px;
  height: 12px;
  margin-bottom: 16px;
}
.loader-status-box .status-indicator .status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
.loader-status-box .status-indicator .status-dot.status-green {
  background: #00ff00;
  box-shadow: 0 0 16px rgba(0, 255, 0, 0.5), 0 0 32px rgba(0, 255, 0, 0.3), 0 0 48px rgba(0, 255, 0, 0.1);
}
.loader-status-box .status-indicator .status-dot.status-yellow {
  background: #ffaa00;
  box-shadow: 0 0 16px rgba(255, 170, 0, 0.5), 0 0 32px rgba(255, 170, 0, 0.3), 0 0 48px rgba(255, 170, 0, 0.1);
}
.loader-status-box .status-indicator .status-dot.status-red {
  background: #ff0000;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}
.loader-status-box .status-indicator .status-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}
.loader-status-box .status-indicator .status-pulse.status-green {
  background: #00ff00;
  opacity: 0.5;
}
.loader-status-box .status-indicator .status-pulse.status-yellow {
  background: #ffaa00;
  opacity: 0.5;
}
.loader-status-box .status-indicator .status-pulse.status-red {
  background: #ff0000;
  opacity: 0.5;
}
.loader-status-box .status-content {
  margin-bottom: 8px;
}
.loader-status-box .status-content .status-game {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.loader-status-box .status-content .status-text {
  font-size: 14px;
  font-weight: 500;
}
.loader-status-box .status-content .status-text.status-green-text {
  color: #00ff00;
}
.loader-status-box .status-content .status-text.status-yellow-text {
  color: #ffaa00;
}
.loader-status-box .status-content .status-text.status-red-text {
  color: #ff0000;
}
.loader-status-box .status-timestamp {
  font-size: 11px;
  color: #666666;
}

.system-check-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.system-check-content {
  min-height: 300px;
}

.system-scanning {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  text-align: center;
}
.system-scanning .scanning-animation {
  width: 200px;
  height: 4px;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}
.system-scanning .scanning-animation .scan-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  animation: scan 1.5s ease-in-out infinite;
}

@keyframes scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.system-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 48px;
  text-align: center;
}
.system-placeholder .placeholder-icon {
  opacity: 0.3;
  color: #666666;
}
.system-placeholder .placeholder-hint {
  font-size: 14px;
  color: #666666;
}

.system-results .compatibility-status {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 12px;
}
.system-results .compatibility-status .status-icon {
  color: #00ff00;
}
.system-results .compatibility-status .status-icon.error {
  color: #ff0000;
}
.system-results .compatibility-status .status-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.system-results .compatibility-status .status-title.error {
  color: #ff0000;
}
.system-results .compatibility-status .status-message {
  color: #b3b3b3;
}
.system-results .system-details {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}
.system-results .system-details .detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(5, 5, 5, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.1);
}
.system-results .system-details .detail-row .detail-label {
  font-weight: 500;
  color: #b3b3b3;
}
.system-results .system-details .detail-row .detail-value {
  color: #ffffff;
  font-weight: 600;
}
.system-results .system-issues .issues-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 24px;
}
.system-results .system-issues .issues-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.system-results .system-issues .issues-list .issue-item {
  padding: 24px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
}
.system-results .system-issues .issues-list .issue-item .issue-header {
  color: #ff0000;
  margin-bottom: 8px;
}
.system-results .system-issues .issues-list .issue-item .issue-message {
  color: #ffffff;
  margin-bottom: 8px;
}
.system-results .system-issues .issues-list .issue-item .issue-fix {
  color: #b3b3b3;
  font-size: 14px;
}
.system-results .system-issues .issues-list .issue-item .issue-fix a {
  color: #ff0000;
  text-decoration: underline;
}

.quick-actions-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.quick-action-btn {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
  color: #ffffff;
  cursor: pointer;
}
.quick-action-btn .action-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
}
.quick-action-btn .action-icon-wrapper .action-icon {
  color: #ff0000;
}
.quick-action-btn .action-label {
  font-size: 14px;
  font-weight: 500;
}
.quick-action-btn:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.quick-action-btn:hover .action-icon-wrapper {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}
.quick-action-btn:hover .action-icon-wrapper .action-icon {
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5), 0 0 24px rgba(255, 0, 0, 0.3), 0 0 36px rgba(255, 0, 0, 0.1);
}

.stats-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.stat-item:hover {
  background: rgba(5, 5, 5, 0.7);
  border-color: rgba(255, 0, 0, 0.3);
  transform: translateY(-2px);
}
.stat-item .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  color: #ff0000;
  flex-shrink: 0;
}
.stat-item .stat-content {
  flex: 1;
}
.stat-item .stat-content .stat-label {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-item .stat-content .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.stat-item .stat-content .stat-value .stat-subvalue {
  font-size: 14px;
  color: #666666;
  font-weight: 400;
  margin-top: 4px;
}

.keys-table-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.keys-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 96px;
  text-align: center;
}
.keys-empty-state .empty-icon {
  opacity: 0.3;
  color: #666666;
}
.keys-empty-state h3 {
  font-size: 24px;
  color: #ffffff;
}
.keys-empty-state p {
  color: #b3b3b3;
  margin-bottom: 16px;
}
.keys-empty-state .btn-primary {
  padding: 16px 32px;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 8px;
  color: #ff0000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.keys-empty-state .btn-primary:hover {
  background: rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}

.keys-table-wrapper {
  overflow-x: auto;
}

.keys-table {
  width: 100%;
  border-collapse: collapse;
}
.keys-table thead {
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}
.keys-table thead th {
  padding: 24px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.keys-table tbody tr {
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.keys-table tbody tr:hover {
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 2px rgba(255, 0, 0, 0.5), 0 0 4px rgba(255, 0, 0, 0.3), 0 0 6px rgba(255, 0, 0, 0.1);
}
.keys-table tbody tr td {
  padding: 24px;
  color: #ffffff;
}
.keys-table .product-name {
  font-weight: 600;
}
.keys-table .key-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.keys-table .key-value code {
  background: rgba(5, 5, 5, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.keys-table .key-value .btn-copy-key {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.keys-table .key-value .btn-copy-key:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}
.keys-table .status-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.keys-table .status-badge.status-active {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.4);
}
.keys-table .status-badge.status-expired {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.keys-table .status-badge.status-inactive {
  background: rgba(102, 102, 102, 0.2);
  color: #666666;
  border: 1px solid rgba(102, 102, 102, 0.4);
}
.keys-table .expiration-date {
  font-size: 14px;
}
.keys-table .expiration-date .expiration-time {
  font-size: 11px;
  color: #666666;
  margin-top: 4px;
}
.keys-table .hwid-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}
.keys-table .hwid-status.bound {
  color: #00ff00;
}
.keys-table .hwid-status.unbound {
  color: #666666;
}
.keys-table .last-used {
  font-size: 14px;
  color: #b3b3b3;
}
.keys-table .key-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.keys-table .key-actions .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.keys-table .key-actions .btn-action:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}
.keys-table .metadata-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.keys-table .metadata-badge {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.keys-table .metadata-badge.badge-platform {
  background: rgba(0, 102, 255, 0.2);
  color: #0066ff;
  border: 1px solid rgba(0, 102, 255, 0.4);
}
.keys-table .metadata-badge.badge-region {
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.4);
}
.keys-table .metadata-badge.badge-type {
  background: rgba(157, 0, 255, 0.2);
  color: #9d00ff;
  border: 1px solid rgba(157, 0, 255, 0.4);
}
.keys-table .countdown-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.keys-table .countdown-badge.countdown-expired {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.keys-table .countdown-badge.countdown-warning {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 6px rgba(255, 170, 0, 0.5), 0 0 12px rgba(255, 170, 0, 0.3), 0 0 18px rgba(255, 170, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}
.keys-table .countdown-badge.countdown-info {
  background: rgba(0, 102, 255, 0.2);
  color: #0066ff;
  border: 1px solid rgba(0, 102, 255, 0.4);
}
.keys-table .countdown-badge.countdown-ok {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.4);
}
.keys-table .countdown-badge.countdown-lifetime {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.keys-table .status-badge.status-banned {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.keys-table .status-badge.status-paused {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.4);
}
.keys-table tbody tr {
  height: 80px;
}
.keys-table tbody tr td {
  vertical-align: middle;
}

.purchases-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.purchases-error-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 96px;
  text-align: center;
}
.purchases-error-state .error-icon {
  opacity: 0.3;
  color: #ff0000;
}
.purchases-error-state h3 {
  font-size: 24px;
  color: #ffffff;
}
.purchases-error-state p {
  color: #b3b3b3;
  margin-bottom: 16px;
}

.purchases-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 96px;
  text-align: center;
}
.purchases-empty-state .empty-icon {
  opacity: 0.3;
  color: #666666;
}
.purchases-empty-state h3 {
  font-size: 24px;
  color: #ffffff;
}
.purchases-empty-state p {
  color: #b3b3b3;
  margin-bottom: 16px;
}
.purchases-empty-state .btn-primary {
  padding: 16px 32px;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 8px;
  color: #ff0000;
  font-weight: 600;
  transition: all 0.3s ease;
}
.purchases-empty-state .btn-primary:hover {
  background: rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}

.purchases-table-wrapper {
  overflow-x: auto;
}

.purchases-table {
  width: 100%;
  border-collapse: collapse;
}
.purchases-table thead {
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}
.purchases-table thead th {
  padding: 24px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.purchases-table tbody tr {
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.purchases-table tbody tr:hover {
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 2px rgba(255, 0, 0, 0.5), 0 0 4px rgba(255, 0, 0, 0.3), 0 0 6px rgba(255, 0, 0, 0.1);
}
.purchases-table tbody tr td {
  padding: 24px;
  color: #ffffff;
}
.purchases-table tbody tr td code {
  background: rgba(5, 5, 5, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.purchases-table tbody tr td .no-key {
  color: #666666;
  font-style: italic;
}
.purchases-table .status-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.purchases-table .status-badge.status-completed {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.4);
}
.purchases-table .status-badge.status-pending {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.4);
}
.purchases-table .status-badge.status-failed {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.purchases-table .status-badge.status-refunded {
  background: rgba(102, 102, 102, 0.2);
  color: #666666;
  border: 1px solid rgba(102, 102, 102, 0.4);
}
.purchases-table .btn-download-invoice {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.purchases-table .btn-download-invoice svg {
  width: 16px;
  height: 16px;
}
.purchases-table .btn-download-invoice:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}

.notifications-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.notifications-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 96px;
  text-align: center;
}
.notifications-empty-state .empty-icon {
  opacity: 0.3;
  color: #666666;
}
.notifications-empty-state h3 {
  font-size: 24px;
  color: #ffffff;
}
.notifications-empty-state p {
  color: #b3b3b3;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.notification-item {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  gap: 16px;
}
.notification-item.unread {
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 2px rgba(255, 0, 0, 0.5), 0 0 4px rgba(255, 0, 0, 0.3), 0 0 6px rgba(255, 0, 0, 0.1);
}
.notification-item.unread .notification-unread-indicator {
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}
.notification-item.read {
  opacity: 0.7;
}
.notification-item.read:hover {
  opacity: 1;
  background: rgba(5, 5, 5, 0.8);
}
.notification-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 0, 0, 0.5);
}

.notification-content {
  flex: 1;
}
.notification-content .notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 16px;
}
.notification-content .notification-header .notification-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
}
.notification-content .notification-header .notification-badge {
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.notification-content .notification-header .notification-badge.global {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.4);
}
.notification-content .notification-message {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 16px;
}
.notification-content .notification-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.notification-content .notification-footer .notification-time {
  font-size: 14px;
  color: #666666;
}
.notification-content .notification-footer .btn-mark-read {
  padding: 4px 16px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.notification-content .notification-footer .btn-mark-read:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}

.unread-badge {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 9999px;
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}

.activity-timeline-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.activity-empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 96px;
  text-align: center;
}
.activity-empty-state .empty-icon {
  opacity: 0.3;
  color: #666666;
}
.activity-empty-state h3 {
  font-size: 24px;
  color: #ffffff;
}
.activity-empty-state p {
  color: #b3b3b3;
}

.activity-timeline {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-day {
  position: relative;
}
.timeline-day .timeline-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}
.timeline-day .timeline-day-header .day-date {
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.timeline-day .timeline-day-header .day-count {
  font-size: 14px;
  color: #b3b3b3;
  padding: 4px 16px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 9999px;
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 32px;
}
.timeline-events::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.2), transparent);
}

.timeline-event {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 24px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.timeline-event::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border: 2px solid rgba(5, 5, 5, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5), 0 0 24px rgba(255, 0, 0, 0.3), 0 0 36px rgba(255, 0, 0, 0.1);
}
.timeline-event:hover {
  background: rgba(5, 5, 5, 0.8);
  border-color: rgba(255, 0, 0, 0.4);
  transform: translateX(4px);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.timeline-event .event-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
}
.timeline-event .event-content {
  flex: 1;
}
.timeline-event .event-content .event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 16px;
}
.timeline-event .event-content .event-header .event-type {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}
.timeline-event .event-content .event-header .event-time {
  font-size: 14px;
  color: #666666;
}
.timeline-event .event-content .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.timeline-event .event-content .event-meta .meta-item {
  padding: 4px 8px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 14px;
  color: #b3b3b3;
}
.timeline-event .event-content .event-ip {
  font-size: 14px;
  color: #666666;
}
.timeline-event .event-content .event-ip code {
  background: rgba(5, 5, 5, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: #ffffff;
}

.wallet-balance-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 48px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wallet-balance-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
.wallet-balance-card .balance-header {
  margin-bottom: 24px;
}
.wallet-balance-card .balance-header h3 {
  font-size: 18px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wallet-balance-card .balance-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.wallet-balance-card .balance-amount .currency {
  font-size: 32px;
  color: #b3b3b3;
  font-weight: 500;
}
.wallet-balance-card .balance-amount .amount {
  font-size: 64px;
  font-weight: 900;
  color: #ff0000;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.3);
  font-family: "Orbitron", sans-serif;
}
.wallet-balance-card .balance-info p {
  color: #666666;
  font-size: 14px;
}

.wallet-transactions-panel {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.wallet-transactions-panel .panel-header {
  padding: 32px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.wallet-transactions-panel .panel-header .panel-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.transactions-empty {
  padding: 96px;
  text-align: center;
}
.transactions-empty p {
  color: #b3b3b3;
}

.transactions-table {
  overflow-x: auto;
}
.transactions-table table {
  width: 100%;
  border-collapse: collapse;
}
.transactions-table table thead {
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}
.transactions-table table thead th {
  padding: 24px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.transactions-table table tbody tr {
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.transactions-table table tbody tr:hover {
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 2px rgba(255, 0, 0, 0.5), 0 0 4px rgba(255, 0, 0, 0.3), 0 0 6px rgba(255, 0, 0, 0.1);
}
.transactions-table table tbody tr td {
  padding: 24px;
  color: #ffffff;
}
.transactions-table table .transaction-type {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.transactions-table table .transaction-type.type-credit, .transactions-table table .transaction-type.type-purchase, .transactions-table table .transaction-type.type-bonus {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.4);
}
.transactions-table table .transaction-type.type-debit, .transactions-table table .transaction-type.type-payment, .transactions-table table .transaction-type.type-refund {
  background: rgba(255, 0, 0, 0.2);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.transactions-table table .transaction-type.type-transfer {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.4);
}
.transactions-table table .transaction-amount {
  font-size: 18px;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
}
.transactions-table table .transaction-amount.credit {
  color: #00ff00;
  text-shadow: 0 0 3px rgba(0, 255, 0, 0.8), 0 0 6px rgba(0, 255, 0, 0.5), 0 0 9px rgba(0, 255, 0, 0.3);
}
.transactions-table table .transaction-amount.debit {
  color: #ff0000;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}

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

.modal-content {
  background: rgba(5, 5, 5, 0.98);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.modal-header .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.modal-header .modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-header .modal-close:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}

.modal-body {
  padding: 32px;
}

.key-insights-modal .insights-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
}
.key-insights-modal .insights-loading .loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 0, 0, 0.2);
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}
.key-insights-modal .log-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  margin-bottom: 4px;
  background: rgba(5, 5, 5, 0.5);
  border-radius: 4px;
  font-size: 14px;
}
.key-insights-modal .log-item .log-action {
  color: #ffffff;
  font-weight: 500;
}
.key-insights-modal .log-item .log-time {
  color: #666666;
}
.key-insights-modal .ip-item {
  padding: 4px 8px;
  margin-bottom: 4px;
  background: rgba(5, 5, 5, 0.5);
  border-radius: 4px;
  font-size: 14px;
  color: #ffffff;
  font-family: "Courier New", monospace;
}
.key-insights-modal .error-message {
  padding: 24px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  color: #ff0000;
  text-align: center;
}
.key-insights-modal .insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.key-insights-modal .insights-grid .insight-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.key-insights-modal .insights-grid .insight-card .insight-label {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.key-insights-modal .insights-grid .insight-card .insight-value {
  font-size: 32px;
  font-weight: 700;
  color: #ff0000;
}
.key-insights-modal .insights-grid .insight-card .insight-logs,
.key-insights-modal .insights-grid .insight-card .insight-ips {
  font-size: 14px;
  color: #b3b3b3;
}
.key-insights-modal .insights-grid .insight-card .insight-logs .no-logs,
.key-insights-modal .insights-grid .insight-card .insight-logs .no-ips,
.key-insights-modal .insights-grid .insight-card .insight-ips .no-logs,
.key-insights-modal .insights-grid .insight-card .insight-ips .no-ips {
  color: #666666;
  font-style: italic;
}
.key-insights-modal .insights-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 8px;
}
.key-insights-modal .insights-alert .alert-icon {
  font-size: 32px;
}
.key-insights-modal .insights-alert .alert-content strong {
  display: block;
  color: #ffaa00;
  margin-bottom: 4px;
}
.key-insights-modal .insights-alert .alert-content p {
  color: #b3b3b3;
  font-size: 14px;
}

.custom-confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 410;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.custom-confirm-modal.active {
  opacity: 1;
  visibility: visible;
}
.custom-confirm-modal .modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}
.custom-confirm-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 500px;
  background: rgba(5, 5, 5, 0.98);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.custom-confirm-modal.active .custom-confirm-modal .modal-dialog {
  transform: translate(-50%, -50%) scale(1);
}
.custom-confirm-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  background: rgba(5, 5, 5, 0.8);
}
.custom-confirm-modal .modal-header .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
}
.custom-confirm-modal .modal-header .modal-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-confirm-modal .modal-header .modal-close-btn:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.custom-confirm-modal .modal-body {
  padding: 48px;
  text-align: center;
}
.custom-confirm-modal .modal-body .modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(255, 170, 0, 0.1);
  border: 2px solid rgba(255, 170, 0, 0.3);
  border-radius: 50%;
  color: #ffaa00;
  box-shadow: 0 0 6px rgba(255, 170, 0, 0.5), 0 0 12px rgba(255, 170, 0, 0.3), 0 0 18px rgba(255, 170, 0, 0.1);
}
.custom-confirm-modal .modal-body .modal-message {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}
.custom-confirm-modal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  background: rgba(5, 5, 5, 0.5);
}
.custom-confirm-modal .modal-footer .btn-modal {
  flex: 1;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.custom-confirm-modal .modal-footer .btn-modal.btn-modal-cancel {
  background: rgba(102, 102, 102, 0.1);
  border: 1px solid rgba(102, 102, 102, 0.3);
  color: #b3b3b3;
}
.custom-confirm-modal .modal-footer .btn-modal.btn-modal-cancel:hover {
  background: rgba(102, 102, 102, 0.2);
  border-color: rgba(102, 102, 102, 0.5);
  color: #ffffff;
}
.custom-confirm-modal .modal-footer .btn-modal.btn-modal-confirm {
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.custom-confirm-modal .modal-footer .btn-modal.btn-modal-confirm:hover {
  background: rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}

.custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 420;
  min-width: 300px;
  max-width: 500px;
  background: rgba(5, 5, 5, 0.98);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.3);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}
.custom-toast.active {
  transform: translateX(0);
  opacity: 1;
}
.custom-toast .toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
}
.custom-toast .toast-icon svg {
  width: 20px;
  height: 20px;
}
.custom-toast .toast-message {
  flex: 1;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}
.custom-toast .toast-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.custom-toast .toast-close:hover {
  color: #ffffff;
}
.custom-toast.custom-toast-success {
  border-color: rgba(0, 255, 0, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 0, 0.3);
}
.custom-toast.custom-toast-success .toast-icon {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}
.custom-toast.custom-toast-error {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.3);
}
.custom-toast.custom-toast-error .toast-icon {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}
@media (max-width: 768px) {
  .custom-toast {
    top: 10px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
    transform: translateY(-100px);
  }
  .custom-toast.active {
    transform: translateY(0);
  }
}

.loading-spinner-small {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-top-color: #ff0000;
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
  display: inline-block;
}

.profile-overview-section {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 48px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .profile-overview-section {
    flex-direction: row;
    align-items: flex-start;
  }
}

.profile-avatar-container {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.1);
  border: 3px solid rgba(255, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.profile-avatar .avatar-letter {
  font-size: 64px;
  font-weight: 900;
  color: #ff0000;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.3);
  font-family: "Orbitron", sans-serif;
}
.profile-avatar .avatar-border {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff0000;
  border-right-color: #ff0000;
  animation: rotate 3s linear infinite;
  pointer-events: none;
}

.btn-change-avatar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.95);
  border: 2px solid rgba(255, 0, 0, 0.5);
  border-radius: 50%;
  color: #ff0000;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.btn-change-avatar:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.8);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5), 0 0 24px rgba(255, 0, 0, 0.3), 0 0 36px rgba(255, 0, 0, 0.1);
  transform: scale(1.1);
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  flex: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-info-grid {
    width: auto;
  }
}

.info-item .info-label {
  font-size: 14px;
  color: #b3b3b3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.info-item .info-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
}

.profile-section {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 48px;
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
.section-header .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.section-header .section-subtitle {
  font-size: 14px;
  color: #b3b3b3;
}

.profile-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.profile-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.profile-form .form-group label .required {
  color: #ff0000;
}
.profile-form .form-group .form-input {
  padding: 16px;
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.profile-form .form-group .form-input:focus {
  outline: none;
  border-color: rgba(255, 0, 0, 0.5);
  background: rgba(5, 5, 5, 0.8);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5), 0 0 8px rgba(255, 0, 0, 0.3), 0 0 12px rgba(255, 0, 0, 0.1);
}
.profile-form .form-group .form-input::placeholder {
  color: #666666;
}
.profile-form .form-group .form-hint {
  font-size: 11px;
  color: #666666;
  font-style: italic;
}
.profile-form .form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 32px;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 8px;
  color: #ff0000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.btn-primary:hover:not(:disabled) {
  background: rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary .loading-spinner-small {
  display: inline-block;
}

.btn-secondary {
  padding: 16px 32px;
  background: rgba(102, 102, 102, 0.1);
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 8px;
  color: #b3b3b3;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(102, 102, 102, 0.2);
  border-color: rgba(102, 102, 102, 0.5);
  color: #ffffff;
}

.email-verification-section {
  margin-top: 32px;
  padding: 32px;
  background: rgba(255, 170, 0, 0.05);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 8px;
}
.email-verification-section .verification-header {
  margin-bottom: 24px;
}
.email-verification-section .verification-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffaa00;
  margin-bottom: 4px;
}
.email-verification-section .verification-header p {
  font-size: 14px;
  color: #b3b3b3;
}

.preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.preference-group .preference-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.checkbox-label:hover {
  background: rgba(255, 0, 0, 0.05);
}
.checkbox-label input[type=checkbox] {
  display: none;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-label .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.checkbox-label .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #ff0000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.3s ease;
}
.checkbox-label .checkbox-text {
  color: #ffffff;
  font-size: 14px;
}

.avatar-upload-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  text-align: center;
}

.avatar-preview-container {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.avatar-preview {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.6);
  border: 3px solid rgba(255, 0, 0, 0.3);
  overflow: hidden;
}
.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-preview .avatar-placeholder {
  color: #666666;
  font-size: 14px;
}

.upload-hint {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

@media (max-width: 768px) {
  .profile-overview-section {
    padding: 24px;
  }
  .profile-section {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .preferences-grid {
    grid-template-columns: 1fr;
  }
}
html {
  scroll-behavior: smooth;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes glitch {
  0%, 100% {
    transform: translate(0);
  }
  33% {
    transform: translate(-2px, 2px);
  }
  66% {
    transform: translate(2px, -2px);
  }
}
@keyframes neonFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.9;
  }
}
@keyframes radarScan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

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

.highlight {
  color: #ff0000;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.3);
}

.highlight-text {
  background: linear-gradient(90deg, #ff0000, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ambient-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.wireframe-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 10s ease-in-out infinite;
}

.fog-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.particles-container .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  padding: 24px 0;
  z-index: 100;
}
.main-nav .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav .logo {
  display: flex;
  flex-direction: column;
}
.main-nav .logo .logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 3px rgba(255, 0, 0, 0.8), 0 0 6px rgba(255, 0, 0, 0.5), 0 0 9px rgba(255, 0, 0, 0.3);
}
.main-nav .logo .logo-tagline {
  font-size: 10px;
  letter-spacing: 4px;
  color: #b3b3b3;
  margin-top: -4px;
}
.main-nav .nav-links {
  display: flex;
  gap: 32px;
}
.main-nav .nav-links .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #b3b3b3;
  position: relative;
  padding: 8px 0;
}
.main-nav .nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}
.main-nav .nav-links .nav-link:hover {
  color: #ff0000;
}
.main-nav .nav-links .nav-link:hover::after {
  width: 100%;
}
.main-nav .nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.main-nav .nav-actions .nav-cta {
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.main-nav .nav-actions .nav-cta:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
  transform: translateY(-1px);
}
.main-nav .language-switcher {
  display: flex;
  gap: 8px;
}
.main-nav .language-switcher .lang-btn {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #b3b3b3;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.main-nav .language-switcher .lang-btn:hover, .main-nav .language-switcher .lang-btn.active {
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.3), 0 0 18px rgba(255, 0, 0, 0.1);
}
.main-nav .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.main-nav .mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  display: block;
}
.main-nav .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-nav .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.main-nav .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media (max-width: 768px) {
  .main-nav {
    padding: 16px 0;
  }
  .main-nav .nav-wrapper {
    position: relative;
  }
  .main-nav .logo .logo-text {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .main-nav .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .main-nav .nav-links.active {
    display: flex;
  }
  .main-nav .nav-links .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 16px 0;
  }
  .main-nav .nav-actions {
    display: none;
  }
  .main-nav .nav-actions.active {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
  }
  .main-nav .nav-actions .nav-cta {
    padding: 4px 8px;
    font-size: 12px;
  }
  .main-nav .mobile-menu-toggle {
    display: flex;
  }
}

.btn-primary, .btn-secondary, .btn-hero {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-modern {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
  cursor: pointer;
}
.btn-modern:hover {
  border-color: #00eaff;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.5019607843);
  transform: translateY(-2px);
}

.btn-primary, .btn-hero.primary {
  background: #ff0000;
  color: #ffffff;
  border: 2px solid #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.btn-primary:hover, .btn-hero.primary:hover {
  background: transparent;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.3), 0 0 60px rgba(255, 0, 0, 0.1);
}
.btn-primary.nav-cta, .btn-hero.primary.nav-cta {
  padding: 4px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-radius: 4px !important;
  background: rgba(17, 17, 17, 0.6) !important;
  border: 1px solid rgba(255, 0, 0, 0.3) !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  box-shadow: none !important;
}
.btn-primary.nav-cta:hover, .btn-hero.primary.nav-cta:hover {
  background: rgba(255, 0, 0, 0.1) !important;
  border-color: rgba(255, 0, 0, 0.5) !important;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3) !important;
  transform: translateY(-1px) !important;
}

.btn-secondary, .btn-hero.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00ffff;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.5), 0 0 12px rgba(0, 255, 255, 0.3), 0 0 18px rgba(0, 255, 255, 0.1);
}
.btn-secondary:hover, .btn-hero.secondary:hover {
  background: #00ffff;
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.5), 0 0 32px rgba(0, 255, 255, 0.3), 0 0 48px rgba(0, 255, 255, 0.1);
}
.btn-secondary.telegram, .btn-hero.secondary.telegram {
  border-color: #0088cc;
}
.btn-secondary.telegram:hover, .btn-hero.secondary.telegram:hover {
  background: #0088cc;
  box-shadow: 0 0 16px rgba(0, 136, 204, 0.5), 0 0 32px rgba(0, 136, 204, 0.3), 0 0 48px rgba(0, 136, 204, 0.1);
}
.btn-secondary.discord, .btn-hero.secondary.discord {
  border-color: #5865F2;
}
.btn-secondary.discord:hover, .btn-hero.secondary.discord:hover {
  background: #5865F2;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.5), 0 0 32px rgba(88, 101, 242, 0.3), 0 0 48px rgba(88, 101, 242, 0.1);
}

.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
.hero-banner .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner .hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 2;
}
.hero-banner .hero-characters-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  height: 80%;
  z-index: 3;
}
.hero-banner .hero-characters-left .hero-character {
  position: absolute;
  height: 100%;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.3s ease-out;
}
.hero-banner .hero-characters-left .hero-character.myers {
  left: 15%;
  height: 90%;
  z-index: 3;
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}
.hero-banner .hero-characters-left .hero-character.doctor {
  left: 5%;
  top: 5%;
  height: 75%;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 0, 0, 0.3));
}
.hero-banner .hero-characters-left .hero-character.huntress {
  left: 25%;
  top: 15%;
  height: 70%;
  z-index: 4;
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}
.hero-banner .hero-characters-left .dbd-effects {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-banner .hero-characters-left .dbd-effects .esp-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  left: 10%;
  top: 20%;
  border: 2px solid rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5), 0 0 24px rgba(255, 0, 0, 0.3), 0 0 36px rgba(255, 0, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}
.hero-banner .hero-characters-left .dbd-effects .red-mist {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: radial-gradient(ellipse at bottom, rgba(255, 0, 0, 0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.hero-banner .hero-characters-left .dbd-effects .fog-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.hero-banner .hero-characters-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  height: 80%;
  z-index: 3;
}
.hero-banner .hero-characters-right .hero-character {
  position: absolute;
  height: 100%;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.3s ease-out;
}
.hero-banner .hero-characters-right .hero-character.bangalore {
  right: 15%;
  height: 90%;
  z-index: 3;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
}
.hero-banner .hero-characters-right .hero-character.wraith {
  right: 5%;
  top: -5%;
  height: 75%;
  z-index: 2;
  filter: drop-shadow(0 0 25px rgba(150, 0, 255, 0.6)) drop-shadow(0 0 40px rgba(0, 150, 255, 0.3));
}
.hero-banner .hero-characters-right .hero-character.bloodhound {
  right: 25%;
  top: 20%;
  height: 70%;
  z-index: 4;
  filter: drop-shadow(0 0 20px rgba(255, 150, 0, 0.5));
}
.hero-banner .hero-characters-right .hero-character.marvel-main {
  right: 15%;
  height: 90%;
  z-index: 3;
  filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 0, 0, 0.4));
}
.hero-banner .hero-characters-right .hero-character.marvel-secondary {
  right: 5%;
  top: -5%;
  height: 75%;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 50px rgba(255, 165, 0, 0.5));
}
.hero-banner .hero-characters-right .apex-effects {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-banner .hero-characters-right .apex-effects .hologram-hud {
  position: absolute;
  width: 250px;
  height: 400px;
  right: 15%;
  top: 25%;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-left: none;
  border-right: 4px solid rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5), 0 0 16px rgba(0, 255, 255, 0.3), 0 0 24px rgba(0, 255, 255, 0.1);
}
.hero-banner .hero-characters-right .apex-effects .hologram-hud::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 40px;
  height: 2px;
  background: rgba(0, 255, 255, 0.6);
}
.hero-banner .hero-characters-right .apex-effects .hologram-hud::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 40px;
  height: 2px;
  background: rgba(0, 255, 255, 0.6);
}
.hero-banner .hero-characters-right .apex-effects .radar-scan {
  position: absolute;
  width: 150px;
  height: 150px;
  right: 5%;
  top: 10%;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.5), 0 0 12px rgba(0, 255, 255, 0.3), 0 0 18px rgba(0, 255, 255, 0.1);
}
.hero-banner .hero-characters-right .apex-effects .radar-scan::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 255, 255, 0.8), transparent);
  transform-origin: bottom center;
  animation: radarScan 3s linear infinite;
}
.hero-banner .hero-characters-right .apex-effects .neon-accents {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 60%);
  animation: pulse 2s ease-in-out infinite;
}
.hero-banner .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 48px;
}
.hero-banner .hero-content .aimbot-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
}
.hero-banner .hero-content .aimbot-reticle::before, .hero-banner .hero-content .aimbot-reticle::after {
  content: "";
  position: absolute;
  background: rgba(255, 0, 0, 0.5);
}
.hero-banner .hero-content .aimbot-reticle::before {
  top: 50%;
  left: -20px;
  right: -20px;
  height: 2px;
}
.hero-banner .hero-content .aimbot-reticle::after {
  left: 50%;
  top: -20px;
  bottom: -20px;
  width: 2px;
}
.hero-banner .hero-content .hero-terminal-line {
  font-family: "Courier New", monospace;
  font-size: 18px;
  margin-bottom: 32px;
  text-align: left;
  color: #00ff00;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-banner .hero-content .hero-terminal-line .hero-terminal-prompt {
  color: #ff0000;
  font-weight: 700;
}
.hero-banner .hero-content .hero-terminal-line .hero-terminal-text {
  color: #ffffff;
}
.hero-banner .hero-content .hero-terminal-line .hero-terminal-success {
  color: #00ff00;
}
.hero-banner .hero-content .hero-terminal-line .hero-terminal-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: #ff0000;
  font-weight: 700;
}
.hero-banner .hero-content .hero-content-wrapper {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-banner .hero-content .hero-content-wrapper.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.hero-banner .hero-content .hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-banner .hero-content .hero-title .title-line {
  display: block;
  animation: slideInUp 0.6s ease-out 0s both;
}
.hero-banner .hero-content .hero-title .title-line:last-child {
  animation: slideInUp 0.6s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .hero-banner .hero-content .hero-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  .hero-banner .hero-content .hero-title .title-line {
    font-size: 24px;
  }
}
.hero-banner .hero-content .hero-subtitle {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #b3b3b3;
  animation: slideInUp 0.6s ease-out 0.4s both;
}
@media (max-width: 768px) {
  .hero-banner .hero-content .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.hero-banner .hero-content .hero-description {
  font-size: 18px;
  margin-bottom: 48px;
  color: #b3b3b3;
  animation: slideInUp 0.6s ease-out 0.6s both;
}
.hero-banner .hero-content .hero-description .feature-tag {
  color: #00ffff;
}
.hero-banner .hero-content .hero-description .separator {
  margin: 0 16px;
  color: #ff0000;
}
.hero-banner .hero-content .hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.6s ease-out 0.8s both;
}
.hero-banner .hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: float 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-banner .hero-scroll-indicator {
    display: none;
  }
}
.hero-banner .hero-scroll-indicator .scroll-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b3b3b3;
}
.hero-banner .hero-scroll-indicator .scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid #ff0000;
  border-radius: 9999px;
  position: relative;
}
.hero-banner .hero-scroll-indicator .scroll-arrow::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #ff0000;
  border-radius: 9999px;
  animation: float 2s ease-in-out infinite;
}

.parallax-hero {
  will-change: transform;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.section-header .section-subtitle {
  font-size: 18px;
  color: #b3b3b3;
}

.page-title {
  font-family: "Orbitron", sans-serif;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 16px;
  text-align: center;
}

.page-subtitle {
  font-size: 24px;
  color: #b3b3b3;
  text-align: center;
  margin-bottom: 48px;
}

.products-carousel {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.5) 50%, transparent 100%);
}
.products-carousel .products-slider-wrapper {
  overflow: hidden;
  position: relative;
}
.products-carousel .products-slider-wrapper::before, .products-carousel .products-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.products-carousel .products-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}
.products-carousel .products-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}
.products-carousel .products-slider {
  display: flex;
  flex-direction: row;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  position: relative;
}
.products-carousel .products-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.products-carousel .product-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  flex: 0 0 280px;
  min-width: 280px;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 2px solid #000000;
  position: relative;
  overflow: hidden;
  opacity: 0.5;
}
.products-carousel .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff0000;
  z-index: 1;
}
.products-carousel .product-card.center-card {
  opacity: 1;
}
.products-carousel .product-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
  opacity: 1;
  border-color: rgba(255, 0, 0, 0.5);
}
.products-carousel .product-card:hover::before {
  background: #ff3333;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.products-carousel .product-card:hover .product-overlay {
  opacity: 1;
}
.products-carousel .product-card .product-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.products-carousel .product-card .product-image img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}
.products-carousel .product-card .product-image .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-carousel .product-card .product-image .product-overlay .esp-preview {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 0, 0, 0.6);
  box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.2), 0 0 20px rgba(255, 0, 0, 0.4);
  position: absolute;
  pointer-events: none;
  animation: pulse 2s ease-in-out infinite;
}
.products-carousel .product-card .product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.products-carousel .product-card .product-info .product-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.products-carousel .product-card .product-info .product-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #b3b3b3;
  margin-bottom: 8px;
  line-height: 1.5;
  flex-shrink: 0;
  min-height: 48px;
}
.products-carousel .product-card .product-info .product-features {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  flex-shrink: 0;
  height: 36px;
  padding: 2px 0;
  margin-top: 0;
}
.products-carousel .product-card .product-info .product-features .feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #ff1a1a;
  background: transparent;
  border: 1.5px solid #ff1a1a;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 26, 26, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.products-carousel .product-card .product-info .product-features .feature-badge:hover {
  background: rgba(255, 26, 26, 0.1);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
  transform: translateY(-1px);
}
.products-carousel .product-card .product-info .product-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
  flex-shrink: 0;
}
.products-carousel .product-card .product-info .product-footer .product-price {
  font-size: 32px;
  font-weight: 700;
  color: #ff0000;
}
.products-carousel .product-card .product-info .product-footer .product-price .price-period {
  font-size: 16px;
  color: #b3b3b3;
}
.products-carousel .product-card .product-info .product-footer .btn-product {
  display: block;
  width: 100%;
  padding: 12px 30px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
  cursor: pointer;
  text-align: center;
}
.products-carousel .product-card .product-info .product-footer .btn-product:hover {
  border-color: #00eaff;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.5019607843);
  transform: translateY(-2px);
}
.products-carousel .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.products-carousel .slider-controls .slider-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #ff0000;
  border-radius: 50%;
  color: #ff0000;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-carousel .slider-controls .slider-btn:hover {
  background: #ff0000;
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5), 0 0 32px rgba(255, 0, 0, 0.3), 0 0 48px rgba(255, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #111111;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.feature-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1);
}
.feature-card:hover .feature-icon svg {
  transform: scale(1.1) rotate(5deg);
}
.feature-card .feature-icon {
  margin-bottom: 24px;
}
.feature-card .feature-icon svg {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  color: #ff0000;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.feature-card .feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-card .feature-description {
  color: #b3b3b3;
  line-height: 1.8;
}

/*# sourceMappingURL=style.css.map */
