/* Cyberpunk Character Creator Styles */
:root {
  --cp-primary: #00c3ff;
  --cp-secondary: #ff174e;
  --cp-tertiary: #00ff9e;
  --cp-bg-dark: #0f1420;
  --cp-text: #ffffff;
  --cp-text-muted: rgba(255, 255, 255, 0.7);
  --cp-border: rgba(0, 195, 255, 0.3);
  --cp-glow: rgba(0, 195, 255, 0.5);
}

/* Character Creator Section */
#character-creator-section {
  margin: 50px 0;
  position: relative;
  display: block;
  clear: both;
  padding: 30px 0;
  background-color: rgba(15, 20, 32, 0.3);
  border-top: 1px solid rgba(0, 195, 255, 0.2);
  border-bottom: 1px solid rgba(0, 195, 255, 0.2);
}

/* Toggle Button */
#toggle-character-creator {
  margin-bottom: 30px;
  font-size: 18px;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, var(--cp-secondary), var(--cp-primary));
  color: var(--cp-text);
  border-radius: 30px;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
  position: relative;
  z-index: 5;
  cursor: pointer;
  border: none;
}

#toggle-character-creator:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 195, 255, 0.5);
}

#toggle-character-creator.active {
  background: linear-gradient(90deg, var(--cp-secondary), var(--cp-tertiary));
}

/* Slide Down Container */
.character-creator-slide {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease-in-out;
  background-color: var(--cp-bg-dark);
  border: 1px solid var(--cp-primary);
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.3);
  position: relative;
  padding: 0;
}

.character-creator-slide.open {
  max-height: 1200px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  margin-top: 30px;
  transition: all 0.6s ease-in-out;
  padding: 20px;
}

/* Creator container */
.creator-container {
  width: 100%;
  height: 800px;
  background-color: var(--cp-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header */
.creator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.15) 0%, rgba(255, 23, 78, 0.15) 100%);
  border-bottom: 1px solid var(--cp-primary);
}

.creator-title {
  font-size: 28px;
  color: var(--cp-primary);
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 195, 255, 0.8);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.creator-subtitle {
  font-size: 16px;
  color: var(--cp-text);
  margin: 8px 0 0;
  opacity: 0.8;
  font-family: 'VT323', monospace;
}

.close-btn {
  background: none;
  border: 1px solid rgba(255, 23, 78, 0.4);
  color: var(--cp-text);
  font-size: 28px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 23, 78, 0.2);
  border-color: rgba(255, 23, 78, 0.8);
  transform: scale(1.1);
}

/* Progress bar */
.progress-bar {
  height: 6px;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cp-secondary), var(--cp-primary), var(--cp-tertiary));
  width: 0;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 4px;
}

.progress-text {
  position: absolute;
  right: 10px;
  top: -20px;
  font-size: 12px;
  color: var(--cp-text);
}

/* Main content */
.creator-content {
  display: flex;
  flex: 1;
  overflow: hidden;
  height: 100%;
}

/* Character Notebook Sidebar */
.character-notebook {
  width: 280px;
  background: linear-gradient(135deg, rgba(15, 20, 32, 0.95), rgba(25, 30, 45, 0.95));
  border-right: 1px solid rgba(0, 195, 255, 0.3);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.notebook-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 195, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(255, 23, 78, 0.1));
}

.notebook-header h4 {
  color: var(--cp-primary);
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notebook-status {
  color: var(--cp-tertiary);
  font-size: 0.8rem;
  font-family: 'VT323', monospace;
  opacity: 0.8;
}

.notebook-content {
  flex: 1;
  padding: 15px;
}

.notebook-section {
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 195, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
}

.notebook-section h5 {
  color: var(--cp-primary);
  font-size: 0.9rem;
  margin: 0 0 12px 0;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.note-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 195, 255, 0.1);
}

.note-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
}

.note-value {
  color: var(--cp-text);
  font-size: 0.8rem;
  font-family: 'VT323', monospace;
  text-align: right;
  max-width: 120px;
  word-wrap: break-word;
}

.notebook-placeholder {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Steps section */
.creator-steps {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
}

/* City Selection Styles */
.city-selection-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.city-selection-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.city-selection-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 195, 255, 0.5);
}

.city-selection-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.city-selection-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 800px;
  width: 100%;
}

.city-option {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.city-option:hover {
  transform: translateY(-8px) scale(1.02);
}

.city-card {
  background: linear-gradient(135deg, rgba(25, 30, 45, 0.95), rgba(35, 40, 55, 0.95));
  border: 2px solid rgba(0, 195, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), rgba(255, 23, 78, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.city-card:hover {
  border-color: rgba(0, 195, 255, 0.7);
  box-shadow: 0 15px 40px rgba(0, 195, 255, 0.3);
}

.city-card:hover::before {
  opacity: 1;
}

.city-option.selected .city-card {
  border-color: #00c3ff;
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.6);
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(35, 40, 55, 0.95));
}

.city-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.city-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.8) contrast(1.1);
}

.city-option:hover .city-map {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.2);
}

