* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #8470FF 0%, #8B008B 100%);
  min-height: 100vh;
  color: #F0F8FF;
  line-height: 1.6;
}

.pgdc-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 20px;
  background: #1B263B;
  min-height: 100vh;
}

.pgdc-header {
  background: linear-gradient(135deg, #8470FF 0%, #8B008B 100%);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(132, 112, 255, 0.3);
}

.pgdc-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}

.pgdc-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #F0F8FF;
}

.pgdc-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 10px;
}

.pgdc-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #F0F8FF;
}

.pgdc-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pgdc-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pgdc-btn-primary {
  background: #FFD700;
  color: #1B263B;
}

.pgdc-btn-primary:hover {
  background: #F0F8FF;
  color: #8470FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.pgdc-btn-secondary {
  background: rgba(240, 248, 255, 0.2);
  color: #F0F8FF;
  border: 1px solid #F0F8FF;
}

.pgdc-btn-secondary:hover {
  background: #F0F8FF;
  color: #8470FF;
}

.pgdc-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F0F8FF;
  font-size: 24px;
  cursor: pointer;
}

.pgdc-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #8470FF 0%, #8B008B 100%);
  transition: left 0.3s ease;
  z-index: 200;
  overflow-y: auto;
}

.pgdc-mobile-menu.pgdc-active {
  left: 0;
}

.pgdc-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(240, 248, 255, 0.2);
}

.pgdc-menu-close {
  background: none;
  border: none;
  color: #F0F8FF;
  font-size: 24px;
  cursor: pointer;
}

.pgdc-menu-nav {
  padding: 20px 0;
}

.pgdc-menu-nav a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #F0F8FF;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.pgdc-menu-nav a:hover {
  background: rgba(255, 215, 0, 0.15);
}

.pgdc-menu-nav a i {
  width: 24px;
  margin-right: 12px;
}

.pgdc-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 150;
}

.pgdc-menu-overlay.pgdc-active {
  opacity: 1;
  visibility: visible;
}

.pgdc-page-title {
  font-size: 28px;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(132, 112, 255, 0.15) 0%, rgba(139, 0, 139, 0.15) 100%);
  border-radius: 12px;
}

.pgdc-section {
  margin-bottom: 25px;
}

.pgdc-card {
  background: rgba(27, 38, 59, 0.6);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(132, 112, 255, 0.15);
  border: 1px solid rgba(132, 112, 255, 0.2);
  transition: all 0.3s ease;
}

.pgdc-card:hover {
  box-shadow: 0 8px 25px rgba(132, 112, 255, 0.25);
  transform: translateY(-4px);
}

.pgdc-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.pgdc-section-title:before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #FFD700 0%, #8470FF 100%);
  margin-right: 12px;
  border-radius: 2px;
}

.pgdc-content {
  color: #ADB5BD;
  line-height: 1.8;
  font-size: 15px;
}

.pgdc-content p {
  margin-bottom: 12px;
}

.pgdc-content strong {
  color: #FFD700;
  font-weight: 600;
}

.pgdc-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.pgdc-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.pgdc-game-item:hover {
  transform: scale(1.05);
}

.pgdc-game-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(132, 112, 255, 0.2);
}

.pgdc-game-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #F0F8FF;
  font-weight: 500;
}

.pgdc-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.pgdc-feature-item {
  background: linear-gradient(135deg, rgba(132, 112, 255, 0.08) 0%, rgba(139, 0, 139, 0.08) 100%);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(132, 112, 255, 0.15);
}

.pgdc-feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #FFD700 0%, #8470FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B263B;
  font-size: 24px;
}

.pgdc-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 5px;
}

.pgdc-feature-desc {
  font-size: 12px;
  color: #ADB5BD;
  line-height: 1.5;
}

.pgdc-hero-section {
  background: linear-gradient(135deg, #8470FF 0%, #8B008B 100%);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  color: #F0F8FF;
  margin-bottom: 25px;
}

.pgdc-hero-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pgdc-hero-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.pgdc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.pgdc-stat-item {
  background: rgba(255, 215, 0, 0.15);
  padding: 15px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.pgdc-stat-value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #FFD700;
}

.pgdc-stat-label {
  font-size: 12px;
  opacity: 0.9;
}

.pgdc-footer {
  background: #1B263B;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(132, 112, 255, 0.2);
}

.pgdc-footer-content {
  max-width: 430px;
  margin: 0 auto;
}

.pgdc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.pgdc-footer-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.pgdc-footer-link:hover {
  color: #F0F8FF;
}

.pgdc-copyright {
  text-align: center;
  color: #ADB5BD;
  font-size: 13px;
}

.pgdc-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1B263B;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  border-top: 1px solid rgba(132, 112, 255, 0.2);
}

.pgdc-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ADB5BD;
  font-size: 11px;
  transition: all 0.3s ease;
  min-width: 60px;
}

.pgdc-bottom-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.pgdc-bottom-nav-item.pgdc-active {
  color: #FFD700;
}

.pgdc-bottom-nav-item:hover {
  color: #8470FF;
}

.pgdc-list {
  list-style: none;
  padding: 0;
}

.pgdc-list-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(132, 112, 255, 0.1);
}

.pgdc-list-item:last-child {
  border-bottom: none;
}

.pgdc-list-item strong {
  color: #FFD700;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  .pgdc-header-actions .pgdc-btn {
    display: none;
  }

  .pgdc-menu-toggle {
    display: block;
  }

  .pgdc-game-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pgdc-feature-grid {
    grid-template-columns: 1fr;
  }
}
