/* [project]/src/app/globals.scss.css [app-client] (css) */
.home-content-wrapper {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-content {
  background: #000;
  border: 3px solid #000;
  grid-template-columns: 947px 300px;
  gap: 2px;
  max-width: 1249px;
  margin-bottom: 2px;
  display: grid;
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }
}

.sidebar-right {
  background: #fff;
}

@media (max-width: 1024px) {
  .sidebar-right {
    border-top: 2px solid #000;
  }
}

.upcoming-streams {
  border-bottom: 3px solid #000;
  padding: 20px;
}

.upcoming-streams h3 {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

.upcoming-streams .subtitle {
  color: #999;
  margin-bottom: 15px;
  font-size: 12px;
}

.stream-item {
  background: #f9f9f9;
  border: 2px solid #000;
  margin-bottom: 10px;
  padding: 10px;
}

.stream-item .date-time {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
}

.stream-item .stream-title {
  font-size: 14px;
}

.todays-schedule {
  padding: 20px;
}

.todays-schedule .schedule-title {
  text-align: right;
  border-bottom: 2px solid #000;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}

.todays-schedule .schedule-note {
  text-align: center;
  color: #999;
  margin-bottom: 15px;
  font-size: 11px;
  font-style: italic;
}

.todays-schedule .schedule-event {
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  display: flex;
}

.blog-section {
  background: #fff;
  border: 3px solid #000;
  margin-bottom: 2px;
  padding: 20px;
  position: relative;
}

.blog-section .section-title {
  text-transform: uppercase;
  background: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -12px;
  left: 20px;
}

.blog-posts {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .blog-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .blog-posts {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog-posts {
  margin-top: 20px;
}

.blog-post {
  background: #fafafa;
  border: 2px solid #000;
  padding: 15px;
}

.blog-post .blog-post-image {
  background: #ddd;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin-bottom: 10px;
  font-size: 48px;
  display: flex;
  overflow: hidden;
}

.blog-post .blog-post-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-post .blog-post-image .placeholder {
  font-size: 48px;
}

.blog-post h4 {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

.blog-post .excerpt {
  color: #333;
  font-size: 12px;
  line-height: 1.4;
}

.blog-link {
  text-align: center;
  margin-top: 15px;
}

.blog-link a {
  text-transform: uppercase;
  border: 2px solid #000;
  padding: 5px 20px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
}

.blog-link a:hover {
  color: #fff;
  background: #000;
  text-decoration: none;
}

.loading-state {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  display: flex;
}

.loading-state .loading-spinner {
  border: 4px solid #ddd;
  border-top-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  animation: 1s linear infinite spin;
}

.loading-state p {
  color: #999;
  font-size: 18px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-state {
  text-align: center;
  background: #fff3cd;
  border: 3px solid #000;
  margin: 40px 0;
  padding: 40px;
}

.error-state h2 {
  color: #856404;
  margin-bottom: 15px;
  font-size: 24px;
}

.error-state p {
  color: #856404;
  margin-bottom: 20px;
}

.error-state .btn {
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  font-weight: bold;
}

.error-state .btn:hover {
  background: #333;
}

.not-found {
  text-align: center;
  background: #fff;
  border: 3px solid #000;
  padding: 80px;
}

.not-found h1 {
  margin-bottom: 15px;
  font-size: 48px;
}

.not-found p {
  color: #999;
  margin-bottom: 40px;
  font-size: 18px;
}

.not-found .btn {
  color: #fff;
  text-transform: uppercase;
  background: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.not-found .btn:hover {
  background: #333;
}

.desktop-only {
  display: flex;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
}

.tablet-only {
  display: none;
}

@media (max-width: 1024px) and (min-width: 481px) {
  .tablet-only {
    display: block;
  }
}

.top-nav-wrapper {
  background: #fff;
  border-bottom: 3px solid #000;
}

.top-nav {
  align-items: stretch;
  display: flex;
}

.menu-area {
  flex: 1;
  align-items: center;
  min-width: 0;
  display: flex;
  position: relative;
}

.menu-area .menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 15px 20px;
  font-family: Arial, sans-serif;
  display: none;
}

.menu-area .menu-toggle .hamburger {
  font-size: 28px;
  display: block;
}

.menu-area .menu-toggle:hover {
  background: #0000000d;
}

@media (max-width: 768px) {
  .menu-area .menu-toggle {
    display: block;
  }
}

.menu-area .main-nav {
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  width: 100%;
  padding: 15px 0;
  display: flex;
}

.menu-area .main-nav a {
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  font-size: clamp(11px, 1.2vw, 16px);
  font-weight: bold;
  text-decoration: none;
  transition: all .2s;
}

.menu-area .main-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-area .main-nav {
    z-index: 100;
    background: #fff;
    border: 3px solid #000;
    border-top: none;
    flex-direction: column;
    width: 25%;
    min-width: 200px;
    padding: 15px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px #0000001a;
  }

  .menu-area .main-nav.open {
    display: flex;
  }

  .menu-area .main-nav a {
    border-bottom: 1px solid #eee;
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  .menu-area .main-nav a:last-child {
    border-bottom: none;
  }

  .menu-area .main-nav a:hover {
    background: #0000000d;
    text-decoration: none;
  }
}

.login-area {
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: flex-end;
  align-items: center;
  max-width: 300px;
  padding: 15px 0;
  font-size: clamp(14px, 1.5vw, 24px);
  font-style: italic;
  font-weight: bold;
  display: flex;
}

@media (max-width: 768px) {
  .login-area {
    max-width: 150px;
    padding: 15px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .login-area {
    padding: 10px;
    font-size: 14px;
  }
}

.header-wrapper {
  background: #fff;
  border-bottom: 3px solid #000;
  margin-bottom: 20px;
}

.top-nav-wrapper .container, .header-wrapper .container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 480px) {
  .top-nav-wrapper .container, .header-wrapper .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header-section {
  justify-content: flex-start;
  align-items: stretch;
  height: 260px;
  padding: 0;
  display: flex;
  position: relative;
}

@media (max-width: 1024px) {
  .header-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: auto;
    padding: 15px 0;
  }
}

.brand-group {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-right: auto;
  padding: 5px 0;
  display: flex;
}

@media (max-width: 1024px) {
  .brand-group {
    border-bottom: 1px solid #eee;
    grid-area: 1 / 1 / auto / -1;
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
    padding-bottom: 15px;
  }
}

.logo-area {
  flex: 1;
  align-items: center;
  width: 100%;
  min-height: 0;
  display: flex;
}

.logo-area .main-logo {
  object-fit: contain;
  width: auto;
  max-height: 100%;
}

.logo-area .logo-placeholder {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 2rem;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .logo-area {
    justify-content: center;
  }
}

.catchphrase-area {
  color: #555;
  white-space: normal;
  width: 100%;
  margin: 10px 0;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.2;
}

.catchphrase-area p {
  color: inherit;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  display: inline;
}

@media (max-width: 1024px) {
  .catchphrase-area {
    justify-self: center;
    align-items: center;
  }

  .catchphrase-area p {
    display: block;
  }
}

.stream-icons-column {
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  height: auto;
  margin: 0 15px;
  display: flex;
}

@media (max-width: 1024px) {
  .stream-icons-column {
    flex-direction: row;
    order: 3;
    gap: 40px;
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }
}

.stream-icons-column .icon-link {
  color: #333;
  background: #f4f4f4;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 28px;
  transition: transform .2s;
  display: flex;
}

.stream-icons-column .icon-link svg {
  width: 28px;
  height: 28px;
}

.stream-icons-column .icon-link:hover {
  background: #f5f5f5;
  transform: translateY(4px)scale(1.25);
}

.stream-icons-column .icon-link.live {
  animation: 2s ease-in-out infinite iconGlow;
}

.stream-icons-column .icon-link.twitch.live {
  color: #9146ff;
  background: #9146ff1a;
  border-color: #9146ff;
  box-shadow: 0 0 15px #9146ffb3;
}

.stream-icons-column .icon-link.youtube.live {
  color: red;
  background: #ff00001a;
  border-color: red;
  box-shadow: 0 0 15px #ff0000b3;
}

.stream-icons-column .icon-link.kick.live {
  color: #53fc18;
  background: #53fc181a;
  border-color: #53fc18;
  box-shadow: 0 0 15px #53fc18b3;
}

@keyframes iconGlow {
  0%, 100% {
    filter: brightness();
  }

  50% {
    filter: brightness(1.4);
  }
}

.header-right {
  flex: none;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

@media (max-width: 1024px) {
  .header-right {
    order: 2;
    justify-content: center;
    width: 100%;
    height: auto;
  }
}

.countdown-box {
  width: 300px;
}

.countdown-box h3 {
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 1rem;
}

.countdown-box .countdown {
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
  font-size: 40px;
  font-weight: bold;
  display: flex;
}

.countdown-box .countdown-item {
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  display: flex;
}

.countdown-box .countdown-item span {
  text-transform: lowercase;
  font-size: 16px;
  font-weight: normal;
}

.countdown-box .broadcast-info {
  color: #666;
  margin: 10px 0 0;
  font-size: .85rem;
  font-style: italic;
}

@media (max-width: 1024px) {
  .countdown-box {
    width: 100%;
  }

  .countdown-box .countdown {
    gap: 15px;
    margin: 10px 0;
  }
}

.live-preview-box {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

@media (max-width: 1024px) {
  .live-preview-box {
    justify-content: center;
    width: 100%;
    height: auto;
  }
}

.preview-content {
  aspect-ratio: 16 / 9;
  background: #000;
  width: auto;
  height: 100%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .preview-content {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}

.preview-content .live-badge {
  color: #fff;
  z-index: 10;
  background: red;
  border-radius: 2px;
  padding: 4px 5px 2px;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  left: 5px;
}

.preview-content .fake-thumbnail {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: .9rem;
  display: flex;
}

.diagonal-divider {
  background: #fff;
  width: 30px;
  margin-bottom: -1px;
  margin-left: -30px;
  position: relative;
}

.diagonal-divider:before, .diagonal-divider:after {
  content: "";
  transform-origin: top;
  background: #000;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
}

.diagonal-divider:before {
  left: -20px;
  transform: skewX(20deg);
}

.diagonal-divider:after {
  right: 30px;
  transform: skewX(20deg);
}

@media (max-width: 1024px) {
  .diagonal-divider {
    display: none;
  }
}

footer {
  margin-top: 40px;
}

.footer-nav {
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  border: 3px solid #000;
  margin-bottom: 20px;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
}

.footer-nav a {
  margin: 0 10px;
}

.logo-section {
  text-align: center;
  padding: 40px 20px;
}

.logo-circle {
  background: #fff;
  border: 4px solid #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
}

.catchphrase {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.social-links {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 12px;
}

.legal-footer {
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 11px;
}

.legal-footer p {
  margin-bottom: 10px;
}

.legal-footer a {
  margin: 0 10px;
}

.content-grid-section {
  background: #fff;
  border: 3px solid #000;
  margin-bottom: 2px;
  padding: 20px;
  position: relative;
}

.content-grid-section .section-title {
  text-transform: uppercase;
  background: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -12px;
  left: 20px;
}

.content-grid-section .no-content {
  text-align: center;
  color: #999;
  padding: 40px;
  font-style: italic;
}

.content-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .content-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.content-grid {
  margin-top: 20px;
}

.content-item {
  cursor: pointer;
  background: #fafafa;
  border: 2px solid #000;
  padding: 15px;
  transition: transform .2s;
}

.content-item:hover {
  transform: translateY(-2px);
}

.content-thumbnail {
  background: #ddd;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 5px;
  display: flex;
  overflow: hidden;
}

.content-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-thumbnail .placeholder {
  font-size: 32px;
}

.content-title {
  min-height: 30px;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: bold;
}

.content-meta {
  color: #999;
  font-size: 11px;
}

.cta-rotator {
  background: #2a2e30;
  gap: 0;
  min-height: 290px;
  display: grid;
}

@media (max-width: 1024px) {
  .cta-rotator {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.cta-feature {
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 19px #323232a8;
}

@media (max-width: 1024px) {
  .cta-feature {
    aspect-ratio: 16 / 9;
  }
}

.cta-feature-bg {
  background-position: center;
  background-size: cover;
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.cta-feature-content {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.cta-feature-link {
  color: #fff;
  background: url("/images/banner_title_bg.jpg") 0 0 repeat-x;
  align-items: center;
  gap: 10px;
  padding: 17px 20px 17px 15px;
  text-decoration: none;
  transition: color .5s ease-in-out;
  display: flex;
  box-shadow: 2px 2px 5px 1px #000;
}

.cta-feature-link:hover {
  color: #2ac0ff;
  text-decoration: none;
}

.cta-feature-title {
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}

.cta-feature-arrows {
  color: #2ac0ff;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bold;
}

.cta-nav {
  color: #fff;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  background: #000000a6;
  border: none;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 50px;
  font-size: 24px;
  transition: opacity .2s, background .2s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.cta-feature:hover .cta-nav {
  opacity: 1;
}

.cta-nav:hover {
  background: #000000d9;
}

.cta-nav:focus {
  opacity: 1;
  outline-offset: 2px;
  outline: 2px solid #fff;
}

.cta-nav-prev {
  padding-left: 10px;
  left: 0;
}

.cta-nav-next {
  right: 0;
}

.cta-list {
  background: #2a2e30;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

@media (max-width: 1024px) {
  .cta-list {
    flex-direction: row;
    overflow-x: auto;
  }
}

.cta-list-item {
  cursor: pointer;
  text-align: left;
  color: #ccc;
  background: #2a2e30;
  border: 1px solid #141414;
  border-left: none;
  gap: 15px;
  height: 96px;
  padding: 0;
  transition: all .3s;
  display: flex;
}

.cta-list-item:hover {
  background: #333;
}

.cta-list-item.active {
  color: #fff;
  z-index: 1;
  background: linear-gradient(#3a4a5a 0%, #2a3a4a 100%);
  position: relative;
  box-shadow: 0 5px 10px #000;
}

.cta-list-item.active .cta-list-thumb img {
  filter: grayscale(0%);
}

.cta-list-item.active .cta-list-title {
  color: #fff;
}

@media (max-width: 1024px) {
  .cta-list-item {
    flex: 0 0 300px;
    height: auto;
    min-height: 96px;
  }
}

.cta-list-thumb {
  flex: 0 0 80px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 12px;
  display: flex;
  overflow: hidden;
}

.cta-list-thumb img {
  object-fit: cover;
  filter: grayscale();
  width: 63px;
  height: 79px;
  transition: filter .3s;
}

.cta-list-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 14px 12px 14px 0;
  display: flex;
}

.cta-list-title {
  text-transform: uppercase;
  color: #ccc;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.3;
  transition: color .3s;
  display: -webkit-box;
  overflow: hidden;
}

.cta-list-excerpt {
  color: #ccc;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.cta-empty {
  color: #666;
  grid-column: 1 / -1;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  font-style: italic;
  display: flex;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.reviews-grid {
  margin-top: 20px;
}

.review-card {
  background: #fafafa;
  border: 2px solid #000;
  padding: 15px;
  transition: transform .2s;
}

.review-card:hover {
  transform: translateY(-2px);
}

.review-card .review-image {
  background: #ddd;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 10px;
  display: flex;
  overflow: hidden;
}

.review-card .review-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.review-card .review-image .placeholder {
  font-size: 64px;
}

.review-card h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.review-card .game-title {
  color: #999;
  margin-bottom: 5px;
  font-size: 14px;
}

.review-card .rating {
  color: #000;
  margin-bottom: 10px;
  font-weight: bold;
}

.review-card .excerpt {
  color: #333;
  font-size: 13px;
  line-height: 1.5;
}

.heroes-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .heroes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .heroes-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.heroes-grid {
  margin-top: 20px;
}

.hero-card {
  background: #fafafa;
  border: 2px solid #000;
  padding: 15px;
  transition: transform .2s;
}

.hero-card:hover {
  transform: translateY(-2px);
}

.hero-card h2 {
  margin-bottom: 10px;
  font-size: 16px;
}

.hero-card .hero-meta {
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
}

.hero-card .status {
  text-transform: uppercase;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
}

.hero-card .status.status-alive {
  color: #fff;
  background: #4caf50;
}

.hero-card .status.status-dead {
  color: #fff;
  background: #f44336;
}

.hero-card .status.status-retired {
  color: #fff;
  background: #ff9800;
}

.hero-card .death-info {
  color: #666;
  font-size: 12px;
  font-style: italic;
}

.projects-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.projects-grid {
  margin-top: 20px;
}

.project-card {
  background: #fafafa;
  border: 2px solid #000;
  padding: 15px;
}

.project-card h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.project-card .project-link, .project-card .github-link {
  color: #06c;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
}

.project-card .project-link:hover, .project-card .github-link:hover {
  text-decoration: underline;
}

.project-card .project-description {
  font-size: 13px;
  line-height: 1.5;
}

.gamedev-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .gamedev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gamedev-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gamedev-grid {
  margin-top: 20px;
}

.gamedev-card {
  background: #fafafa;
  border: 2px solid #000;
  padding: 15px;
}

.gamedev-card .gamedev-image {
  background: #ddd;
  height: 150px;
  margin-bottom: 10px;
  overflow: hidden;
}

.gamedev-card .gamedev-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gamedev-card h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.gamedev-card .project-name {
  color: #999;
  margin-bottom: 5px;
  font-size: 14px;
}

.gamedev-card .dev-status {
  color: #fff;
  text-transform: uppercase;
  background: #2196f3;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
}

.gamedev-card .gamedev-excerpt {
  font-size: 13px;
  line-height: 1.5;
}

.review-single .review-header {
  margin-bottom: 40px;
}

.review-single .review-header h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

.review-single .review-header .game-title {
  color: #999;
  margin-bottom: 15px;
  font-size: 20px;
}

.review-single .review-header .review-meta {
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}

.review-single .review-header .featured-image {
  margin-top: 20px;
}

.review-single .review-header .featured-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 500px;
}

.review-single .review-content {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.review-single .review-content p {
  margin-bottom: 15px;
}

.review-single .review-content h2, .review-single .review-content h3, .review-single .review-content h4 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.review-single .related-heroes {
  border-top: 3px solid #000;
  margin-top: 40px;
  padding-top: 20px;
}

.review-single .related-heroes h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.review-single .related-heroes .heroes-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  display: grid;
}

@media (max-width: 1024px) {
  .review-single .related-heroes .heroes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .review-single .related-heroes .heroes-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.hero-single .hero-header {
  margin-bottom: 40px;
}

.hero-single .hero-header h1 {
  margin-bottom: 15px;
  font-size: 36px;
}

.hero-single .hero-header .hero-stats {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
  display: grid;
}

.hero-single .hero-header .stat {
  background: #f9f9f9;
  border: 2px solid #000;
  padding: 15px;
}

.hero-single .hero-header .stat .label {
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
  font-size: 12px;
  display: block;
}

.hero-single .hero-header .stat .value {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

.hero-single .hero-header .death-details {
  background: #fff3cd;
  border: 2px solid #000;
  margin-bottom: 15px;
  padding: 15px;
}

.hero-single .hero-header .death-details h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.hero-single .hero-header .epitaph {
  background: #f9f9f9;
  border-left: 4px solid #000;
  margin: 20px 0;
  padding: 20px;
  font-size: 18px;
  font-style: italic;
}

.hero-single .hero-content {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.hero-single .hero-content p {
  margin-bottom: 15px;
}

.hero-single .hero-journals {
  border-top: 3px solid #000;
  margin-top: 40px;
  padding-top: 20px;
}

.hero-single .hero-journals h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.hero-single .hero-journals .journals-list {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.hero-single .hero-journals .journal-entry {
  background: #f9f9f9;
  border: 2px solid #000;
  padding: 20px;
}

.hero-single .hero-journals .journal-entry h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.hero-single .hero-journals .journal-entry h4 {
  color: #999;
  margin-bottom: 10px;
  font-size: 14px;
}

.hero-single .hero-journals .journal-entry .journal-content {
  font-size: 14px;
  line-height: 1.6;
}

.hero-single .hero-actions {
  gap: 15px;
  margin-top: 40px;
  display: flex;
}

.hero-single .hero-actions .btn {
  color: #fff;
  text-transform: uppercase;
  background: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
}

.hero-single .hero-actions .btn:hover {
  background: #333;
  text-decoration: none;
}

.hero-single .hero-actions .btn.btn-secondary {
  color: #000;
  background: #fff;
}

.hero-single .hero-actions .btn.btn-secondary:hover {
  background: #f5f5f5;
}

.journal-page .journal-header {
  margin-bottom: 40px;
}

.journal-page .journal-header .back-link {
  color: #999;
  margin-bottom: 15px;
  font-size: 14px;
  display: inline-block;
}

.journal-page .journal-header .back-link:hover {
  color: #000;
}

.journal-page .journal-header h1 {
  font-size: 36px;
}

.journal-page .journal-header h1 span {
  color: #999;
}

.journal-page .journal-entries {
  flex-direction: column;
  gap: 40px;
  display: flex;
}

.journal-page .journal-entry-full {
  background: #fff;
  border: 3px solid #000;
  padding: 40px;
}

.journal-page .journal-entry-full .entry-header {
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.journal-page .journal-entry-full .entry-header h2 {
  margin-bottom: 5px;
  font-size: 24px;
}

.journal-page .journal-entry-full .entry-header h3 {
  color: #999;
  margin-bottom: 10px;
  font-size: 18px;
}

.journal-page .journal-entry-full .entry-header time {
  color: #999;
  text-transform: uppercase;
  font-size: 13px;
}

.journal-page .journal-entry-full .entry-content {
  font-size: 16px;
  line-height: 1.8;
}

.journal-page .journal-entry-full .entry-content p {
  margin-bottom: 15px;
}

.journal-page .no-entries {
  text-align: center;
  color: #999;
  padding: 40px;
  font-style: italic;
}

.static-page {
  background: #fff;
  border: 3px solid #000;
  margin-bottom: 40px;
  padding: 40px;
}

.static-page h1 {
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
  padding-bottom: 15px;
  font-size: 36px;
}

.static-page .content {
  font-size: 16px;
  line-height: 1.8;
}

.static-page .content p {
  margin-bottom: 15px;
}

.static-page .content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 24px;
}

.static-page .content h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
}

.static-page .content ul, .static-page .content ol {
  margin-bottom: 15px;
  margin-left: 20px;
}

.static-page .content ul li, .static-page .content ol li {
  margin-bottom: 5px;
}

.schedule-content .calendar-embed {
  border: 2px solid #000;
  margin-top: 20px;
  overflow: hidden;
}

:root {
  --background: #fff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

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

body {
  color: #000;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
}

.has-text-align-center {
  text-align: center;
}

/*# sourceMappingURL=src_app_globals_scss_c7f77e63.css.map*/