.city-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.city-badge {
  background: linear-gradient(45deg, #00c3ff, #0099cc);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 195, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-info {
  padding: 25px;
}

.city-name {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.city-platform {
  color: #00c3ff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  font-family: 'VT323', monospace;
}

.city-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.city-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-tag {
  background: rgba(0, 195, 255, 0.2);
  color: #00c3ff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(0, 195, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(45deg, #00c3ff, #0099cc);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.city-option:hover .city-select-btn {
  opacity: 1;
  transform: translateY(0);
}

.city-option.selected .city-select-btn {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* Character Path Selection Styles */
.character-path-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.character-path-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.character-path-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 195, 255, 0.5);
}

.character-path-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.path-selection-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.path-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  padding: 20px 0;
}

.path-option {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.path-option:hover {
  transform: translateY(-5px);
}

.path-card {
  background: linear-gradient(135deg, rgba(25, 30, 45, 0.95), rgba(35, 40, 55, 0.95));
  border: 2px solid rgba(0, 195, 255, 0.3);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  backdrop-filter: blur(10px);
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), rgba(255, 23, 78, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 13px;
}

.path-card:hover {
  border-color: rgba(0, 195, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 195, 255, 0.25);
}

.path-card:hover::before {
  opacity: 1;
}

.path-option.selected .path-card {
  border-color: #00c3ff;
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(35, 40, 55, 0.95));
}

.path-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00c3ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.path-option:hover .path-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 195, 255, 0.6);
}

.path-info {
  flex: 1;
}

.path-name {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.path-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.path-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #00c3ff, #0099cc);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(20px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.path-option:hover .path-select-btn {
  opacity: 1;
  transform: translateX(0);
}

.path-option.selected .path-select-btn {
  opacity: 1;
  transform: translateX(0);
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Navigation */
.creator-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(15, 20, 32, 0.6));
  border-top: 1px solid rgba(0, 195, 255, 0.3);
}

