.site-footer {
  background-color: #1e222d;
  border-top: 1px solid #2e3545;
  padding: 2rem 0;
  margin-top: 4rem;
  color: #8a94a6;
  font-size: 0.875rem;
  text-align: center;
}
.site-footer p {
  margin: 0.25rem 0;
}
.site-footer a {
  color: #f0f3f8;
  text-decoration: none;
}
.site-footer a:hover {
  color: #00aeef;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-bnet {
  background-color: #00aeef;
  color: #ffffff;
}
.btn-bnet:hover {
  background-color: #008cc7;
  color: #ffffff;
}
.btn-secondary {
  background-color: #1e222d;
  color: #f0f3f8;
  border-color: #2e3545;
}
.btn-secondary:hover {
  background-color: rgb(46.32, 52.496, 69.48);
  border-color: rgb(76.6, 88.2565217391, 114.9);
  color: #f0f3f8;
}
.btn-logout {
  background-color: transparent;
  color: #8a94a6;
  border-color: #2e3545;
}
.btn-logout:hover {
  color: #ff5555;
  border-color: #ff5555;
  background-color: rgba(255, 85, 85, 0.1);
}

.character-card {
  background-color: #1e222d;
  border: 1px solid #2e3545;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.character-card[data-class=death-knight] {
  border-top: 4px solid #c41e3a;
}
.character-card[data-class=death-knight] .character-name {
  color: #c41e3a;
}
.character-card[data-class=demon-hunter] {
  border-top: 4px solid #a330c9;
}
.character-card[data-class=demon-hunter] .character-name {
  color: #a330c9;
}
.character-card[data-class=druid] {
  border-top: 4px solid #ff7d0a;
}
.character-card[data-class=druid] .character-name {
  color: #ff7d0a;
}
.character-card[data-class=evoker] {
  border-top: 4px solid #33937f;
}
.character-card[data-class=evoker] .character-name {
  color: #33937f;
}
.character-card[data-class=hunter] {
  border-top: 4px solid #abd473;
}
.character-card[data-class=hunter] .character-name {
  color: #abd473;
}
.character-card[data-class=mage] {
  border-top: 4px solid #3fc7eb;
}
.character-card[data-class=mage] .character-name {
  color: #3fc7eb;
}
.character-card[data-class=monk] {
  border-top: 4px solid #00ff96;
}
.character-card[data-class=monk] .character-name {
  color: #00ff96;
}
.character-card[data-class=paladin] {
  border-top: 4px solid #f58cba;
}
.character-card[data-class=paladin] .character-name {
  color: #f58cba;
}
.character-card[data-class=priest] {
  border-top: 4px solid #ffffff;
}
.character-card[data-class=priest] .character-name {
  color: #ffffff;
}
.character-card[data-class=rogue] {
  border-top: 4px solid #fff468;
}
.character-card[data-class=rogue] .character-name {
  color: #fff468;
}
.character-card[data-class=shaman] {
  border-top: 4px solid #0070dd;
}
.character-card[data-class=shaman] .character-name {
  color: #0070dd;
}
.character-card[data-class=warlock] {
  border-top: 4px solid #8788ee;
}
.character-card[data-class=warlock] .character-name {
  color: #8788ee;
}
.character-card[data-class=warrior] {
  border-top: 4px solid #c69b6d;
}
.character-card[data-class=warrior] .character-name {
  color: #c69b6d;
}
.character-card.is-selected {
  border-color: #00aeef;
}
.character-card .card-avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #2e3545;
  background-color: #000;
}
.character-card .card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.character-card .card-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: rgb(46.32, 52.496, 69.48);
}
.character-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}
.character-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.character-card .character-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.character-card .character-level {
  font-size: 0.85rem;
  color: #8a94a6;
  font-weight: 600;
}
.character-card .character-details {
  color: #8a94a6;
  font-size: 0.875rem;
  margin: 0;
}
.character-card .character-details .spec-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
}
.character-card .character-realm {
  font-size: 0.8rem;
  color: rgb(98.2888349515, 109.3325242718, 129.2111650485);
  margin: 0;
}
.character-card .item-level {
  font-weight: 600;
  color: #f8b700;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.character-card .btn-toggle-fav {
  margin-top: 0.5rem;
  background: transparent;
  border: 1px solid #2e3545;
  color: #8a94a6;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}
.character-card .btn-toggle-fav:hover {
  border-color: #f8b700;
  color: #f8b700;
}
.character-card .btn-toggle-fav.active {
  background-color: rgba(248, 183, 0, 0.15);
  border-color: #f8b700;
  color: #f8b700;
  font-weight: 600;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background-color: #1e222d;
  border: 1px solid #2e3545;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.news-card:hover {
  border-color: #00aeef;
  transform: translateY(-2px);
}
.news-card .news-image-wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
  display: block;
}
.news-card .news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card .news-image-wrapper:hover img {
  transform: scale(1.05);
}
.news-card .news-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-card .news-date {
  font-size: 0.8rem;
  color: #8a94a6;
}
.news-card .news-title {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.news-card .news-title a {
  color: #f0f3f8;
  text-decoration: none;
}
.news-card .news-title a:hover {
  color: #00aeef;
}
.news-card .news-snippet {
  color: #8a94a6;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #0b0d12;
  color: #f0f3f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background-color: #1e222d;
  border-bottom: 1px solid #2e3545;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f0f3f8;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */