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

#body {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  letter-spacing: 2px;
  line-height: 1.7;
  font-family: "Reggae One", "Orbitron", sans-serif;
  box-sizing: border-box;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}
@media (max-width: 767px) {
  #body {
    padding: 15px;
  }
}
@media (max-width: 479px) {
  #body {
    padding: 10px;
  }
}

.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #fff9e6 0%, #fffef7 100%);
  border: 4px solid #8b6914;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 8px #d4af37, inset 0 2px 10px rgba(255, 255, 255, 0.8);
  position: relative;
}
.content::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #d4af37, #f4e4a6, #d4af37);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .content {
    padding: 30px 20px;
  }
}
@media (max-width: 479px) {
  .content {
    padding: 20px 15px;
  }
}
.content .header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .content .header {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .content .header {
    margin-bottom: 25px;
  }
}
.content .header .page-title {
  font-family: "Reggae One", "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b0000;
  text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  margin-bottom: 15px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border-radius: 15px;
  border: 3px solid #d4af37;
}
@media (max-width: 767px) {
  .content .header .page-title {
    font-size: 2rem;
    padding: 15px;
  }
}
@media (max-width: 479px) {
  .content .header .page-title {
    font-size: 1.6rem;
    padding: 12px;
  }
}
.content .header .page-subtitle {
  font-size: 1.2rem;
  color: #5e2d00;
  font-weight: 600;
}
@media (max-width: 767px) {
  .content .header .page-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 479px) {
  .content .header .page-subtitle {
    font-size: 1rem;
  }
}
.content .selection-section {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .content .selection-section {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .content .selection-section {
    margin-bottom: 25px;
  }
}
.content .selection-section .section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #5e2d00;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid #d4af37;
}
@media (max-width: 767px) {
  .content .selection-section .section-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  .content .selection-section .section-title {
    font-size: 1.2rem;
    gap: 8px;
  }
}
.content .selection-section .section-title .title-icon {
  font-size: 1.8rem;
}
@media (max-width: 479px) {
  .content .selection-section .section-title .title-icon {
    font-size: 1.5rem;
  }
}
.content .selection-section .selection-display {
  min-height: 40px;
  border: 3px solid #000;
  padding: 10px 15px;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.1rem;
}
@media (max-width: 479px) {
  .content .selection-section .selection-display {
    font-size: 1rem;
    padding: 8px 12px;
    min-height: 35px;
  }
}
.content .selection-section .selection-display.selected {
  background: linear-gradient(135deg, #d4f4dd 0%, #a8e6cf 100%);
  border-color: rgb(71, 184, 22);
  color: #2d5016;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}
.content .selection-section .character-grid {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 15px 5px;
}
.content .selection-section .character-grid::-webkit-scrollbar {
  height: 10px;
}
.content .selection-section .character-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.content .selection-section .character-grid::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}
.content .selection-section .character-grid::-webkit-scrollbar-thumb:hover {
  background: #b8941f;
}
@media (max-width: 767px) {
  .content .selection-section .character-grid {
    gap: 10px;
    padding: 10px 5px;
  }
}
@media (max-width: 479px) {
  .content .selection-section .character-grid {
    gap: 8px;
  }
}
.content .selection-section .character-grid .character-card {
  flex-shrink: 0;
  width: 220px;
  background: white;
  border: 3px solid #d4af37;
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .content .selection-section .character-grid .character-card {
    width: 180px;
    padding: 12px;
  }
}
@media (max-width: 479px) {
  .content .selection-section .character-grid .character-card {
    width: 150px;
    padding: 10px;
  }
}
.content .selection-section .character-grid .character-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  border-color: #ffed4e;
  background: linear-gradient(135deg, #fffef7 0%, #fff9e6 100%);
}
@media (max-width: 767px) {
  .content .selection-section .character-grid .character-card:hover {
    transform: translateY(-5px) scale(1.03);
  }
}
.content .selection-section .character-grid .character-card:active {
  transform: translateY(-3px) scale(1.02);
}
.content .selection-section .character-grid .character-card .image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .content .selection-section .character-grid .character-card .image {
    height: 130px;
  }
}
@media (max-width: 479px) {
  .content .selection-section .character-grid .character-card .image {
    height: 100px;
  }
}
.content .selection-section .character-grid .character-card .character-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #5e2d00;
  text-align: center;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 767px) {
  .content .selection-section .character-grid .character-card .character-name {
    font-size: 1.1rem;
    padding: 6px;
  }
}
@media (max-width: 479px) {
  .content .selection-section .character-grid .character-card .character-name {
    font-size: 1rem;
    padding: 5px;
  }
}
.content .stats-container {
  max-width: 1070px;
  width: 100%;
  margin: 30px auto 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .content .stats-container {
    gap: 15px;
    margin: 25px auto 15px;
  }
}
@media (max-width: 479px) {
  .content .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px auto 15px;
  }
}
.content .character-stats {
  width: 100%;
  padding: 20px;
  border: 3px solid;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .content .character-stats {
    padding: 15px;
  }
}
@media (max-width: 479px) {
  .content .character-stats {
    padding: 15px;
  }
}
.content .character-stats.player-stats {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #2196f3;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}
.content .character-stats.player-stats .stats-title {
  color: #0d47a1;
  border-bottom: 2px solid #2196f3;
}
.content .character-stats.player-stats .stat-value {
  color: #0d47a1;
}
.content .character-stats.player-stats .spec-label {
  color: #2196f3;
}
.content .character-stats.enemy-stats {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-color: #f44336;
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.3);
}
.content .character-stats.enemy-stats .stats-title {
  color: #b71c1c;
  border-bottom: 2px solid #f44336;
}
.content .character-stats.enemy-stats .stat-value {
  color: #b71c1c;
}
.content .character-stats.enemy-stats .spec-label {
  color: #f44336;
}
.content .character-stats .stats-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .content .character-stats .stats-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 479px) {
  .content .character-stats .stats-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}