.nav-btn {
  background: linear-gradient(45deg, rgba(0, 195, 255, 0.2), rgba(0, 195, 255, 0.1));
  border: 2px solid var(--cp-primary);
  color: var(--cp-primary);
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'VT323', monospace;
  text-transform: lowercase;
  font-weight: bold;
  min-width: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, rgba(0, 195, 255, 0.3), rgba(0, 195, 255, 0.2));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.step-info {
  color: var(--cp-text);
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .character-notebook {
    width: 250px;
  }
  
  .city-options {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .path-options {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .creator-content {
    flex-direction: column;
  }
  
  .character-notebook {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 195, 255, 0.3);
  }
  
  .creator-steps {
    padding: 20px;
  }
  
  .city-selection-title,
  .character-path-title {
    font-size: 1.8rem;
  }
  
  .city-options,
  .path-options {
    gap: 15px;
  }
  
  .path-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .path-select-btn {
    transform: translateY(20px);
  }
  
  .path-option:hover .path-select-btn {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .creator-container {
    height: auto;
    min-height: 600px;
  }
  
  .city-selection-title,
  .character-path-title {
    font-size: 1.5rem;
  }
  
  .city-card,
  .path-card {
    padding: 20px;
  }
  
  .city-image {
    height: 180px;
  }
  
  .creator-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-btn {
    width: 100%;
  }
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.city-option,
.path-option {
  animation: fadeInUp 0.6s ease forwards;
}

.city-option:nth-child(2) {
  animation-delay: 0.1s;
}

.path-option:nth-child(even) {
  animation-delay: 0.1s;
}

.path-option:nth-child(3),
.path-option:nth-child(4) {
  animation-delay: 0.2s;
}

.path-option:nth-child(5),
.path-option:nth-child(6) {
  animation-delay: 0.3s;
}

.path-option:nth-child(7),
.path-option:nth-child(8) {
  animation-delay: 0.4s;
}

/* Glitch Effect for Cyberpunk Theme */
@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.city-option.selected .city-name,
.path-option.selected .path-name {
  animation: glitch 0.3s ease-in-out;
}

/* Character Path Categories - New Design */
.path-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.path-category {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.path-category:hover {
  transform: translateY(-8px) scale(1.02);
}

.category-card {
  background: linear-gradient(135deg, rgba(15, 20, 32, 0.95), rgba(25, 30, 45, 0.95));
  border: 2px solid rgba(0, 195, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  height: 320px;
  backdrop-filter: blur(15px);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.05), rgba(255, 23, 78, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.category-card:hover {
  border-color: rgba(0, 195, 255, 0.7);
  box-shadow: 0 20px 50px rgba(0, 195, 255, 0.3);
}

.category-card:hover::before {
  opacity: 1;
}

.path-category.selected .category-card {
  border-color: #00c3ff;
  box-shadow: 0 0 40px rgba(0, 195, 255, 0.6);
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(25, 30, 45, 0.95));
}

.category-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.category-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.2) saturate(0.8);
  transition: all 0.4s ease;
}

.path-category:hover .category-bg-image {
  filter: brightness(0.4) contrast(1.3) saturate(1);
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(15, 20, 32, 0.8) 50%, 
    rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00c3ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 195, 255, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.path-category:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 195, 255, 0.6);
}

.category-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-badge {
  background: rgba(0, 195, 255, 0.2);
  color: #00c3ff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 195, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.category-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(45deg, rgba(0, 195, 255, 0.2), rgba(0, 195, 255, 0.1));
  border: 2px solid rgba(0, 195, 255, 0.3);
  border-radius: 30px;
  padding: 15px 25px;
  color: #00c3ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.path-category:hover .category-select {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(45deg, rgba(0, 195, 255, 0.3), rgba(0, 195, 255, 0.2));
  border-color: rgba(0, 195, 255, 0.6);
}

.path-category.selected .category-select {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  border-color: rgba(0, 255, 136, 0.6);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.select-text {
  font-size: 1rem;
}

.category-select i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.path-category:hover .category-select i {
  transform: translateX(5px);
}

/* Custom Path Special Styling */
.custom-path .category-card {
  background: linear-gradient(135deg, 
    rgba(255, 23, 78, 0.1), 
    rgba(0, 195, 255, 0.1), 
    rgba(0, 255, 158, 0.1));
}

.custom-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 195, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 23, 78, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(0, 255, 158, 0.3) 0%, transparent 50%);
  animation: customPathGlow 4s ease-in-out infinite alternate;
}

@keyframes customPathGlow {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

.custom-path .category-icon {
  background: linear-gradient(45deg, #ff174e, #00c3ff, #00ff9e);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive Design for New Categories */
@media (max-width: 1200px) {
  .path-categories {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .path-categories {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 15px;
  }
  
  .category-card {
    height: 280px;
  }
  
  .category-content {
    padding: 25px;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .category-name {
    font-size: 1.5rem;
  }
  
  .category-desc {
    font-size: 1rem;
  }
  
  .category-select {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .character-path-title {
    font-size: 1.8rem;
  }
  
  .category-card {
    height: 260px;
  }
  
  .category-content {
    padding: 20px;
  }
}

/* Modern Lifestyle Selection Cards - Completely Redesigned */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 30px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.lifestyle-card {
  position: relative;
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.lifestyle-card:hover .card-inner {
  transform: rotateY(180deg);
}

.lifestyle-card.selected .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}

.card-front {
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.95) 0%,
    rgba(25, 30, 50, 0.95) 50%,
    rgba(35, 40, 65, 0.95) 100%);
  border: 1px solid rgba(0, 195, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-back {
  background: linear-gradient(135deg, 
    rgba(0, 195, 255, 0.1) 0%,
    rgba(15, 20, 35, 0.98) 30%,
    rgba(25, 30, 50, 0.98) 100%);
  border: 1px solid rgba(0, 195, 255, 0.4);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-shadow: 
    0 12px 40px rgba(0, 195, 255, 0.2),
    inset 0 1px 0 rgba(0, 195, 255, 0.2);
}

.card-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 195, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 23, 78, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(0, 195, 255, 0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lifestyle-card:hover .card-bg-pattern {
  opacity: 1;
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00c3ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(0, 195, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.card-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #00c3ff, #ff1744, #00c3ff);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lifestyle-card:hover .card-icon-wrapper::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

.card-icon-wrapper i {
  font-size: 28px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 195, 255, 0.3);
}

.card-subtitle {
  font-size: 12px;
  color: rgba(0, 195, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.card-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lifestyle-card:hover .card-glow {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite;
}

.card-description {
  text-align: center;
  color: #ffffff;
}

.card-description p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
}

.card-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(0, 195, 255, 0.9);
  background: rgba(0, 195, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat i {
  font-size: 10px;
}

/* Selection State */
.lifestyle-card.selected .card-front {
  border-color: #00c3ff;
  box-shadow: 
    0 0 30px rgba(0, 195, 255, 0.4),
    inset 0 1px 0 rgba(0, 195, 255, 0.2);
}

.lifestyle-card.selected .card-icon-wrapper {
  background: linear-gradient(135deg, #ff1744, #ff4569);
  box-shadow: 
    0 8px 25px rgba(255, 23, 68, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.lifestyle-card.selected .card-title {
  color: #ff1744;
  text-shadow: 0 2px 8px rgba(255, 23, 68, 0.3);
}

.lifestyle-card.selected .card-glow {
  background: linear-gradient(90deg, transparent, #ff1744, transparent);
  opacity: 1;
}

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .lifestyle-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .lifestyle-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 15px;
  }
  
  .lifestyle-card {
    height: 180px;
  }
  
  .card-back {
    padding: 20px;
  }
  
  .card-description p {
    font-size: 13px;
  }
  
  .card-stats {
    gap: 10px;
  }
  
  .stat {
    font-size: 10px;
    padding: 4px 8px;
  }
}

@media (max-width: 576px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  
  .lifestyle-card {
    height: 160px;
  }
  
  .card-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .card-icon-wrapper i {
    font-size: 24px;
  }
  
  .card-title {
    font-size: 16px;
  }
}

/* Remove old styles */
.lifestyle-selection-grid,
.card-background,
.neon-border,
.neon-sign,
.card-file,
.select-btn {
  display: none !important;
}