/* Base reset/lightweight defaults */
html, body {
  margin: 0;
  padding: 0;
}
body {
  background: #0f1420;
  color: #e6edf3;
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
}
a { color: #40bdf4; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
.gh-home { 
  display: grid; 
  grid-template-columns: 280px 1fr; 
  gap: 0; 
  position: relative;
}

/* Content area offset for fixed sidebar */
.gh-content-area {
  margin-left: 280px;
  padding: 24px;
  max-width: 1400px;
  margin-right: auto;
  transition: margin-left .2s ease;
}

/* Sidebar */
.gh-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background: #0a0f1a;
  border-right: 1px solid rgba(255,255,255,0.06);
  width: 280px;
  transition: width .2s ease;
  z-index: 20;
  overflow-y: auto;
  overflow-x: hidden;
}
.gh-sidebar-inner { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.gh-logo { display: inline-flex; align-items: baseline; gap: 6px; color: #e6edf3; font-weight: 700; font-size: 18px; }
.gh-country { opacity: .6; font-size: 12px; }

/* Menu */
.gh-nav { margin: 6px 0; }
.gh-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.gh-item { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: #e6edf3; transition: background .18s ease, color .18s ease; }
.gh-item:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.gh-item.gh-active { background: rgba(229, 9, 20, 0.15); color: #e50914; font-weight: 600; }
.gh-item.gh-active .gh-ic { background: #e50914; }
.gh-ic { width: 20px; height: 20px; background: #23324a; border-radius: 6px; display: inline-block; }
.gh-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Search */
.gh-search { display: block; }
.gh-search-input {
  width: 100%;
  box-sizing: border-box;
  background: #0f1726;
  color: #e6edf3;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

/* Actions under sidebar: region select + auth */
.gh-actions { display: grid; gap: 10px; margin-top: 8px; }
.gh-select {
  width: 100%;
  box-sizing: border-box;
  background: #0f1726;
  color: #e6edf3;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}
.gh-auth { display: grid; gap: 8px; }
.gh-btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 12px; 
  padding: 12px 14px; 
  font-weight: 700; 
  font-size: 14px;
  white-space: nowrap;
  transition: all .2s ease;
}
.gh-btn-primary { background: #e50914; color: #fff; }
.gh-btn-secondary { background: #182233; color: #e6edf3; }
.gh-btn:hover { filter: brightness(1.05); text-decoration: none; }

/* Rail toggle button (outside aside) */
.gh-rail-toggle {
  position: sticky;
  left: 0;
  top: 12px;
  height: 32px;
  width: 32px;
  margin-left: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0f1a;
  color: #e6edf3;
  z-index: 30;
  cursor: pointer;
}

/* Collapsed state: sidebar shrinks and labels/buttons compact */
#gh-sidebar[data-state="collapsed"] { width: 72px; }
#gh-sidebar[data-state="overlay-open"] { width: min(88vw, 320px); position: fixed; left: 0; right: auto; box-shadow: 0 10px 30px rgba(0,0,0,.6); }

#gh-sidebar[data-state="collapsed"] .gh-sidebar-inner { padding: 12px 8px; }
#gh-sidebar[data-state="collapsed"] .gh-item { grid-template-columns: 28px; justify-content: center; padding: 8px; }
#gh-sidebar[data-state="collapsed"] .gh-label { display: none; }
#gh-sidebar[data-state="collapsed"] .gh-logo { font-size: 0; }
#gh-sidebar[data-state="collapsed"] .gh-logo .gh-country { display: none; }

/* Shrink controls when collapsed */
#gh-sidebar[data-state="collapsed"] .gh-search-input,
#gh-sidebar[data-state="collapsed"] .gh-select { 
  padding: 8px 6px; 
  border-radius: 8px;
  font-size: 0;
  width: 52px;
}
#gh-sidebar[data-state="collapsed"] .gh-actions { 
  display: none; 
}
#gh-sidebar[data-state="collapsed"] .gh-btn { 
  padding: 8px 6px; 
  border-radius: 10px; 
  font-size: 0;
  width: 52px;
  height: 36px;
}
#gh-sidebar[data-state="collapsed"] .gh-btn::before {
  content: attr(title);
  font-size: 10px;
  opacity: 0;
}
#gh-sidebar[data-state="collapsed"] .gh-search { display: none; }

/* Body helper class for content offset when collapsed */
body.gh-collapsed .gh-home { grid-template-columns: 72px 1fr; }
body.gh-collapsed .gh-content-area { margin-left: 72px; }

/* Feed basic spacing */
.gh-feed { 
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gh-feed-header h1 { margin: 0 0 12px; font-size: 22px; color: #e6edf3; }
.gh-feed-list { display: grid; gap: 12px; transition: opacity .2s ease, filter .2s ease; }
.gh-feed-list.gh-loading { opacity: .55; filter: blur(1px); pointer-events: none; }

/* Simple card baseline so page looks presentable without more styles */
.gh-card { background: #0a0f1a; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; cursor: pointer; }
.gh-card.appear { animation: ghFadeUp .25s ease forwards; }
@keyframes ghFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
  .gh-home { grid-template-columns: 72px 1fr; }
  #gh-sidebar[data-state="overlay-open"] ~ .gh-rail-toggle { display: none; }
  
  .gh-featured-grid,
  .gh-highlights-grid,
  .gh-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gh-card-list {
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 12px;
  }
  
  .gh-card-list-media {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .gh-featured-grid,
  .gh-highlights-grid,
  .gh-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .gh-card-list {
    grid-template-columns: 1fr;
  }
  
  .gh-card-list-media {
    width: 100%;
    height: 200px;
  }
}

/* Blog Post Styles */
.gh-blog-post {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 0;
}

.gh-blog-header {
  margin-bottom: 40px;
}

.gh-blog-featured-image {
  width: 100%;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gh-blog-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.gh-blog-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.gh-blog-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-blog-cat-link {
  padding: 6px 14px;
  background: rgba(229,9,20,0.15);
  color: #e50914;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.gh-blog-cat-link:hover {
  background: rgba(229,9,20,0.25);
  transform: translateY(-1px);
}

.gh-blog-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-blog-platform {
  padding: 6px 14px;
  background: rgba(64,189,244,0.15);
  color: #40bdf4;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gh-blog-title {
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #e6edf3;
}

.gh-blog-excerpt {
  margin: 0 0 32px 0;
  font-size: 20px;
  line-height: 1.6;
  color: #a8b5c3;
  font-weight: 400;
}

.gh-blog-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gh-blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gh-blog-author img {
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}

.gh-blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gh-blog-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #e6edf3;
}

.gh-blog-date {
  font-size: 13px;
  color: #8b949e;
}

.gh-blog-type-badge {
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8b949e;
}

.gh-blog-content {
  margin-top: 40px;
  color: #c9d4df;
  font-size: 18px;
  line-height: 1.8;
}

.gh-blog-content h2 {
  margin: 48px 0 24px 0;
  font-size: 32px;
  font-weight: 700;
  color: #e6edf3;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.gh-blog-content h3 {
  margin: 36px 0 20px 0;
  font-size: 26px;
  font-weight: 600;
  color: #e6edf3;
  line-height: 1.3;
}

.gh-blog-content p {
  margin: 0 0 24px 0;
  color: #c9d4df;
}

.gh-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gh-blog-content ul,
.gh-blog-content ol {
  margin: 24px 0;
  padding-left: 32px;
  color: #c9d4df;
}

.gh-blog-content li {
  margin: 12px 0;
  line-height: 1.8;
}

.gh-blog-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid #e50914;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-style: italic;
  color: #a8b5c3;
}

.gh-blog-content a {
  color: #40bdf4;
  text-decoration: underline;
  text-decoration-color: rgba(64,189,244,0.3);
  transition: all 0.2s ease;
}

.gh-blog-content a:hover {
  color: #e50914;
  text-decoration-color: rgba(229,9,20,0.5);
}

.gh-blog-content code {
  padding: 2px 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 16px;
  color: #e50914;
}

.gh-blog-content pre {
  margin: 24px 0;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow-x: auto;
}

.gh-blog-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gh-blog-tags {
  font-size: 14px;
  color: #8b949e;
}

.gh-blog-tags strong {
  color: #e6edf3;
  margin-right: 8px;
}

.gh-blog-tags a {
  color: #40bdf4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gh-blog-tags a:hover {
  color: #e50914;
}

/* Single/article styles */
.entry-title { margin: 0 0 12px; font-size: 26px; }
.entry-content { color: #c9d4df; }
.entry-content h2, .entry-content h3 { color: #e6edf3; margin-top: 18px; }
.entry-content p { margin: 0 0 12px; }
.entry-content img { max-width: 100%; height: auto; border-radius: 10px; }

/* Pagination */
.pagination, .nav-links { display: flex; gap: 8px; margin: 16px 0; flex-wrap: wrap; }
.pagination a, .nav-links a, .nav-links span { padding: 8px 10px; border-radius: 8px; background: #0a0f1a; border: 1px solid rgba(255,255,255,0.1); color: #e6edf3; }
.nav-links .current { background: rgba(229, 9, 20, 0.15); color: #e50914; border-color: rgba(229,9,20,.35); }


/* Section Headers */
.gh-section-header {
  margin: 48px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(229,9,20,0.2);
}

.gh-section-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-section-header h2 {
  margin: 0;
  font-size: 24px;
  color: #e6edf3;
  font-weight: 700;
}

/* Featured Section - 4 large vertical cards */
.gh-featured-section {
  margin-bottom: 48px;
}

.gh-featured-section:first-child {
  margin-top: 0;
}

.gh-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.gh-card-featured {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.gh-card-featured:hover {
  border-bottom-color: rgba(229,9,20,0.2);
}

.gh-card-featured-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #182233 0%, #0f1621 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gh-featured-img,
.gh-featured-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-featured:hover .gh-featured-img {
  transform: scale(1.05);
}

.gh-featured-img-placeholder {
  background: linear-gradient(135deg, #1a2533 0%, #0f1621 50%, #1a2533 100%);
  background-size: 200% 200%;
  animation: shimmer 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gh-featured-img-placeholder::before {
  content: '📷';
  font-size: 48px;
  opacity: 0.2;
  z-index: 1;
}

.gh-featured-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 2s infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gh-card-featured-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.gh-card-featured-title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.gh-card-featured-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-featured-title a:hover {
  color: #e50914;
}

.gh-card-featured-excerpt {
  margin: 0 0 20px;
  color: #8b949e;
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-featured-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #6e7681;
}

.gh-meta-cat {
  color: #e50914;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(229,9,20,0.15);
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gh-meta-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gh-meta-time::before {
  content: '⏱';
  font-size: 12px;
  opacity: 0.7;
}

/* Highlights Section - 4 small square cards */
.gh-highlights-section {
  margin-bottom: 32px;
}

.gh-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gh-card-highlight {
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gh-card-highlight:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(229,9,20,0.3);
}

.gh-card-highlight-media {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.gh-highlight-img,
.gh-highlight-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-highlight-img-placeholder {
  background: linear-gradient(135deg, #182233 0%, #0f1621 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-highlight-img-placeholder::before {
  content: '📷';
  font-size: 32px;
  opacity: 0.3;
}

.gh-highlight-img,
.gh-highlight-img-placeholder {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-highlight:hover .gh-highlight-img {
  transform: scale(1.1);
}

.gh-card-highlight-body {
  padding: 12px;
}

.gh-card-highlight-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.gh-card-highlight-title a {
  color: #e6edf3;
  text-decoration: none;
}

.gh-card-highlight-title a:hover {
  color: #e50914;
}

/* News List Section */
.gh-news-section {
  margin-bottom: 48px;
}

.gh-news-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.gh-card-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 32px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  position: relative;
}

.gh-card-list:hover {
  padding-left: 8px;
  border-bottom-color: rgba(229,9,20,0.2);
}

.gh-card-list-media {
  position: relative;
  width: 180px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.gh-list-img,
.gh-list-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-list-img-placeholder {
  background: linear-gradient(135deg, #1a2533 0%, #0f1621 50%, #1a2533 100%);
  background-size: 200% 200%;
  animation: shimmer 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gh-list-img-placeholder::before {
  content: '📷';
  font-size: 32px;
  opacity: 0.2;
  z-index: 1;
}

.gh-list-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 2s infinite;
}

.gh-card-list-media {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-list:hover .gh-card-list-media {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: scale(1.05);
}

.gh-list-img,
.gh-list-img-placeholder {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-list:hover .gh-list-img {
  transform: scale(1.1);
}

.gh-card-list-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.gh-card-list-title {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.gh-card-list-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-list-title a:hover {
  color: #e50914;
}

.gh-card-list-excerpt {
  margin: 0 0 16px 0;
  color: #8b949e;
  font-size: 16px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-list-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #6e7681;
}

/* Reviews Section */
.gh-reviews-section {
  margin-bottom: 48px;
}

.gh-reviews-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(229,9,20,0.2);
}

.gh-reviews-header h1 {
  margin: 0 0 20px 0;
  font-size: 36px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-reviews-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.gh-filter-tab {
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #8b949e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.gh-filter-tab:hover {
  background: rgba(255,255,255,0.08);
  color: #e6edf3;
  border-color: rgba(229,9,20,0.3);
  transform: translateY(-2px);
}

.gh-filter-tab.active {
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  color: #fff;
  border-color: #e50914;
  box-shadow: 0 4px 12px rgba(229,9,20,0.3);
}

.gh-filter-tab.active:hover {
  background: linear-gradient(135deg, #c40812 0%, #a5070f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229,9,20,0.4);
}

.gh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.gh-card-review {
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.gh-card-review:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(229,9,20,0.4);
}

.gh-card-review-media {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  display: block;
}

.gh-review-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gh-review-img,
.gh-review-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-review-img-placeholder {
  background: linear-gradient(135deg, #1a2533 0%, #0f1621 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-placeholder-icon {
  font-size: 48px;
  opacity: 0.4;
}

.gh-review-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gh-card-review:hover .gh-review-overlay {
  opacity: 1;
}

.gh-card-review:hover .gh-review-img {
  transform: scale(1.08);
}

.gh-review-score-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gh-score-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229,9,20,0.5);
  transition: all 0.3s ease;
}

.gh-card-review:hover .gh-score-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(229,9,20,0.6);
}

.gh-review-score-number {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.gh-review-score-label {
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.gh-review-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(229,9,20,0.4);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-review:hover .gh-review-badge {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 16px rgba(229,9,20,0.5);
}

.gh-card-review-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gh-review-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-category-badge {
  background: rgba(229,9,20,0.15);
  color: #e50914;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(229,9,20,0.3);
}

.gh-card-review-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.gh-card-review-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-review-title a:hover {
  color: #e50914;
}

.gh-card-review-excerpt {
  margin: 0;
  color: #8b949e;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.gh-card-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.gh-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #8b949e;
}

.gh-meta-score {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fbbf24;
  font-weight: 600;
}

.gh-meta-score svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.gh-meta-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8b949e;
}

.gh-meta-time svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.7;
}

.gh-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e50914;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gh-read-more svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.gh-read-more:hover {
  color: #ff1a28;
}

.gh-read-more:hover svg {
  transform: translateX(3px);
}

.gh-reviews-list {
  display: grid;
  gap: 20px;
}

/* Login Section - Updated for homepage */
.gh-login-section {
  margin-top: 48px;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  background: #0a0f1a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.gh-login-container {
  width: 100%;
  max-width: 420px;
  padding: 0;
}

.gh-login-header {
  text-align: center;
  margin-bottom: 24px;
}

.gh-login-header h1 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #e6edf3;
  font-weight: 700;
}

.gh-login-subtitle {
  margin: 0;
  color: #8b949e;
  font-size: 14px;
}

.gh-login-form-wrapper {
  margin-top: 24px;
}

/* Login Form Styles */
#loginform {
  display: grid;
  gap: 16px;
}

#loginform p {
  margin: 0;
  display: grid;
  gap: 6px;
}

#loginform label {
  color: #e6edf3;
  font-size: 14px;
  font-weight: 500;
}

#loginform input[type="text"],
#loginform input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  background: #0f1726;
  color: #e6edf3;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s ease;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
  outline: none;
  border-color: #e50914;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}

.login-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e50914;
}

.login-submit {
  margin-top: 8px;
}

#wp-submit {
  width: 100%;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter .2s ease;
}

#wp-submit:hover {
  filter: brightness(1.1);
}

.gh-login-error {
  background: rgba(229, 9, 20, 0.15);
  color: #e50914;
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.gh-login-success {
  text-align: center;
  padding: 24px;
}

.gh-login-success p {
  color: #e6edf3;
  font-size: 16px;
  margin-bottom: 16px;
}

.gh-login-links {
  margin-top: 16px;
  text-align: center;
}

.gh-login-link {
  color: #40bdf4;
  font-size: 14px;
  text-decoration: none;
}

.gh-login-link:hover {
  text-decoration: underline;
}

/* Page Header for Platform/Category Pages */
.gh-page-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(229,9,20,0.3);
}

.gh-page-title {
  margin: 0 0 8px 0;
  font-size: 36px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.gh-page-subtitle {
  margin: 0;
  font-size: 16px;
  color: #8b949e;
  font-weight: 400;
}

/* Empty State */
.gh-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin: 24px 0;
}

.gh-empty-message {
  font-size: 18px;
  color: #8b949e;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.gh-empty-hint {
  font-size: 14px;
  color: #6e7681;
  margin: 0 0 20px 0;
}

.gh-empty-state .gh-btn {
  display: inline-block;
  margin-top: 12px;
}

/* Card Type Badge */
.gh-card-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gh-card-featured-media .gh-card-type-badge {
  background: linear-gradient(135deg, rgba(229,9,20,0.9) 0%, rgba(196,8,18,0.9) 100%);
  border-color: rgba(229,9,20,0.5);
}

.gh-card-list-media .gh-card-type-badge {
  background: rgba(0,0,0,0.85);
  font-size: 10px;
  padding: 4px 10px;
}

/* Platform Badge */
.gh-meta-platform {
  color: #40bdf4;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(64,189,244,0.15);
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Authentication Pages */
.gh-auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 40px 24px;
}

.gh-auth-box {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1420 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gh-auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.gh-auth-title {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 800;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-auth-subtitle {
  margin: 0;
  font-size: 16px;
  color: #8b949e;
  font-weight: 400;
}

.gh-auth-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.gh-auth-message.gh-auth-error {
  background: rgba(229,9,20,0.15);
  border: 1px solid rgba(229,9,20,0.3);
  color: #ff6b7a;
}

.gh-auth-message.gh-auth-success {
  background: rgba(40,167,69,0.15);
  border: 1px solid rgba(40,167,69,0.3);
  color: #51cf66;
}

.gh-message-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.gh-message-text {
  flex: 1;
}

.gh-auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gh-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gh-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #e6edf3;
  margin: 0;
}

.gh-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #e6edf3;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.gh-form-input:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(229,9,20,0.5);
  box-shadow: 0 0 0 3px rgba(229,9,20,0.1);
}

.gh-form-input::placeholder {
  color: #6e7681;
}

.gh-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.gh-password-wrapper .gh-form-input {
  padding-right: 50px;
}

.gh-password-toggle {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #8b949e;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 1;
}

.gh-password-toggle:hover {
  color: #e6edf3;
}

.gh-password-toggle svg {
  width: 20px;
  height: 20px;
}

.gh-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.gh-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #8b949e;
}

.gh-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e50914;
}

.gh-checkbox-text {
  user-select: none;
}

.gh-forgot-link {
  color: #40bdf4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gh-forgot-link:hover {
  color: #e50914;
}

.gh-form-hint {
  font-size: 12px;
  color: #6e7681;
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.gh-btn-full {
  width: 100%;
}

.gh-btn-large {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
}

.gh-btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gh-btn-loader {
  display: none;
}

.gh-btn-submit.loading .gh-btn-text {
  opacity: 0;
}

.gh-btn-submit.loading .gh-btn-loader {
  display: inline-block;
}

.gh-auth-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.gh-auth-footer-text {
  margin: 0;
  font-size: 14px;
  color: #8b949e;
}

.gh-auth-link {
  color: #e50914;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.gh-auth-link:hover {
  color: #ff6b7a;
}

/* Responsive Authentication */
@media (max-width: 768px) {
  .gh-auth-container {
    padding: 24px 16px;
    min-height: calc(100vh - 150px);
  }
  
  .gh-auth-box {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .gh-auth-title {
    font-size: 28px;
  }
  
  .gh-auth-subtitle {
    font-size: 14px;
  }
  
  .gh-form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

  height: 32px;
  width: 32px;
  margin-left: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0f1a;
  color: #e6edf3;
  z-index: 30;
  cursor: pointer;
}

/* Collapsed state: sidebar shrinks and labels/buttons compact */
#gh-sidebar[data-state="collapsed"] { width: 72px; }
#gh-sidebar[data-state="overlay-open"] { width: min(88vw, 320px); position: fixed; left: 0; right: auto; box-shadow: 0 10px 30px rgba(0,0,0,.6); }

#gh-sidebar[data-state="collapsed"] .gh-sidebar-inner { padding: 12px 8px; }
#gh-sidebar[data-state="collapsed"] .gh-item { grid-template-columns: 28px; justify-content: center; padding: 8px; }
#gh-sidebar[data-state="collapsed"] .gh-label { display: none; }
#gh-sidebar[data-state="collapsed"] .gh-logo { font-size: 0; }
#gh-sidebar[data-state="collapsed"] .gh-logo .gh-country { display: none; }

/* Shrink controls when collapsed */
#gh-sidebar[data-state="collapsed"] .gh-search-input,
#gh-sidebar[data-state="collapsed"] .gh-select { 
  padding: 8px 6px; 
  border-radius: 8px;
  font-size: 0;
  width: 52px;
}
#gh-sidebar[data-state="collapsed"] .gh-actions { 
  display: none; 
}
#gh-sidebar[data-state="collapsed"] .gh-btn { 
  padding: 8px 6px; 
  border-radius: 10px; 
  font-size: 0;
  width: 52px;
  height: 36px;
}
#gh-sidebar[data-state="collapsed"] .gh-btn::before {
  content: attr(title);
  font-size: 10px;
  opacity: 0;
}
#gh-sidebar[data-state="collapsed"] .gh-search { display: none; }

/* Body helper class for content offset when collapsed */
body.gh-collapsed .gh-home { grid-template-columns: 72px 1fr; }
body.gh-collapsed .gh-content-area { margin-left: 72px; }

/* Feed basic spacing */
.gh-feed { 
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gh-feed-header h1 { margin: 0 0 12px; font-size: 22px; color: #e6edf3; }
.gh-feed-list { display: grid; gap: 12px; transition: opacity .2s ease, filter .2s ease; }
.gh-feed-list.gh-loading { opacity: .55; filter: blur(1px); pointer-events: none; }

/* Simple card baseline so page looks presentable without more styles */
.gh-card { background: #0a0f1a; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; cursor: pointer; }
.gh-card.appear { animation: ghFadeUp .25s ease forwards; }
@keyframes ghFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
  .gh-home { grid-template-columns: 72px 1fr; }
  #gh-sidebar[data-state="overlay-open"] ~ .gh-rail-toggle { display: none; }
  
  .gh-featured-grid,
  .gh-highlights-grid,
  .gh-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gh-card-list {
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 12px;
  }
  
  .gh-card-list-media {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .gh-featured-grid,
  .gh-highlights-grid,
  .gh-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .gh-card-list {
    grid-template-columns: 1fr;
  }
  
  .gh-card-list-media {
    width: 100%;
    height: 200px;
  }
}

/* Blog Post Styles */
.gh-blog-post {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 0;
}

.gh-blog-header {
  margin-bottom: 40px;
}

.gh-blog-featured-image {
  width: 100%;
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gh-blog-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.gh-blog-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.gh-blog-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-blog-cat-link {
  padding: 6px 14px;
  background: rgba(229,9,20,0.15);
  color: #e50914;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.gh-blog-cat-link:hover {
  background: rgba(229,9,20,0.25);
  transform: translateY(-1px);
}

.gh-blog-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-blog-platform {
  padding: 6px 14px;
  background: rgba(64,189,244,0.15);
  color: #40bdf4;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gh-blog-title {
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #e6edf3;
}

.gh-blog-excerpt {
  margin: 0 0 32px 0;
  font-size: 20px;
  line-height: 1.6;
  color: #a8b5c3;
  font-weight: 400;
}

.gh-blog-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gh-blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gh-blog-author img {
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}

.gh-blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gh-blog-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #e6edf3;
}

.gh-blog-date {
  font-size: 13px;
  color: #8b949e;
}

.gh-blog-type-badge {
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8b949e;
}

.gh-blog-content {
  margin-top: 40px;
  color: #c9d4df;
  font-size: 18px;
  line-height: 1.8;
}

.gh-blog-content h2 {
  margin: 48px 0 24px 0;
  font-size: 32px;
  font-weight: 700;
  color: #e6edf3;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.gh-blog-content h3 {
  margin: 36px 0 20px 0;
  font-size: 26px;
  font-weight: 600;
  color: #e6edf3;
  line-height: 1.3;
}

.gh-blog-content p {
  margin: 0 0 24px 0;
  color: #c9d4df;
}

.gh-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gh-blog-content ul,
.gh-blog-content ol {
  margin: 24px 0;
  padding-left: 32px;
  color: #c9d4df;
}

.gh-blog-content li {
  margin: 12px 0;
  line-height: 1.8;
}

.gh-blog-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid #e50914;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-style: italic;
  color: #a8b5c3;
}

.gh-blog-content a {
  color: #40bdf4;
  text-decoration: underline;
  text-decoration-color: rgba(64,189,244,0.3);
  transition: all 0.2s ease;
}

.gh-blog-content a:hover {
  color: #e50914;
  text-decoration-color: rgba(229,9,20,0.5);
}

.gh-blog-content code {
  padding: 2px 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 16px;
  color: #e50914;
}

.gh-blog-content pre {
  margin: 24px 0;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow-x: auto;
}

.gh-blog-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gh-blog-tags {
  font-size: 14px;
  color: #8b949e;
}

.gh-blog-tags strong {
  color: #e6edf3;
  margin-right: 8px;
}

.gh-blog-tags a {
  color: #40bdf4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gh-blog-tags a:hover {
  color: #e50914;
}

/* Single/article styles */
.entry-title { margin: 0 0 12px; font-size: 26px; }
.entry-content { color: #c9d4df; }
.entry-content h2, .entry-content h3 { color: #e6edf3; margin-top: 18px; }
.entry-content p { margin: 0 0 12px; }
.entry-content img { max-width: 100%; height: auto; border-radius: 10px; }

/* Pagination */
.pagination, .nav-links { display: flex; gap: 8px; margin: 16px 0; flex-wrap: wrap; }
.pagination a, .nav-links a, .nav-links span { padding: 8px 10px; border-radius: 8px; background: #0a0f1a; border: 1px solid rgba(255,255,255,0.1); color: #e6edf3; }
.nav-links .current { background: rgba(229, 9, 20, 0.15); color: #e50914; border-color: rgba(229,9,20,.35); }


/* Section Headers */
.gh-section-header {
  margin: 48px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(229,9,20,0.2);
}

.gh-section-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-section-header h2 {
  margin: 0;
  font-size: 24px;
  color: #e6edf3;
  font-weight: 700;
}

/* Featured Section - 4 large vertical cards */
.gh-featured-section {
  margin-bottom: 48px;
}

.gh-featured-section:first-child {
  margin-top: 0;
}

.gh-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.gh-card-featured {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.gh-card-featured:hover {
  border-bottom-color: rgba(229,9,20,0.2);
}

.gh-card-featured-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #182233 0%, #0f1621 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gh-featured-img,
.gh-featured-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-featured:hover .gh-featured-img {
  transform: scale(1.05);
}

.gh-featured-img-placeholder {
  background: linear-gradient(135deg, #1a2533 0%, #0f1621 50%, #1a2533 100%);
  background-size: 200% 200%;
  animation: shimmer 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gh-featured-img-placeholder::before {
  content: '📷';
  font-size: 48px;
  opacity: 0.2;
  z-index: 1;
}

.gh-featured-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 2s infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gh-card-featured-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.gh-card-featured-title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.gh-card-featured-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-featured-title a:hover {
  color: #e50914;
}

.gh-card-featured-excerpt {
  margin: 0 0 20px;
  color: #8b949e;
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-featured-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #6e7681;
}

.gh-meta-cat {
  color: #e50914;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(229,9,20,0.15);
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gh-meta-time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gh-meta-time::before {
  content: '⏱';
  font-size: 12px;
  opacity: 0.7;
}

/* Highlights Section - 4 small square cards */
.gh-highlights-section {
  margin-bottom: 32px;
}

.gh-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gh-card-highlight {
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gh-card-highlight:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(229,9,20,0.3);
}

.gh-card-highlight-media {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.gh-highlight-img,
.gh-highlight-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-highlight-img-placeholder {
  background: linear-gradient(135deg, #182233 0%, #0f1621 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-highlight-img-placeholder::before {
  content: '📷';
  font-size: 32px;
  opacity: 0.3;
}

.gh-highlight-img,
.gh-highlight-img-placeholder {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-highlight:hover .gh-highlight-img {
  transform: scale(1.1);
}

.gh-card-highlight-body {
  padding: 12px;
}

.gh-card-highlight-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.gh-card-highlight-title a {
  color: #e6edf3;
  text-decoration: none;
}

.gh-card-highlight-title a:hover {
  color: #e50914;
}

/* News List Section */
.gh-news-section {
  margin-bottom: 48px;
}

.gh-news-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.gh-card-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 32px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  position: relative;
}

.gh-card-list:hover {
  padding-left: 8px;
  border-bottom-color: rgba(229,9,20,0.2);
}

.gh-card-list-media {
  position: relative;
  width: 180px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.gh-list-img,
.gh-list-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-list-img-placeholder {
  background: linear-gradient(135deg, #1a2533 0%, #0f1621 50%, #1a2533 100%);
  background-size: 200% 200%;
  animation: shimmer 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gh-list-img-placeholder::before {
  content: '📷';
  font-size: 32px;
  opacity: 0.2;
  z-index: 1;
}

.gh-list-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 2s infinite;
}

.gh-card-list-media {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-list:hover .gh-card-list-media {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: scale(1.05);
}

.gh-list-img,
.gh-list-img-placeholder {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-list:hover .gh-list-img {
  transform: scale(1.1);
}

.gh-card-list-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.gh-card-list-title {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.gh-card-list-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-list-title a:hover {
  color: #e50914;
}

.gh-card-list-excerpt {
  margin: 0 0 16px 0;
  color: #8b949e;
  font-size: 16px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-list-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #6e7681;
}

/* Reviews Section */
.gh-reviews-section {
  margin-bottom: 48px;
}

.gh-reviews-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(229,9,20,0.2);
}

.gh-reviews-header h1 {
  margin: 0 0 20px 0;
  font-size: 36px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-reviews-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.gh-filter-tab {
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #8b949e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.gh-filter-tab:hover {
  background: rgba(255,255,255,0.08);
  color: #e6edf3;
  border-color: rgba(229,9,20,0.3);
  transform: translateY(-2px);
}

.gh-filter-tab.active {
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  color: #fff;
  border-color: #e50914;
  box-shadow: 0 4px 12px rgba(229,9,20,0.3);
}

.gh-filter-tab.active:hover {
  background: linear-gradient(135deg, #c40812 0%, #a5070f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229,9,20,0.4);
}

.gh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.gh-card-review {
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.gh-card-review:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(229,9,20,0.4);
}

.gh-card-review-media {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  display: block;
}

.gh-review-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gh-review-img,
.gh-review-img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-review-img-placeholder {
  background: linear-gradient(135deg, #1a2533 0%, #0f1621 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-placeholder-icon {
  font-size: 48px;
  opacity: 0.4;
}

.gh-review-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gh-card-review:hover .gh-review-overlay {
  opacity: 1;
}

.gh-card-review:hover .gh-review-img {
  transform: scale(1.08);
}

.gh-review-score-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gh-score-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229,9,20,0.5);
  transition: all 0.3s ease;
}

.gh-card-review:hover .gh-score-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(229,9,20,0.6);
}

.gh-review-score-number {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.gh-review-score-label {
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.gh-review-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(229,9,20,0.4);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gh-card-review:hover .gh-review-badge {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 16px rgba(229,9,20,0.5);
}

.gh-card-review-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gh-review-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-category-badge {
  background: rgba(229,9,20,0.15);
  color: #e50914;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(229,9,20,0.3);
}

.gh-card-review-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.gh-card-review-title a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gh-card-review-title a:hover {
  color: #e50914;
}

.gh-card-review-excerpt {
  margin: 0;
  color: #8b949e;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.gh-card-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.gh-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #8b949e;
}

.gh-meta-score {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fbbf24;
  font-weight: 600;
}

.gh-meta-score svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.gh-meta-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8b949e;
}

.gh-meta-time svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.7;
}

.gh-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e50914;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gh-read-more svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.gh-read-more:hover {
  color: #ff1a28;
}

.gh-read-more:hover svg {
  transform: translateX(3px);
}

.gh-reviews-list {
  display: grid;
  gap: 20px;
}

/* Login Section - Updated for homepage */
.gh-login-section {
  margin-top: 48px;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  background: #0a0f1a;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.gh-login-container {
  width: 100%;
  max-width: 420px;
  padding: 0;
}

.gh-login-header {
  text-align: center;
  margin-bottom: 24px;
}

.gh-login-header h1 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #e6edf3;
  font-weight: 700;
}

.gh-login-subtitle {
  margin: 0;
  color: #8b949e;
  font-size: 14px;
}

.gh-login-form-wrapper {
  margin-top: 24px;
}

/* Login Form Styles */
#loginform {
  display: grid;
  gap: 16px;
}

#loginform p {
  margin: 0;
  display: grid;
  gap: 6px;
}

#loginform label {
  color: #e6edf3;
  font-size: 14px;
  font-weight: 500;
}

#loginform input[type="text"],
#loginform input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  background: #0f1726;
  color: #e6edf3;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s ease;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
  outline: none;
  border-color: #e50914;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}

.login-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e50914;
}

.login-submit {
  margin-top: 8px;
}

#wp-submit {
  width: 100%;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter .2s ease;
}

#wp-submit:hover {
  filter: brightness(1.1);
}

.gh-login-error {
  background: rgba(229, 9, 20, 0.15);
  color: #e50914;
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}

.gh-login-success {
  text-align: center;
  padding: 24px;
}

.gh-login-success p {
  color: #e6edf3;
  font-size: 16px;
  margin-bottom: 16px;
}

.gh-login-links {
  margin-top: 16px;
  text-align: center;
}

.gh-login-link {
  color: #40bdf4;
  font-size: 14px;
  text-decoration: none;
}

.gh-login-link:hover {
  text-decoration: underline;
}

/* Page Header for Platform/Category Pages */
.gh-page-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(229,9,20,0.3);
}

.gh-page-title {
  margin: 0 0 8px 0;
  font-size: 36px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.gh-page-subtitle {
  margin: 0;
  font-size: 16px;
  color: #8b949e;
  font-weight: 400;
}

/* Empty State */
.gh-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #0a0f1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin: 24px 0;
}

.gh-empty-message {
  font-size: 18px;
  color: #8b949e;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.gh-empty-hint {
  font-size: 14px;
  color: #6e7681;
  margin: 0 0 20px 0;
}

.gh-empty-state .gh-btn {
  display: inline-block;
  margin-top: 12px;
}

/* Card Type Badge */
.gh-card-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gh-card-featured-media .gh-card-type-badge {
  background: linear-gradient(135deg, rgba(229,9,20,0.9) 0%, rgba(196,8,18,0.9) 100%);
  border-color: rgba(229,9,20,0.5);
}

.gh-card-list-media .gh-card-type-badge {
  background: rgba(0,0,0,0.85);
  font-size: 10px;
  padding: 4px 10px;
}

/* Platform Badge */
.gh-meta-platform {
  color: #40bdf4;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(64,189,244,0.15);
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Authentication Pages */
.gh-auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 40px 24px;
}

.gh-auth-box {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1420 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gh-auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.gh-auth-title {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 800;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-auth-subtitle {
  margin: 0;
  font-size: 16px;
  color: #8b949e;
  font-weight: 400;
}

.gh-auth-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.gh-auth-message.gh-auth-error {
  background: rgba(229,9,20,0.15);
  border: 1px solid rgba(229,9,20,0.3);
  color: #ff6b7a;
}

.gh-auth-message.gh-auth-success {
  background: rgba(40,167,69,0.15);
  border: 1px solid rgba(40,167,69,0.3);
  color: #51cf66;
}

.gh-message-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.gh-message-text {
  flex: 1;
}

.gh-auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gh-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gh-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #e6edf3;
  margin: 0;
}

.gh-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #e6edf3;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.gh-form-input:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(229,9,20,0.5);
  box-shadow: 0 0 0 3px rgba(229,9,20,0.1);
}

.gh-form-input::placeholder {
  color: #6e7681;
}

.gh-password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.gh-password-wrapper .gh-form-input {
  padding-right: 50px;
}

.gh-password-toggle {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #8b949e;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 1;
}

.gh-password-toggle:hover {
  color: #e6edf3;
}

.gh-password-toggle svg {
  width: 20px;
  height: 20px;
}

.gh-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.gh-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #8b949e;
}

.gh-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e50914;
}

.gh-checkbox-text {
  user-select: none;
}

.gh-forgot-link {
  color: #40bdf4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gh-forgot-link:hover {
  color: #e50914;
}

.gh-form-hint {
  font-size: 12px;
  color: #6e7681;
  margin-top: 4px;
  display: block;
  line-height: 1.4;
}

.gh-btn-full {
  width: 100%;
}

.gh-btn-large {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
}

.gh-btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gh-btn-loader {
  display: none;
}

.gh-btn-submit.loading .gh-btn-text {
  opacity: 0;
}

.gh-btn-submit.loading .gh-btn-loader {
  display: inline-block;
}

.gh-auth-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.gh-auth-footer-text {
  margin: 0;
  font-size: 14px;
  color: #8b949e;
}

.gh-auth-link {
  color: #e50914;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.gh-auth-link:hover {
  color: #ff6b7a;
}

/* Responsive Authentication */
@media (max-width: 768px) {
  .gh-auth-container {
    padding: 24px 16px;
    min-height: calc(100vh - 150px);
  }
  
  .gh-auth-box {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .gh-auth-title {
    font-size: 28px;
  }
  
  .gh-auth-subtitle {
    font-size: 14px;
  }
  
  .gh-form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