.content .character-stats .stats-title .stats-icon {
  font-size: 1.5rem;
}
@media (max-width: 479px) {
  .content .character-stats .stats-title .stats-icon {
    font-size: 1.3rem;
  }
}
.content .character-stats .stats-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .stats-grid {
    gap: 8px;
    margin-bottom: 12px;
  }
}
.content .character-stats .stats-content .stats-grid .stat-item {
  background: white;
  padding: 12px 8px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .content .character-stats .stats-content .stats-grid .stat-item {
    padding: 10px 6px;
  }
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .stats-grid .stat-item {
    padding: 10px 6px;
  }
}
.content .character-stats .stats-content .stats-grid .stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 6px;
  font-weight: 600;
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .stats-grid .stat-item .stat-label {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
}
.content .character-stats .stats-content .stats-grid .stat-item .stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .content .character-stats .stats-content .stats-grid .stat-item .stat-value {
    font-size: 1.4rem;
  }
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .stats-grid .stat-item .stat-value {
    font-size: 1.3rem;
  }
}
.content .character-stats .stats-content .specialization {
  background: white;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .content .character-stats .stats-content .specialization {
    padding: 10px;
  }
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .specialization {
    padding: 10px;
  }
}
.content .character-stats .stats-content .specialization .spec-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-right: 6px;
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .specialization .spec-label {
    font-size: 0.9rem;
    margin-right: 4px;
  }
}
.content .character-stats .stats-content .specialization .spec-text {
  display: inline-block;
  font-size: 0.95rem;
  color: #5e2d00;
  font-weight: 600;
}
@media (max-width: 479px) {
  .content .character-stats .stats-content .specialization .spec-text {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
  }
}
.content .warning-message {
  text-align: center;
  color: red;
  font-weight: bold;
  padding: 15px;
  margin: 20px auto;
  max-width: 1070px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 10px;
  border: 2px solid #d32f2f;
  font-size: 1.1rem;
}
.content .warning-message.show {
  opacity: 1;
}
@media (max-width: 479px) {
  .content .warning-message {
    font-size: 1rem;
    padding: 12px;
    margin: 15px auto;
  }
}
.content .btns {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .content .btns {
    margin-top: 25px;
    gap: 12px;
  }
}
@media (max-width: 479px) {
  .content .btns {
    flex-direction: column;
    gap: 10px;
  }
}
.content .btns .btn {
  flex: 1;
  min-width: 200px;
  padding: 18px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Reggae One", "Orbitron", sans-serif;
  border-radius: 50px;
  border: 3px solid;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .content .btns .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    min-width: 180px;
  }
}
@media (max-width: 479px) {
  .content .btns .btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
.content .btns .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.content .btns .btn:hover::before {
  left: 100%;
}
.content .btns .btn .btn-icon {
  font-size: 1.6rem;
}
@media (max-width: 479px) {
  .content .btns .btn .btn-icon {
    font-size: 1.4rem;
  }
}
.content .btns .btn.battle {
  background: linear-gradient(135deg, #f44336 0%, #ff5722 100%);
  color: #fff;
  border-color: #c62828;
}
.content .btns .btn.battle:hover {
  background: linear-gradient(135deg, #ff5722 0%, #ff6f00 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 67, 54, 0.5);
}
.content .btns .btn.battle:active {
  transform: translateY(-1px);
}
.content .btns .btn.home {
  background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
  color: #fff;
  border-color: #1565c0;
}
.content .btns .btn.home:hover {
  background: linear-gradient(135deg, #03a9f4 0%, #00bcd4 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.5);
}
.content .btns .btn.home:active {
  transform: translateY(-1px);
}

/*# sourceMappingURL=character-select.css.map */
