:root {
  --side-accent: #00f2fe;
  --side-purple: #9146ff;
  --side-bg: rgba(7, 4, 14, 0.7);
}

.side-gw-panel {
  width: 100%;
  background: var(--side-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.side-gw-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--side-accent), transparent);
}

.side-gw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.side-gw-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-gw-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--side-accent);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.side-gw-icon svg {
  width: 20px;
  height: 20px;
}

.side-gw-kicker {
  display: block;
  font-family: var(--font-tech);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
}

.side-gw-title {
  font-family: var(--font-tech);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

.side-gw-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.side-gw-pulse {
  width: 6px;
  height: 6px;
  background: #ff3b5c;
  border-radius: 50%;
  animation: pulseLive 1.5s infinite;
}

.side-gw-scroll-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-gw-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.side-gw-card:hover {
  background: rgba(145, 70, 255, 0.08);
  border-color: rgba(145, 70, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.side-gw-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.side-gw-info {
  flex: 1;
  min-width: 0;
}

.side-gw-item-name {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-gw-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-gw-item-val {
  color: var(--side-accent);
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 12px;
}

.side-gw-item-date {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
}

.side-gw-footer {
  margin-top: 24px;
}

.side-gw-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: linear-gradient(90deg, var(--side-purple), #6322c1);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-tech);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  overflow: hidden;
  transition: 0.3s;
}

.side-gw-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(145, 70, 255, 0.5);
}

.side-gw-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.side-gw-btn:hover::before {
  left: 100%;
}

.side-gw-empty {
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-tech);
  font-size: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

@media (max-width: 1500px) {
  .side-gw-panel {
    display: none !important;
  }
}